Sonar fix: List.java
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / Attrib.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth.cmd.ns;
23
24 import org.onap.aaf.auth.cmd.AAFcli;
25 import org.onap.aaf.auth.cmd.BaseCmd;
26 import org.onap.aaf.auth.cmd.Param;
27 import org.onap.aaf.auth.rserv.HttpMethods;
28 import org.onap.aaf.cadi.CadiException;
29 import org.onap.aaf.cadi.LocatorException;
30 import org.onap.aaf.cadi.client.Future;
31 import org.onap.aaf.cadi.client.Rcli;
32 import org.onap.aaf.cadi.client.Retryable;
33 import org.onap.aaf.misc.env.APIException;
34
35 public class Attrib extends BaseCmd<NS> {
36     private final static String[] options = {"add","upd","del"};
37     private String authzString = "/authz/ns/";
38     private String atrributeString = "/attrib/";
39
40     public Attrib(NS ns) {
41         super(ns,"attrib",
42                 new Param(optionsToString(options),true),
43                 new Param("ns-name",true),
44                 new Param("key",true),
45                 new Param("value",false)
46         );
47     }
48
49     @Override
50     public int _exec(final int idx, final String ... args) throws CadiException, APIException, LocatorException {
51         final int option = whichOption(options, args[idx]);
52         final String ns = args[idx+1];
53         final String key = args[idx+2];
54         final String value;
55         if (option!=2) {
56             if (args.length<=idx+3) {
57                 throw new CadiException("Not added: Need more Data");
58             }
59             value = args[idx+3];
60         } else {
61             value = "";
62         }
63         
64         return same(new Retryable<Integer>() {
65             @Override
66             public Integer code(Rcli<?> client) throws CadiException, APIException {    
67                 Future<Void> fp = null;
68                 String message;
69                 switch(option) {
70                     case 0: 
71                         fp = client.create(authzString+ns+atrributeString+key+'/'+value,Void.class);
72                         message = String.format("Add Attrib %s=%s to %s",
73                                 key,value,ns);
74                         break;
75                     case 1: 
76                         fp = client.update(authzString+ns+atrributeString+key+'/'+value);
77                         message = String.format("Update Attrib %s=%s for %s",
78                                 key,value,ns);
79                         break;
80                     case 2: 
81                         fp = client.delete(authzString+ns+atrributeString+key,Void.class);
82                         message = String.format("Attrib %s deleted from %s",
83                                 key,ns);
84                         break;
85                     default:
86                         throw new CadiException("Bad Argument");
87                 };
88                 if (fp==null) {
89                     return 500;
90                 } else {
91                     if (fp.get(AAFcli.timeout())) {
92                         pw().println(message);
93                     } else {
94                         error(fp);
95                     }
96                         
97                     return fp.code(); 
98                 }
99             }
100         });
101     }
102
103     @Override
104     public void detailedHelp(int indentValue, StringBuilder sb) {
105             int indent = indentValue;
106         detailLine(sb,indent,"Add or Delete Administrator to/from Namespace");
107         indent+=4;
108         detailLine(sb,indent,"name - Name of Namespace");
109         detailLine(sb,indent,"id   - Credential of Person(s) to be Administrator");
110         sb.append('\n');
111         detailLine(sb,indent,"aafcli will call API on each ID presented.");
112         indent-=4;
113         api(sb,indent,HttpMethods.POST,"authz/ns/<ns>/admin/<id>",Void.class,true);
114         api(sb,indent,HttpMethods.DELETE,"authz/ns/<ns>/admin/<id>",Void.class,false);
115     }
116
117 }