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