bdcf1e5024ff5ba0aecd8de840182ab402cedc88
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / role / ListByUser.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.role;
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.Perms;
36 import aaf.v2_0.Roles;
37 import aaf.v2_0.UserRoles;
38
39 /**
40  * p
41  * @author Jonathan
42  *
43  */
44 public class ListByUser extends Cmd {
45     private static final String HEADER = "List Roles for User ";
46     
47     public ListByUser(List parent) {
48         super(parent,"user", 
49                 new Param("id",true),
50                 new Param("detail", false)); 
51     }
52
53     @Override
54     public int _exec( int idx, final String ... args) throws CadiException, APIException, LocatorException {
55         final String user=fullID(args[idx]);
56         
57
58         return same(new Retryable<Integer>() {
59             @Override
60             public Integer code(Rcli<?> client) throws CadiException, APIException {
61                 Perms perms=null;
62                 UserRoles urs=null;
63                 Future<Roles> fr = client.read(
64                         "/authz/roles/user/"+user+(aafcli.isDetailed()?"?ns":""), 
65                         getDF(Roles.class)
66                         );
67                 Future<UserRoles> fur = client.read(
68                         "/authz/userRoles/user/"+user,
69                         getDF(UserRoles.class)
70                     );
71                 if (fr.get(AAFcli.timeout())) {
72                     if (aafcli.isDetailed()) {
73                         Future<Perms> fp = client.read(
74                                 "/authz/perms/user/"+user+(aafcli.isDetailed()?"?ns":""), 
75                                 getDF(Perms.class)
76                             );
77                         if (fp.get(AAFcli.timeout())) {
78                             perms = fp.value;
79                         }
80                     }
81                     if (fur.get(AAFcli.timeout())) {
82                         urs = fur.value;
83                     }
84                     
85                     ((List)parent).report(fr.value,perms,urs,HEADER,user);
86                 } else {
87                     error(fr);
88                 }
89                 return fr.code();
90             }
91         });
92     }
93     
94     @Override
95     public void detailedHelp(int indent, StringBuilder sb) {
96         detailLine(sb,indent,HEADER);
97         api(sb,indent,HttpMethods.GET,"authz/roles/user/<user>",Roles.class,true);
98     }
99 }