Update DCAE Startup Info
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / 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.ns;
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.auth.cmd.DeprecatedCMD;
29 import org.onap.aaf.auth.common.Define;
30 import org.onap.aaf.cadi.client.Future;
31 import org.onap.aaf.misc.env.util.Chrono;
32
33 import aaf.v2_0.Nss;
34 import aaf.v2_0.Nss.Ns;
35 import aaf.v2_0.Perms;
36 import aaf.v2_0.Roles;
37 import aaf.v2_0.Users;
38 import aaf.v2_0.Users.User;
39
40 public class List extends BaseCmd<NS> {
41
42     private static final String cformat = "        %-30s %-6s %-24s\n";
43     private static final String pformat = "        %-30s %-24s %-15s\n";
44     private static final String sformat = "        %-72s\n";
45     protected static final String kformat = "  %-72s\n";
46
47     public List(NS parent) {
48         super(parent,"list");
49         cmds.add(new ListByName(this));
50
51 //        TODO: uncomment when on cassandra 2.1.2 if we like cli command to get all ns's
52 //                a user is admin or responsible for
53         cmds.add(new ListAdminResponsible(this));
54         cmds.add(new DeprecatedCMD<List>(this,"responsible","'responsible' is deprecated.  use 'owner'")); // deprecated
55         cmds.add(new ListActivity(this));
56         cmds.add(new ListUsers(this));
57         cmds.add(new ListChildren(this));
58         cmds.add(new ListNsKeysByAttrib(this));
59     }
60
61     public void report(Future<Nss> fp, String ... str) {
62         reportHead(str);
63         if (fp==null) {
64             pw().println("    *** Namespace Not Found ***");
65         }
66
67         if (fp!=null && fp.value!=null) {
68             for (Ns ns : fp.value.getNs()) {
69                 pw().println(ns.getName());
70                 if (this.aafcli.isDetailed()) {
71                     pw().println("    Description");
72                     pw().format(sformat,ns.getDescription()==null?"":ns.getDescription());
73                 }
74                 if (!(ns.getAdmin().isEmpty())) {
75                     pw().println("    Administrators");
76                     for (String admin : ns.getAdmin()) {
77                         pw().format(sformat,admin);
78                     }
79                 }
80                 if (!(ns.getResponsible().isEmpty())) {
81                     pw().println("    Owners (Responsible for Namespace)");
82                     for (String responsible : ns.getResponsible()) {
83                         pw().format(sformat,responsible);
84                     }
85                 }
86                 if (!(ns.getAttrib().isEmpty())) {
87                     pw().println("    Namespace Attributes");
88                     for (  Ns.Attrib attr : ns.getAttrib()) {
89                         StringBuilder sb = new StringBuilder(attr.getKey());
90                         if (attr.getValue()==null || attr.getValue().length()>0) {
91                             sb.append('=');
92                             sb.append(attr.getValue());
93                         }
94                         pw().format(sformat,sb.toString());
95                     }
96
97                 }
98             }
99         }
100     }
101
102     public void reportName(Future<Nss> fp, String ... str) {
103         reportHead(str);
104         if (fp!=null && fp.value!=null) {
105             java.util.List<Ns> nss = fp.value.getNs();
106             Collections.sort(nss, new Comparator<Ns>() {
107                 @Override
108                 public int compare(Ns ns1, Ns ns2) {
109                     return ns1.getName().compareTo(ns2.getName());
110                 }
111             });
112
113             for (Ns ns : nss) {
114                 pw().println(ns.getName());
115                 if (this.aafcli.isDetailed() && ns.getDescription() != null) {
116                     pw().println("   " + ns.getDescription());
117                 }
118             }
119         }
120     }
121
122     public void reportRole(Future<Roles> fr) {
123         if (fr!=null && fr.value!=null && !(fr.value.getRole().isEmpty())) {
124             pw().println("    Roles");
125             for (aaf.v2_0.Role r : fr.value.getRole()) {
126                 pw().format(sformat,r.getName());
127             }
128         }
129     }
130
131     public void reportPerm(Future<Perms> fp) {
132         if (fp!=null && fp.value!=null && !(fp.value.getPerm().isEmpty())) {
133             pw().println("    Permissions");
134             for (aaf.v2_0.Perm p : fp.value.getPerm()) {
135                 pw().format(pformat,p.getType(),p.getInstance(),p.getAction());
136             }
137         }
138     }
139
140
141     public void reportCred(Future<Users> fc) {
142         if (fc!=null && fc.value!=null && !(fc.value.getUser().isEmpty())) {
143             pw().println("    Credentials");
144             java.util.List<User> users = fc.value.getUser();
145             Collections.sort(users, new Comparator<User>() {
146                 @Override
147                 public int compare(User u1, User u2) {
148                     return u1.getId().compareTo(u2.getId());
149                 }
150             });
151             for (aaf.v2_0.Users.User u : users) {
152                 if (this.aafcli.isTest()) {
153                     pw().format(sformat,u.getId());
154                 } else {
155                     pw().format(cformat,u.getId(),getType(u),Chrono.niceDateStamp(u.getExpires()));
156                 }
157             }
158         }
159     }
160
161     public static String getType(User u) {
162         Integer type;
163         if ((type=u.getType())==null) {
164             type = 9999;
165         }
166         return Define.getCredType(type);
167     }
168
169
170 }