Update project structure to org.onap.aaf
[aaf/authz.git] / authz-cmd / src / main / java / org / onap / aaf / cmd / ns / ListUsersWithPerm.java
diff --git a/authz-cmd/src/main/java/org/onap/aaf/cmd/ns/ListUsersWithPerm.java b/authz-cmd/src/main/java/org/onap/aaf/cmd/ns/ListUsersWithPerm.java
new file mode 100644 (file)
index 0000000..ad65fae
--- /dev/null
@@ -0,0 +1,128 @@
+/*******************************************************************************\r
+ * ============LICENSE_START====================================================\r
+ * * org.onap.aaf\r
+ * * ===========================================================================\r
+ * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
+ * * ===========================================================================\r
+ * * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * * you may not use this file except in compliance with the License.\r
+ * * You may obtain a copy of the License at\r
+ * * \r
+ *  *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * * \r
+ *  * Unless required by applicable law or agreed to in writing, software\r
+ * * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * * See the License for the specific language governing permissions and\r
+ * * limitations under the License.\r
+ * * ============LICENSE_END====================================================\r
+ * *\r
+ * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
+ * *\r
+ ******************************************************************************/\r
+package org.onap.aaf.cmd.ns;\r
+\r
+import java.util.HashSet;\r
+import java.util.Set;\r
+\r
+import org.onap.aaf.cmd.AAFcli;\r
+import org.onap.aaf.cmd.Cmd;\r
+import org.onap.aaf.cmd.Param;\r
+import org.onap.aaf.cssa.rserv.HttpMethods;\r
+\r
+import org.onap.aaf.cadi.CadiException;\r
+import org.onap.aaf.cadi.LocatorException;\r
+import org.onap.aaf.cadi.client.Future;\r
+import org.onap.aaf.cadi.client.Rcli;\r
+import org.onap.aaf.cadi.client.Retryable;\r
+import org.onap.aaf.inno.env.APIException;\r
+\r
+import aaf.v2_0.Nss;\r
+import aaf.v2_0.Nss.Ns;\r
+import aaf.v2_0.Perm;\r
+import aaf.v2_0.Perms;\r
+import aaf.v2_0.Users;\r
+import aaf.v2_0.Users.User;\r
+\r
+/**\r
+ * p\r
+ *\r
+ */\r
+public class ListUsersWithPerm extends Cmd {\r
+       private static final String HEADER="List Users of Permissions of Namespace ";\r
+       \r
+       public ListUsersWithPerm(ListUsers parent) {\r
+               super(parent,"perm", \r
+                               new Param("ns",true)); \r
+       }\r
+\r
+       @Override\r
+       public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {\r
+               int idx = _idx;\r
+               final String ns=args[idx++];\r
+               final boolean detail = aafcli.isDetailed();\r
+               return same(new Retryable<Integer>() {\r
+                       @Override\r
+                       public Integer code(Rcli<?> client) throws CadiException, APIException {\r
+                               ((ListUsers)parent).report(HEADER,ns);\r
+                               Future<Nss> fn = client.read("/authz/nss/"+ns,getDF(Nss.class));\r
+                               if(fn.get(AAFcli.timeout())) {\r
+                                       if(fn.value!=null) {\r
+                                               Set<String> uset = detail?null:new HashSet<String>();\r
+                                               \r
+                                               for(Ns n : fn.value.getNs()) {\r
+                                                       Future<Perms> fp = client.read("/authz/perms/ns/"+n.getName(), getDF(Perms.class));\r
+                                                       if(fp.get(AAFcli.timeout())) {\r
+                                                               for(Perm p : fp.value.getPerm()) {\r
+                                                                       String perm = p.getType()+'/'+p.getInstance()+'/'+p.getAction();\r
+                                                                       if(detail)((ListUsers)parent).report(perm);\r
+                                                                       Future<Users> fus = client.read(\r
+                                                                                       "/authz/users/perm/"+perm, \r
+                                                                                       getDF(Users.class)\r
+                                                                                       );\r
+                                                                       if(fus.get(AAFcli.timeout())) {\r
+                                                                               for(User u : fus.value.getUser()) {\r
+                                                                                       if(detail)\r
+                                                                                               ((ListUsers)parent).report("  ",u);\r
+                                                                                       else \r
+                                                                                               uset.add(u.getId());\r
+                                                                               }\r
+                                                                       } else if(fn.code()==404) {\r
+                                                                               return 200;\r
+                                                                       }\r
+                                                               }\r
+                                                       }\r
+                                               }\r
+                                               if(uset!=null) {\r
+                                                       for(String u : uset) {\r
+                                                               pw().print("  ");\r
+                                                               pw().println(u);\r
+                                                       }\r
+                                               }\r
+                                       }\r
+                               } else if(fn.code()==404) {\r
+                                       return 200;\r
+                               } else {        \r
+                                       error(fn);\r
+                               }\r
+                               return fn.code();\r
+                       }\r
+               });\r
+       }\r
+\r
+       @Override\r
+       public void detailedHelp(int _indent, StringBuilder sb) {\r
+               int indent = _indent;\r
+               detailLine(sb,indent,HEADER);\r
+               indent+=4;\r
+               detailLine(sb,indent,"Report Users associated with this Namespace's Permissions");\r
+               sb.append('\n');\r
+               detailLine(sb,indent,"If \"set detail=true\" is specified, then Permissions are printed with the associated");\r
+               detailLine(sb,indent,"users and expiration dates");\r
+               indent-=4;\r
+               api(sb,indent,HttpMethods.GET,"authz/nss/<ns>",Nss.class,true);\r
+               api(sb,indent,HttpMethods.GET,"authz/perms/ns/<ns>",Perms.class,false);\r
+               api(sb,indent,HttpMethods.GET,"authz/users/perm/<type>/<instance>/<action>",Users.class,false);\r
+       }\r
+\r
+}\r