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