Update project structure to org.onap.aaf
[aaf/authz.git] / authz-cmd / src / main / java / org / onap / aaf / cmd / role / CreateDelete.java
diff --git a/authz-cmd/src/main/java/org/onap/aaf/cmd/role/CreateDelete.java b/authz-cmd/src/main/java/org/onap/aaf/cmd/role/CreateDelete.java
new file mode 100644 (file)
index 0000000..78ab181
--- /dev/null
@@ -0,0 +1,132 @@
+/*******************************************************************************\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.role;\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 com.att.aft.dme2.internal.jetty.http.HttpStatus;\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.RoleRequest;\r
+\r
+/**\r
+ * \r
+ *\r
+ */\r
+public class CreateDelete extends Cmd {\r
+       private static final String ROLE_PATH = "/authz/role";\r
+       private final static String[] options = {"create","delete"};\r
+       public CreateDelete(Role parent) {\r
+               super(parent,null, \r
+                               new Param(optionsToString(options),true),\r
+                               new Param("name",true)); \r
+       }\r
+\r
+       @Override\r
+       public int _exec(final int index, final String ... args) throws CadiException, APIException, LocatorException {\r
+               return same(new Retryable<Integer>() {\r
+                       @Override\r
+                       public Integer code(Rcli<?> client) throws CadiException, APIException {\r
+                               int idx = index;\r
+                               String action = args[idx++];\r
+                               int option = whichOption(options, action);\r
+               \r
+                               RoleRequest rr = new RoleRequest();\r
+                               rr.setName(args[idx++]);\r
+               \r
+                               // Set Start/End commands\r
+                               setStartEnd(rr);\r
+                               \r
+                               Future<RoleRequest> fp = null;\r
+                               String verb = null;\r
+                               int rv;\r
+                               switch(option) {\r
+                                       case 0:\r
+                                               fp = client.create(\r
+                                                       ROLE_PATH,\r
+                                                       getDF(RoleRequest.class),\r
+                                                       rr\r
+                                                       );\r
+                                               verb = "Create";\r
+                                               break;\r
+                                       case 1:\r
+                                               // Send "Force" if set\r
+                                               setQueryParamsOn(client);\r
+                                               fp = client.delete(\r
+                                                               ROLE_PATH, // +args[idx++], \r
+                                                               getDF(RoleRequest.class),\r
+                                                               rr\r
+                                                               );\r
+                                               verb = "Delete";\r
+                                               break;\r
+                                       default: // note, if not an option, whichOption throws Exception\r
+                                               break;\r
+                                               \r
+                               }\r
+                               boolean rolesSupplied = (args.length>idx);\r
+                               if(fp.get(AAFcli.timeout())) {\r
+                                       rv=fp.code();\r
+                                       pw().print(verb);\r
+                                       pw().println("d Role");\r
+                                       if(rolesSupplied) {\r
+                                               for(;args.length>idx;++idx ) {\r
+                                                       try {\r
+                                                               if(201!=(rv=((Role)parent)._exec(0,new String[] {"user","add",rr.getName(),args[idx]}))) {\r
+                                                                       rv = HttpStatus.PARTIAL_CONTENT_206;\r
+                                                               }\r
+                                                       } catch (LocatorException e) {\r
+                                                               throw new CadiException(e);\r
+                                                       }\r
+                                               }\r
+                                       }\r
+                               } else {\r
+                                       if((rv=fp.code())==202) {\r
+                                               pw().print("Role ");\r
+                                               pw().print(verb);\r
+                                               pw().println(" Accepted, but requires Approvals before actualizing");\r
+                                       } else {\r
+                                               error(fp);\r
+                                       }\r
+                               }\r
+                               return rv;\r
+                       }\r
+               });\r
+       }\r
+\r
+       @Override\r
+       public void detailedHelp(int indent, StringBuilder sb) {\r
+               detailLine(sb,indent,"Create OR Delete a Role");\r
+               detailLine(sb,indent+2,"name - Name of Role to create");\r
+               api(sb,indent,HttpMethods.POST,"authz/role",RoleRequest.class,true);\r
+               api(sb,indent,HttpMethods.DELETE,"authz/role",RoleRequest.class,false);\r
+       }\r
+\r
+}\r