AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / Owner.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 Owner extends BaseCmd<NS> {
36         private final static String[] options = {"add","del"};
37
38         public Owner(NS ns) throws APIException {
39                 super(ns,"owner",
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
50                 final int option = whichOption(options, args[idx++]);
51                 final String ns = args[idx++];
52                 final String ids[] = args[idx++].split(",");
53
54                 return same(new Retryable<Integer>() {
55                         @Override
56                         public Integer code(Rcli<?> client) throws CadiException, APIException {
57                                 Future<Void> fp=null;
58                                 for(String id : ids) {
59                                         id=fullID(id);
60                                         String verb;
61                                         switch(option) {
62                                                 case 0: 
63                                                         fp = client.create("/authz/ns/"+ns+"/responsible/"+id,Void.class);
64                                                         verb = " is now ";
65                                                         break;
66                                                 case 1: 
67                                                         fp = client.delete("/authz/ns/"+ns+"/responsible/"+id,Void.class);
68                                                         verb = " is no longer ";
69                                                         break;
70                                                 default:
71                                                         throw new CadiException("Bad Argument");
72                                         };
73                                 
74                                         if(fp.get(AAFcli.timeout())) {
75                                                 pw().append(id);
76                                                 pw().append(verb);
77                                                 pw().append("responsible for ");
78                                                 pw().println(ns);
79                                         } else {
80                                                 error(fp);
81                                                 return fp.code();
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 Responsible person to/from Namespace");
93                 indent+=2;
94                 detailLine(sb,indent,"Namespace Owners are responsible to receive Notifications and ");
95                 detailLine(sb,indent,"approve Requests regarding this Namespace. Companies have ");
96                 detailLine(sb,indent,"Policies as to who may take on this responsibility");
97
98                 indent+=2;
99                 detailLine(sb,indent,"name - Name of Namespace");
100                 detailLine(sb,indent,"id   - Credential of Person(s) to be made responsible");
101                 sb.append('\n');
102                 detailLine(sb,indent,"aafcli will call API on each ID presented.");
103                 indent-=4;
104                 api(sb,indent,HttpMethods.POST,"authz/ns/<ns>/responsible/<id>",Void.class,true);
105                 api(sb,indent,HttpMethods.DELETE,"authz/ns/<ns>/responsible/<id>",Void.class,false);
106         }
107
108
109 }