01b0f21c24da819b3a3d5818b1e577d8e1cca27d
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / ListNsKeysByAttrib.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.Keys;
36 import aaf.v2_0.Nss;
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 ListNsKeysByAttrib extends Cmd {
47     private static final String HEADER="List Namespace Names by Attribute";
48     
49     public ListNsKeysByAttrib(List parent) {
50         super(parent,"keys", 
51                 new Param("attrib",true)); 
52     }
53
54     @Override
55     public int _exec(final int idx, final String ... args) throws CadiException, APIException, LocatorException {
56         final String attrib=args[idx];
57         return same(new Retryable<Integer>() {
58             @Override
59             public Integer code(Rcli<?> client) throws CadiException, APIException {
60                 Future<Keys> fn = client.read("/authz/ns/attrib/"+attrib,getDF(Keys.class));
61                 if (fn.get(AAFcli.timeout())) {
62                     parent.reportHead(HEADER);
63                     for (String key : fn.value.getKey()) {
64                         pw().printf(List.kformat, key);
65                     }
66                 } else if (fn.code()==404) {
67                     parent.reportHead(HEADER);
68                     pw().println("    *** No Namespaces Found ***");
69                     return 200;
70                 } else {    
71                     error(fn);
72                 }
73                 return fn.code();
74             }
75         });
76     }
77
78     @Override
79     public void detailedHelp(int indent, StringBuilder sb) {
80         detailLine(sb,indent,HEADER);
81         api(sb,indent,HttpMethods.GET,"authz/nss/<ns>",Nss.class,true);
82         detailLine(sb,indent,"Indirectly uses:");
83         api(sb,indent,HttpMethods.GET,"authz/roles/ns/<ns>",Roles.class,false);
84         api(sb,indent,HttpMethods.GET,"authz/perms/ns/<ns>",Perms.class,false);
85         api(sb,indent,HttpMethods.GET,"authn/creds/ns/<ns>",Users.class,false);
86     }
87
88 }