[AAF-21] Updated Copyright Headers for AAF
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / ns / Admin.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package com.att.cmd.ns;\r
24 \r
25 import com.att.cadi.CadiException;\r
26 import com.att.cadi.LocatorException;\r
27 import com.att.cadi.client.Future;\r
28 import com.att.cadi.client.Rcli;\r
29 import com.att.cadi.client.Retryable;\r
30 import com.att.cmd.AAFcli;\r
31 import com.att.cmd.BaseCmd;\r
32 import com.att.cmd.Param;\r
33 import com.att.cssa.rserv.HttpMethods;\r
34 import com.att.inno.env.APIException;\r
35 \r
36 public class Admin extends BaseCmd<NS> {\r
37         private final static String[] options = {"add","del"};\r
38 \r
39         public Admin(NS ns) throws APIException {\r
40                 super(ns,"admin",\r
41                                 new Param(optionsToString(options),true),\r
42                                 new Param("name",true),\r
43                                 new Param("id[,id]*",true)\r
44                 );\r
45         }\r
46 \r
47         @Override\r
48         public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {\r
49                 int idx = _idx;\r
50                 final int option = whichOption(options, args[idx++]);\r
51                 final String ns = args[idx++];\r
52                 final String ids[] = args[idx++].split(",");\r
53                 final String realm = getOrgRealm();\r
54 //              int rv = 500;\r
55                 return same(new Retryable<Integer>() {\r
56                         @Override\r
57                         public Integer code(Rcli<?> client) throws CadiException, APIException {        \r
58                                 Future<Void> fp = null;\r
59                                 for(String id : ids) {\r
60                                         if (id.indexOf('@') < 0 && realm != null) id += '@' + realm;\r
61                                         String verb;\r
62                                         switch(option) {\r
63                                                 case 0: \r
64                                                         fp = client.create("/authz/ns/"+ns+"/admin/"+id,Void.class);\r
65                                                         verb = " added to ";\r
66                                                         break;\r
67                                                 case 1: \r
68                                                         fp = client.delete("/authz/ns/"+ns+"/admin/"+id,Void.class);\r
69                                                         verb = " deleted from ";\r
70                                                         break;\r
71                                                 default:\r
72                                                         throw new CadiException("Bad Argument");\r
73                                         };\r
74                                 \r
75                                         if(fp.get(AAFcli.timeout())) {\r
76                                                 pw().append("Admin ");\r
77                                                 pw().append(id);\r
78                                                 pw().append(verb);\r
79                                                 pw().println(ns);\r
80                                         } else {\r
81                                                 error(fp);\r
82                                                 return fp.code();\r
83                                         }\r
84                                         \r
85                                 }\r
86                                 return fp==null?500:fp.code();\r
87                         }\r
88                 });\r
89         }\r
90 \r
91         @Override\r
92         public void detailedHelp(int _indent, StringBuilder sb) {\r
93                 int indent = _indent;\r
94                 detailLine(sb,indent,"Add or Delete Administrator to/from Namespace");\r
95                 indent+=4;\r
96                 detailLine(sb,indent,"name - Name of Namespace");\r
97                 detailLine(sb,indent,"id   - Credential of Person(s) to be Administrator");\r
98                 sb.append('\n');\r
99                 detailLine(sb,indent,"aafcli will call API on each ID presented.");\r
100                 indent-=4;\r
101                 api(sb,indent,HttpMethods.POST,"authz/ns/<ns>/admin/<id>",Void.class,true);\r
102                 api(sb,indent,HttpMethods.DELETE,"authz/ns/<ns>/admin/<id>",Void.class,false);\r
103         }\r
104 \r
105 }\r