[AAF-21] Updated Copyright Headers for AAF
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / mgmt / Log.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.mgmt;\r
24 \r
25 import com.att.authz.common.Define;\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.BaseCmd;\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 public class Log extends BaseCmd<Mgmt> {\r
38         private final static String[] options = {"add","del"};\r
39 \r
40         public Log(Mgmt mgmt) throws APIException {\r
41                 super(mgmt, "log",\r
42                                 new Param(optionsToString(options),true),\r
43                                 new Param("id[,id]*",true));\r
44         }\r
45         \r
46         @Override\r
47         public int _exec(int _idx, String ... args) throws CadiException, APIException, LocatorException {\r
48                 int rv=409;\r
49                 int idx = _idx;\r
50                 final int option = whichOption(options, args[idx++]);\r
51 \r
52                 for(String name : args[idx++].split(COMMA)) {\r
53                         final String fname;\r
54                         if(name.indexOf("@")<0) {\r
55                                 fname=name+'@'+ env.getProperty(AAFcli.AAF_DEFAULT_REALM);\r
56                         } else {\r
57                                 fname = name;\r
58                         }\r
59                         \r
60                         \r
61 \r
62                         rv = all(new Retryable<Integer>() {\r
63                                 @Override\r
64                                 public Integer code(Rcli<?> client) throws APIException, CadiException {\r
65                                         int rv = 409;\r
66                                         Future<Void> fp;\r
67                                         String str = "/mgmt/log/id/"+fname;\r
68                                         String msg;\r
69                                         switch(option) {\r
70                                                 case 0: \r
71                                                         fp = client.create(str,Void.class);\r
72                                                         msg = "Added";\r
73                                                         break;\r
74                                                 case 1:\r
75                                                         fp = client.delete(str,Void.class);\r
76                                                         msg = "Deleted";\r
77                                                         break;\r
78                                                 default:\r
79                                                         fp = null;\r
80                                                         msg = "Ignored";\r
81                                         }\r
82                                                         \r
83                                         if(fp!=null) {\r
84                                                 if(fp.get(AAFcli.timeout())) {\r
85                                                         pw().println(msg + " Special Log for " + fname + " on " + client);\r
86                                                         rv=200;\r
87                                                 } else {\r
88                                                         if(rv==409)rv = fp.code();\r
89                                                         error(fp);\r
90                                                 }\r
91                                                 return rv;\r
92                                         }\r
93                                         return rv;\r
94                                 }\r
95                         });\r
96                 }\r
97                 return rv;\r
98         }\r
99 \r
100         @Override\r
101         public void detailedHelp(int _indent, StringBuilder sb) {\r
102                 int indent = _indent;\r
103                 detailLine(sb,indent,"Clear the cache for certain tables");\r
104                 indent+=2;\r
105                 detailLine(sb,indent,"name        - name of table or 'all'");\r
106                 detailLine(sb,indent+14,"Must have admin rights to '" + Define.ROOT_NS + '\'');\r
107                 indent-=2;\r
108                 api(sb,indent,HttpMethods.DELETE,"mgmt/cache/:name",Void.class,true);\r
109         }\r
110 }\r