031f594296510faba5064b7e15313384ef4ebbcd
[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     private String getTopicsNsRoot() throws TopicSetupException {
81         String nsr = dmaapService.getDmaap().getTopicNsRoot();
82         if (nsr == null) {
83             throw new TopicSetupException(500,
84                     "Unable to establish AAF namespace root: (check /dmaap object)", "topicNsRoot");
85         }
86         return nsr;
87     }
88
89     private DmaapPerm createPermission(String permission, String instance, String action) throws TopicSetupException {
90         DmaapPerm perm = new DmaapPerm(permission, instance, action);
91         int rc = aafService.addPerm(perm);
92         if (rc != 201 && rc != 409) {
93             throw new TopicSetupException(500,
94                     format("Unexpected response from AAF: %d permission=%s instance=%s action=%s",
95                             rc, perm, instance, action));
96         }
97         return perm;
98     }
99
100     private void grantPermToRole(AafRole aafRole, DmaapPerm perm) throws TopicSetupException {
101         DmaapGrant g = new DmaapGrant(perm, aafRole.getFullyQualifiedRole());
102         int rc = aafService.addGrant(g);
103         if (rc != 201 && rc != 409) {
104             String message = format("Grant of %s failed for %s", perm.toString(), aafRole.getFullyQualifiedRole());
105             logger.warn(message);
106             throw new TopicSetupException(rc, message);
107         }
108     }
109
110     private void createNamespace(Topic topic) throws TopicSetupException {
111         AafNamespace ns = new AafNamespace(topic.getFqtn(), aafService.getIdentity());
112         int rc = aafService.addNamespace(ns);
113         if (rc != 201 && rc != 409) {
114             throw new TopicSetupException(500,
115                     format("Unexpected response from AAF: %d namespace=%s identity=%s",
116                             rc, topic.getFqtn(), aafService.getIdentity()));
117         }
118     }
119
120     private AafRole createRole(Topic topic, String roleName) throws TopicSetupException {
121         int rc;
122         AafRole role = new AafRole(topic.getFqtn(), roleName);
123         rc = aafService.addRole(role);
124         if (rc != 201 && rc != 409) {
125             throw new TopicSetupException(500,
126                     format("Unexpected response from AAF: %d topic=%s role=%s",
127                             rc, topic.getFqtn(), roleName));
128         }
129         return role;
130     }
131
132     private ApiError okStatus() {
133         return new ApiError(200, "OK");
134     }
135
136     private class TopicSetupException extends Exception {
137         private final int code;
138         private final String message;
139         private final String fields;
140
141         TopicSetupException(int code, String message) {
142             this(code, message, "");
143         }
144
145         TopicSetupException(int code, String message, String fields) {
146             this.code = code;
147             this.message = message;
148             this.fields = fields;
149         }
150
151         public int getCode() {
152             return code;
153         }
154
155         @Override
156         public String getMessage() {
157             return message;
158         }
159
160         public String getFields() {
161             return fields;
162         }
163     }
164 }