Aaf cleanup in TopicService implementation
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / service / AafTopicSetupService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2019 Nokia 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 package org.onap.dmaap.dbcapi.service;
21
22 import org.onap.dmaap.dbcapi.aaf.AafNamespace;
23 import org.onap.dmaap.dbcapi.aaf.AafRole;
24 import org.onap.dmaap.dbcapi.aaf.AafService;
25 import org.onap.dmaap.dbcapi.aaf.DmaapGrant;
26 import org.onap.dmaap.dbcapi.aaf.DmaapPerm;
27 import org.onap.dmaap.dbcapi.logging.BaseLoggingClass;
28 import org.onap.dmaap.dbcapi.model.ApiError;
29 import org.onap.dmaap.dbcapi.model.Topic;
30
31 import static java.lang.String.format;
32
33 class AafTopicSetupService extends BaseLoggingClass {
34
35     private final AafService aafService;
36     private final DmaapService dmaapService;
37     private final boolean createTopicRoles;
38
39     AafTopicSetupService(AafService aafService, DmaapService dmaapService, boolean createTopicRoles) {
40         this.aafService = aafService;
41         this.dmaapService = dmaapService;
42         this.createTopicRoles = createTopicRoles;
43     }
44
45     ApiError aafTopicSetup(Topic topic) {
46
47         try {
48             String instance = ":topic." + topic.getFqtn();
49             String topicPerm = dmaapService.getTopicPerm();
50             DmaapPerm pubPerm = createPermission(topicPerm, instance, "pub");
51             DmaapPerm subPerm = createPermission(topicPerm, instance, "sub");
52             DmaapPerm viewPerm = createPermission(topicPerm, instance, "view");
53
54             // creating Topic Roles was not an original feature.
55             // For backwards compatibility, only do this if the feature is enabled.
56             // Also, if the namespace of the topic is a foreign namespace, (i.e. not the same as our root ns)
57             // then we likely don't have permission to create sub-ns and Roles so don't try.
58             if (createTopicRoles && topic.getFqtn().startsWith(getTopicsNsRoot())) {
59                 createNamespace(topic);
60
61                 AafRole pubRole = createRole(topic, "publisher");
62                 topic.setPublisherRole(pubRole.getFullyQualifiedRole());
63
64                 AafRole subRole = createRole(topic, "subscriber");
65                 topic.setSubscriberRole(subRole.getFullyQualifiedRole());
66
67                 grantPermToRole(pubRole, pubPerm);
68                 grantPermToRole(pubRole, viewPerm);
69
70                 grantPermToRole(subRole, subPerm);
71                 grantPermToRole(subRole, viewPerm);
72             }
73
74         } catch (TopicSetupException ex) {
75             return new ApiError(ex.getCode(), ex.getMessage(), ex.getFields());
76         }
77         return okStatus();
78     }
79
80     ApiError aafTopicCleanup(Topic topic) {
81         return okStatus();
82     }
83
84     private String getTopicsNsRoot() throws TopicSetupException {
85         String nsr = dmaapService.getDmaap().getTopicNsRoot();
86         if (nsr == null) {
87             throw new TopicSetupException(500,
88                     "Unable to establish AAF namespace root: (check /dmaap object)", "topicNsRoot");
89         }
90         return nsr;
91     }
92
93     private DmaapPerm createPermission(String permission, String instance, String action) throws TopicSetupException {
94         DmaapPerm perm = new DmaapPerm(permission, instance, action);
95         int rc = aafService.addPerm(perm);
96         if (rc != 201 && rc != 409) {
97             throw new TopicSetupException(500,
98                     format("Unexpected response from AAF: %d permission=%s instance=%s action=%s",
99                             rc, perm, instance, action));
100         }
101         return perm;
102     }
103
104     private void grantPermToRole(AafRole aafRole, DmaapPerm perm) throws TopicSetupException {
105         DmaapGrant g = new DmaapGrant(perm, aafRole.getFullyQualifiedRole());
106         int rc = aafService.addGrant(g);
107         if (rc != 201 && rc != 409) {
108             String message = format("Grant of %s failed for %s", perm.toString(), aafRole.getFullyQualifiedRole());
109             logger.warn(message);
110             throw new TopicSetupException(rc, message);
111         }
112     }
113
114     private void createNamespace(Topic topic) throws TopicSetupException {
115         AafNamespace ns = new AafNamespace(topic.getFqtn(), aafService.getIdentity());
116         int rc = aafService.addNamespace(ns);
117         if (rc != 201 && rc != 409) {
118             throw new TopicSetupException(500,
119                     format("Unexpected response from AAF: %d namespace=%s identity=%s",
120                             rc, topic.getFqtn(), aafService.getIdentity()));
121         }
122     }
123
124     private AafRole createRole(Topic topic, String roleName) throws TopicSetupException {
125         int rc;
126         AafRole role = new AafRole(topic.getFqtn(), roleName);
127         rc = aafService.addRole(role);
128         if (rc != 201 && rc != 409) {
129             throw new TopicSetupException(500,
130                     format("Unexpected response from AAF: %d topic=%s role=%s",
131                             rc, topic.getFqtn(), roleName));
132         }
133         return role;
134     }
135
136     private ApiError okStatus() {
137         return new ApiError(200, "OK");
138     }
139
140     private class TopicSetupException extends Exception {
141         private final int code;
142         private final String message;
143         private final String fields;
144
145         TopicSetupException(int code, String message) {
146             this(code, message, "");
147         }
148
149         TopicSetupException(int code, String message, String fields) {
150             this.code = code;
151             this.message = message;
152             this.fields = fields;
153         }
154
155         public int getCode() {
156             return code;
157         }
158
159         @Override
160         public String getMessage() {
161             return message;
162         }
163
164         public String getFields() {
165             return fields;
166         }
167     }
168 }