Update AAF Version 1.0.0
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / user / ListApprovals.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package com.att.cmd.user;\r
24 \r
25 import com.att.cadi.CadiException;\r
26 import com.att.cadi.LocatorException;\r
27 import com.att.cadi.client.Future;\r
28 import com.att.cadi.client.Rcli;\r
29 import com.att.cadi.client.Retryable;\r
30 import com.att.cmd.AAFcli;\r
31 import com.att.cmd.Cmd;\r
32 import com.att.cmd.Param;\r
33 import com.att.cssa.rserv.HttpMethods;\r
34 import com.att.inno.env.APIException;\r
35 \r
36 import aaf.v2_0.Approvals;\r
37 \r
38 /**\r
39  * \r
40  *\r
41  */\r
42 public class ListApprovals extends Cmd {\r
43         private static final String HEADER = "List Approvals"; \r
44         private final static String[] options = {"user","approver","ticket"};\r
45         public ListApprovals(List parent) {\r
46                 super(parent,"approvals", \r
47                                 new Param(optionsToString(options),true),\r
48                                 new Param("value",true)); \r
49         }\r
50 \r
51         @Override\r
52         public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {\r
53                 int idx = _idx;\r
54                 final String type = args[idx++];\r
55                 int option = whichOption(options,type);\r
56                 String value = args[idx++];\r
57                 final String fullValue;\r
58                 if (option != 2) {\r
59                         String realm = getOrgRealm();\r
60                         fullValue = (value.indexOf('@')<0 && realm != null)?value +'@'+realm:value;\r
61                 } else {\r
62                     fullValue = value;\r
63                 }\r
64                 return same(new Retryable<Integer>() {\r
65                         @Override\r
66                         public Integer code(Rcli<?> client) throws CadiException, APIException {\r
67                                 Future<Approvals> fp = client.read(\r
68                                                 "/authz/approval/"+type+'/'+fullValue, \r
69                                                 getDF(Approvals.class)\r
70                                                 );\r
71                                 if(fp.get(AAFcli.timeout())) {\r
72                                         ((List)parent).report(fp.value,HEADER + " by " + type,fullValue);\r
73                                         if(fp.code()==404) {\r
74                                             return 200;\r
75                                         }\r
76                                 } else {\r
77                                         error(fp);\r
78                                 }\r
79                                 return fp.code();\r
80                         }\r
81                 });\r
82         }\r
83 \r
84         @Override\r
85         public void detailedHelp(int _indent, StringBuilder sb) {\r
86                 int indent = _indent;\r
87                 detailLine(sb,indent,HEADER);\r
88                 indent+=2;\r
89                 detailLine(sb,indent,"Approvals are used when the Requestor does not have the rights");\r
90                 detailLine(sb,indent,"to perform the action required.  Approvers are those listed as");\r
91                 detailLine(sb,indent,"responsible for Namespace associated with the request, and those");\r
92                 detailLine(sb,indent,"required by the Company by Policy.  This may be, for instance");\r
93                 detailLine(sb,indent,"the supervisor of the requestor");\r
94                 sb.append('\n');\r
95                 detailLine(sb,indent,"Delegates can be listed by User, Approver or Ticket.");\r
96                 indent-=2;\r
97                 api(sb,indent,HttpMethods.GET,"authz/approval/user/<value>",Approvals.class,true);\r
98                 api(sb,indent,HttpMethods.GET,"authz/approval/approver/<value>",Approvals.class,false);\r
99                 api(sb,indent,HttpMethods.GET,"authz/approval/ticket/<value>",Approvals.class,false);\r
100         }\r
101 \r
102 \r
103 }\r