b4cca87ecc6384acdc7202441545af175876788b
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / ListByName.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 import aaf.v2_0.Nss.Ns;
37 import aaf.v2_0.Perms;
38 import aaf.v2_0.Roles;
39 import aaf.v2_0.Users;
40
41 /**
42  * p
43  * @author Jonathan
44  *
45  */
46 public class ListByName extends Cmd {
47     private static final String HEADER="List Namespaces by Name";
48     
49     public ListByName(List parent) {
50         super(parent,"name", 
51                 new Param("ns-name",true));
52     }
53
54     @Override
55     public int _exec(int idxValue, final String ... args) throws CadiException, APIException, LocatorException {
56             int idx = idxValue;
57         final String ns=args[idx++];
58         return same(new Retryable<Integer>() {
59             @Override
60             public Integer code(Rcli<?> client) throws CadiException, APIException {
61                 Future<Nss> fn = client.read("/authz/nss/"+ns,getDF(Nss.class));
62                 if (fn.get(AAFcli.timeout())) {
63                     ((List)parent).report(fn,HEADER,ns);
64                     if (fn.value!=null) {
65                         for (Ns n : fn.value.getNs()) {
66                             Future<Roles> fr = client.read("/authz/roles/ns/"+n.getName(), getDF(Roles.class));
67                             if (fr.get(AAFcli.timeout())) {
68                                 ((List)parent).reportRole(fr);
69                             }
70                         }
71                         for (Ns n : fn.value.getNs()) {
72                             Future<Perms> fp = client.read("/authz/perms/ns/"+n.getName()+(aafcli.isDetailed()?"?ns":""), getDF(Perms.class));
73                             if (fp.get(AAFcli.timeout())) {
74                                 ((List)parent).reportPerm(fp);
75                             }
76                         }
77                         for (Ns n : fn.value.getNs()) {
78                             Future<Users> fu = client.read("/authn/creds/ns/"+n.getName()+(aafcli.isDetailed()?"?ns":""), getDF(Users.class));
79                             if (fu.get(AAFcli.timeout())) {
80                                 ((List)parent).reportCred(fu);
81                             }
82                         }
83                     }
84                 } else if (fn.code()==404) {
85                     ((List)parent).report(null,HEADER,ns);
86                     return 200;
87                 } else {    
88                     error(fn);
89                 }
90                 return fn.code();
91             }
92         });
93     }
94
95     @Override
96     public void detailedHelp(int indent, StringBuilder sb) {
97         detailLine(sb,indent,HEADER);
98         api(sb,indent,HttpMethods.GET,"authz/nss/<ns>",Nss.class,true);
99         detailLine(sb,indent,"Indirectly uses:");
100         api(sb,indent,HttpMethods.GET,"authz/roles/ns/<ns>",Roles.class,false);
101         api(sb,indent,HttpMethods.GET,"authz/perms/ns/<ns>",Perms.class,false);
102         api(sb,indent,HttpMethods.GET,"authn/creds/ns/<ns>",Users.class,false);
103     }
104
105 }