AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / ListAdminResponsible.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.Cmd;
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 import aaf.v2_0.Nss;
36
37 public class ListAdminResponsible extends Cmd {
38         private static final String HEADER="List Namespaces with ";
39         private final static String[] options = {"admin","owner"};
40         
41         public ListAdminResponsible(List parent) {
42                 super(parent,null, 
43                                 new Param(optionsToString(options),true),
44                                 new Param("user",true)); 
45         }
46
47         @Override
48         protected int _exec(final int index, final String... args) throws CadiException, APIException, LocatorException {
49
50                 return same(new Retryable<Integer>() {
51                         @Override
52                         public Integer code(Rcli<?> client) throws CadiException, APIException {
53                                 int idx = index;
54                                 String title = args[idx++];
55                                 String user = fullID(args[idx++]);
56                                 String apipart = "owner".equals(title)?"responsible":title;
57                                 
58                                 Future<Nss> fn = client.read("/authz/nss/"+apipart+"/"+user,getDF(Nss.class));
59                                 if(fn.get(AAFcli.timeout())) {
60                                         ((List)parent).reportName(fn,HEADER + title + " privileges for ",user);
61                                 } else if(fn.code()==404) {
62                                         ((List)parent).report(null,HEADER + title + " privileges for ",user);
63                                         return 200;
64                                 } else {        
65                                         error(fn);
66                                 }
67                                 return fn.code();
68                         }
69                 });
70         }
71         
72         @Override
73         public void detailedHelp(int indent, StringBuilder sb) {
74                 detailLine(sb,indent,HEADER + "admin or owner privileges for user");
75                 api(sb,indent,HttpMethods.GET,"authz/nss/<admin|owner>/<user>",Nss.class,true);
76         }
77 }