[AAF-21] Initial code import
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / ns / Responsible.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 Responsible extends BaseCmd<NS> {\r
38         private final static String[] options = {"add","del"};\r
39 \r
40         public Responsible(NS ns) throws APIException {\r
41                 super(ns,"responsible",\r
42                                 new Param(optionsToString(options),true),\r
43                                 new Param("name",true),\r
44                                 new Param("id[,id]*",true)\r
45                 );\r
46         }\r
47 \r
48         @Override\r
49         public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {\r
50                 int idx = _idx;\r
51 \r
52                 final int option = whichOption(options, args[idx++]);\r
53                 final String ns = args[idx++];\r
54                 final String ids[] = args[idx++].split(",");\r
55                 final String realm = getOrgRealm();\r
56                 return same(new Retryable<Integer>() {\r
57                         @Override\r
58                         public Integer code(Rcli<?> client) throws CadiException, APIException {\r
59                                 Future<Void> fp=null;\r
60                                 for(String id : ids) {\r
61                                         if (id.indexOf('@') < 0 && realm != null) id += '@' + realm;\r
62                                         String verb;\r
63                                         switch(option) {\r
64                                                 case 0: \r
65                                                         fp = client.create("/authz/ns/"+ns+"/responsible/"+id,Void.class);\r
66                                                         verb = " is now ";\r
67                                                         break;\r
68                                                 case 1: \r
69                                                         fp = client.delete("/authz/ns/"+ns+"/responsible/"+id,Void.class);\r
70                                                         verb = " is no longer ";\r
71                                                         break;\r
72                                                 default:\r
73                                                         throw new CadiException("Bad Argument");\r
74                                         };\r
75                                 \r
76                                         if(fp.get(AAFcli.timeout())) {\r
77                                                 pw().append(id);\r
78                                                 pw().append(verb);\r
79                                                 pw().append("responsible for ");\r
80                                                 pw().println(ns);\r
81                                         } else {\r
82                                                 error(fp);\r
83                                                 return fp.code();\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 Responsible person to/from Namespace");\r
95                 indent+=2;\r
96                 detailLine(sb,indent,"Responsible persons receive Notifications and approve Requests ");\r
97                 detailLine(sb,indent,"regarding this Namespace. Companies have Policies as to who may");\r
98                 detailLine(sb,indent,"take on this responsibility");\r
99 \r
100                 indent+=2;\r
101                 detailLine(sb,indent,"name - Name of Namespace");\r
102                 detailLine(sb,indent,"id   - Credential of Person(s) to be made responsible");\r
103                 sb.append('\n');\r
104                 detailLine(sb,indent,"aafcli will call API on each ID presented.");\r
105                 indent-=4;\r
106                 api(sb,indent,HttpMethods.POST,"authz/ns/<ns>/responsible/<id>",Void.class,true);\r
107                 api(sb,indent,HttpMethods.DELETE,"authz/ns/<ns>/responsible/<id>",Void.class,false);\r
108         }\r
109 \r
110 \r
111 }\r