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