summaryrefslogtreecommitdiffstats
path: root/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/List.java
blob: 2f84f583afe9b9ba9e481234ae9976695798766b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/**
 * ============LICENSE_START====================================================
 * org.onap.aaf
 * ===========================================================================
 * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
 * ===========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END====================================================
 *
 */

package org.onap.aaf.auth.cmd.role;

import java.util.Collections;
import java.util.Comparator;

import javax.xml.datatype.XMLGregorianCalendar;

import org.onap.aaf.auth.cmd.AAFcli;
import org.onap.aaf.auth.cmd.BaseCmd;
import org.onap.aaf.cadi.CadiException;
import org.onap.aaf.cadi.client.Future;
import org.onap.aaf.cadi.client.Rcli;
import org.onap.aaf.cadi.client.Retryable;
import org.onap.aaf.misc.env.APIException;
import org.onap.aaf.misc.env.util.Chrono;

import aaf.v2_0.Perm;
import aaf.v2_0.Perms;
import aaf.v2_0.Pkey;
import aaf.v2_0.Roles;
import aaf.v2_0.UserRole;
import aaf.v2_0.UserRoles;



public class List extends BaseCmd<Role> {
    private static final String XXXX_XX_XX = "XXXX-XX-XX";
    private static final String LIST_ROLES_BY_NAME = "list roles for role";

    public List(Role parent) {
        super(parent,"list");
        cmds.add(new ListByUser(this));
        cmds.add(new ListByRole(this));
        cmds.add(new ListByNS(this));
        cmds.add(new ListByNameOnly(this));
        cmds.add(new ListByPerm(this));
        cmds.add(new ListActivity(this));
    }
    
    // Package Level on purpose
    abstract class ListRoles extends Retryable<Integer> {
        protected int list(Future<Roles> fr,Rcli<?> client, String header) throws APIException, CadiException {
            if (fr.get(AAFcli.timeout())) {
                Perms perms=null;
                if (aafcli.isDetailed()) {
                    for (aaf.v2_0.Role r : fr.value.getRole()) {
                        Future<Perms> fp = client.read(
                                "/authz/perms/role/"+r.getName()+(aafcli.isDetailed()?"?ns":""), 
                                getDF(Perms.class)
                            );
                        if (fp.get(AAFcli.timeout())) {
                            if (perms==null) {
                                perms = fp.value;
                            } else {
                                perms.getPerm().addAll(fp.value.getPerm());
                            }
                        }
                    }
                }
                report(fr.value,perms,null,header);
            } else {
                error(fr);
            }
            return fr.code();
        }
    }

    private final static String roleFormat = "%-56s Expires %s\n";
    private final static String roleFormatNoDate = "%-61s\n";
    private final static String roleExpiredFormat = "%-53s !!! EXPIRED !!! %s\n";
    private final static String permFormat = "   %-30s %-30s %-15s\n";

    
    private static final Comparator<aaf.v2_0.Role> roleCompare = new Comparator<aaf.v2_0.Role>() {
        @Override
        public int compare(aaf.v2_0.Role a, aaf.v2_0.Role b) {
            return a.getName().compareTo(b.getName());
        }
    };
    public void report(Roles roles, Perms perms, UserRoles urs, String ... str) {
        reportHead(str);
        XMLGregorianCalendar now = Chrono.timeStamp().normalize();
        if (roles==null || roles.getRole().isEmpty()) {
            pw().println("<No Roles Found>");
        } else if (aafcli.isDetailed()){
            if (str[0].toLowerCase().contains(LIST_ROLES_BY_NAME)) {
                String description = roles.getRole().get(0).getDescription();
                if (description == null) description = "";
                reportColHead("%-80s\n","Description: " + description);
            }             

            String fullFormat = roleFormat+permFormat;
            reportColHead(fullFormat,"[ROLE NS].Name","","[PERM NS].Type","Instance","Action");
            Collections.sort(roles.getRole(),roleCompare);
            for (aaf.v2_0.Role r : roles.getRole()) {
                String roleName = r.getName();
                String ns = r.getNs();
                if (aafcli.isTest()) {
                    if (ns==null) {
                        pw().format(roleFormat, roleName,XXXX_XX_XX);
                    } else {
                        pw().format(roleFormat, "["+ns+"]"+roleName.substring(ns.length()),XXXX_XX_XX);
                    }
                } else {
                	String fullname;
                	if(ns==null) {
                		fullname = roleName;
                	} else {
                		fullname = ns+'.'+roleName;
                	}
                    UserRole ur = get(fullname,urs);
                    if (ur!=null && now.compare(ur.getExpires().normalize())>0) {
                        if (ns==null) {
                            pw().format(roleExpiredFormat, roleName,Chrono.dateOnlyStamp(ur.getExpires()));
                        } else {
                            pw().format(roleExpiredFormat, "["+ns+"]."+roleName,Chrono.dateOnlyStamp(ur.getExpires()));
                        }
                    } else {
                        if (ns==null) {
                            pw().format(roleFormat, roleName,ur!=null?Chrono.dateOnlyStamp(ur.getExpires()):"");
                        } else {
                            pw().format(roleFormat, "["+ns+"]."+roleName,ur!=null?Chrono.dateOnlyStamp(ur.getExpires()):"");
                        }
                    }
                }

                for (Pkey pkey : r.getPerms()) {
                    Perm perm = get(pkey,perms);
                    if (perm==null || perm.getNs()==null) {
                        pw().format(permFormat, 
                                pkey.getType(),
                                pkey.getInstance(),
                                pkey.getAction());
                    } else {
                        String ns1 = perm.getNs();
                        pw().format(permFormat, 
                                '['+ns1+"]"+perm.getType().substring(ns1.length()),
                                perm.getInstance(),
                                perm.getAction());
                    }
                }
            }
        } else {
            String fullFormat = roleFormat;
            reportColHead(fullFormat,"ROLE Name","","PERM Type","Instance","Action");
            Collections.sort(roles.getRole(),roleCompare);
            for (aaf.v2_0.Role r : roles.getRole()) {
                if (urs != null) {
                    String roleName = r.getName();
                    if (!aafcli.isTest()) {
                        UserRole ur = get(roleName,urs);
                        if (ur!=null && now.compare(ur.getExpires().normalize())>0) {
                            pw().format(roleExpiredFormat, roleName+"*",Chrono.dateOnlyStamp(ur.getExpires()));
                        } else {
                            pw().format(roleFormat, roleName,ur!=null?Chrono.dateOnlyStamp(ur.getExpires()):"");
                        }
                    } else {
                        pw().format(roleFormat, roleName,XXXX_XX_XX);
                    }
                } else {
                    pw().format(roleFormatNoDate, r.getName());
                    for (Pkey perm : r.getPerms()) {
                        pw().format(permFormat, 
                                perm.getType(),
                                perm.getInstance(),
                                perm.getAction());
                    }
                }
            }
        }
    }
    private Perm get(Pkey pkey, Perms perms) {
        if (perms!=null) {
            for (Perm p : perms.getPerm()) {
                if (pkey.getAction().equals(p.getAction()) &&
                   pkey.getInstance().equals(p.getInstance()) &&
                   pkey.getType().equals(p.getType())) {
                    return p;
                }
            }
        }
        return null;
    }
    // The assumption is that these UserRoles are already pulled in by User... no need to check
    private UserRole get(String roleName, UserRoles urs) {
        if (urs!=null) {
            for (UserRole ur : urs.getUserRole()) {
                if (roleName.equals(ur.getRole())) {
                    return ur;
                }
            }
        }
        return null;
    }

}