[DMAAP-BC] Consolidate bus controller repos
[dmaap/buscontroller.git] / dmaap-bc / src / main / java / org / onap / dmaap / dbcapi / aaf / AafServiceImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2017 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 package org.onap.dmaap.dbcapi.aaf;
22
23 import org.onap.dmaap.dbcapi.logging.BaseLoggingClass;
24 import org.onap.dmaap.dbcapi.logging.DmaapbcLogMessageEnum;
25
26 import static java.lang.String.format;
27
28 public class AafServiceImpl extends BaseLoggingClass implements AafService {
29
30     private static final int CREATED = 201;
31     private static final int OK = 200;
32     private static final String FORCE = "?force=true";
33     private final String aafUrl;
34     private final String identity;
35     private final boolean useAAF;
36     private final AafConnection aafConnection;
37
38     AafServiceImpl(boolean useAaf, String aafUrl, String identity, AafConnection aafConnection) {
39         this.useAAF = useAaf;
40         this.aafUrl = aafUrl;
41         this.identity = identity;
42         this.aafConnection = aafConnection;
43     }
44
45     @Override
46     public String getIdentity() {
47         return identity;
48     }
49
50     @Override
51     public int addPerm(DmaapPerm perm) {
52         logger.info("entry: addPerm() ");
53         return doPost(perm, "authz/perm", CREATED);
54     }
55
56     @Override
57     public int delPerm(DmaapPerm perm, boolean force) {
58         logger.info("entry: delPerm()");
59         return doDelete(new AafEmpty(), format(
60                 "authz/perm/%s/%s/%s%s",
61                 perm.getPermission(), perm.getPtype(), perm.getAction(), force ? FORCE : ""), OK);
62     }
63
64     @Override
65     public int addGrant(DmaapGrant grant) {
66         logger.info("entry: addGrant() ");
67         return doPost(grant, "authz/role/perm", CREATED);
68     }
69
70     @Override
71     public int addUserRole(AafUserRole ur) {
72         logger.info("entry: addUserRole() ");
73         return doPost(ur, "authz/userRole", CREATED);
74     }
75
76     @Override
77     public int addRole(AafRole role) {
78         logger.info("entry: addRole() ");
79         return doPost(role, "authz/role", CREATED);
80     }
81
82     @Override
83     public int addNamespace(AafNamespace ns) {
84         logger.info("entry: addNamespace() ");
85         return doPost(ns, "authz/ns", CREATED);
86     }
87
88     @Override
89     public int delNamespace(AafNamespace ns, boolean force) {
90         logger.info("entry: delNamespace()");
91         return doDelete(new AafEmpty(), format(
92                 "authz/ns/%s%s",
93                 ns.getName(), force ? FORCE : ""), OK);
94     }
95
96     private int doPost(AafObject obj, String uri, int expect) {
97         int rc;
98         logger.info("entry: doPost() ");
99         String pURL = aafUrl + uri;
100         logger.info("doPost: useAAF=" + useAAF);
101         if (useAAF) {
102             logger.info("doPost: " + obj.toJSON());
103             rc = aafConnection.postAaf(obj, pURL);
104         } else {
105             rc = expect;
106         }
107         switch (rc) {
108             case 401:
109             case 403:
110                 errorLogger.error(DmaapbcLogMessageEnum.AAF_CREDENTIAL_ERROR, identity);
111                 break;
112             case 409:
113                 logger.warn("Object for " + uri + " already exists. Possible conflict.");
114                 break;
115             default:
116                 if (rc == expect) {
117                     logger.info("expected response: " + rc);
118                 } else {
119                     logger.error("Unexpected response: " + rc);
120                 }
121                 break;
122         }
123
124         return rc;
125     }
126
127     private int doDelete(AafObject obj, String uri, int expect) {
128         int rc;
129         String pURL = aafUrl + uri;
130         if (useAAF) {
131             logger.info("doDelete: " + obj.toJSON());
132             rc = aafConnection.delAaf(obj, pURL);
133         } else {
134             rc = expect;
135         }
136         switch (rc) {
137             case 401:
138             case 403:
139                 errorLogger.error(DmaapbcLogMessageEnum.AAF_CREDENTIAL_ERROR, identity);
140                 break;
141             case 404:
142                 logger.warn("Object not found...ignore");
143                 break;
144             case OK:
145                 logger.info("expected response");
146                 break;
147             default:
148                 logger.error("Unexpected response: " + rc);
149                 break;
150         }
151
152         return rc;
153     }
154
155     String getAafUrl() {
156         return aafUrl;
157     }
158
159     boolean isUseAAF() {
160         return useAAF;
161     }
162
163 }