Remove Tabs, per Jococo
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / user / List.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.user;
23
24 import java.util.Collections;
25 import java.util.Comparator;
26
27 import org.onap.aaf.auth.cmd.BaseCmd;
28 import org.onap.aaf.misc.env.util.Chrono;
29
30 import aaf.v2_0.Approval;
31 import aaf.v2_0.Approvals;
32 import aaf.v2_0.Delg;
33 import aaf.v2_0.Delgs;
34 import aaf.v2_0.Users;
35
36 public class List extends BaseCmd<User> {
37
38     public List(User parent) {
39         super(parent,"list");
40         cmds.add(new ListForRoles(this));
41         cmds.add(new ListForPermission(this));
42         cmds.add(new ListForCreds(this));
43         cmds.add(new ListDelegates(this));
44         cmds.add(new ListApprovals(this));
45         cmds.add(new ListActivity(this));
46     }
47
48      
49     void report(Users users, boolean count, String ... str) {
50         reportHead(str);
51         java.util.List<aaf.v2_0.Users.User> sorted = users.getUser();
52         Collections.sort(sorted, (Comparator<aaf.v2_0.Users.User>) (u1, u2) -> {
53             if (u1==null || u2 == null) {
54                 return -1;
55             }
56             return u1.getId().compareTo(u2.getId());
57         });
58         String format = reportColHead("%-36s %-5s %-20s %-16s\n","User","Type","Expires","Tag");
59         String date = "XXXX-XX-XX";
60         for (aaf.v2_0.Users.User user : sorted) {
61             if (!aafcli.isTest()) {
62                 date = Chrono.niceUTCStamp(user.getExpires());
63             }
64             String tag=user.getTag();
65             Integer type = user.getType();
66             if(tag==null) {
67                 tag="";
68             } else if(type!=null && type>=200) {
69                 tag = "\n\tfingerprint: " + tag;
70             }
71             pw().format(format, 
72                     user.getId(),
73                     org.onap.aaf.auth.cmd.ns.List.getType(user),
74                     date,
75                     tag);
76         }
77         pw().println();
78     }
79
80     public void report(Approvals approvals, String title, String id) {
81         reportHead(title,id);
82         String format = reportColHead("  %-20s %-20s %-11s %-6s %12s\n","User","Approver","Type","Status","Updated");
83         java.util.List<Approval> lapp = approvals.getApprovals();
84         Collections.sort(lapp, (Comparator<Approval>) (a1, a2) -> a1.getTicket().compareTo(a2.getTicket()));
85         String ticket = null;
86         String prev = null;
87         for (Approval app : lapp ) {
88             ticket = app.getTicket();
89             if (!ticket.equals(prev)) {
90                 pw().print("Ticket: ");
91                 pw().println(ticket);
92             }
93             prev = ticket;
94
95             pw().format(format,
96                     app.getUser(),
97                     app.getApprover(),
98                     app.getType(),
99                     app.getStatus(),
100                     Chrono.niceDateStamp(app.getUpdated())
101                     );
102         }
103     }
104
105     public void report(Delgs delgs, String title, String id) {
106         reportHead(title,id);
107         String format = reportColHead(" %-25s %-25s  %-10s\n","User","Delegate","Expires");
108         String date = "XXXX-XX-XX";
109         for (Delg delg : delgs.getDelgs()) {
110             if (!this.aafcli.isTest()) 
111                 date = Chrono.dateOnlyStamp(delg.getExpires());
112             pw().printf(format, 
113                         delg.getUser(),
114                         delg.getDelegate(),
115                         date
116                         );
117         }
118     }
119
120
121 }