Actually remove pubs and subs on Feed delete
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / model / DR_Sub.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.model;
22
23 import java.nio.charset.StandardCharsets;
24
25 import javax.xml.bind.annotation.XmlRootElement;
26
27 import org.json.simple.JSONObject;
28 import org.json.simple.parser.JSONParser;
29 import org.json.simple.parser.ParseException;
30 import org.onap.dmaap.dbcapi.logging.DmaapbcLogMessageEnum;
31
32 @XmlRootElement
33 public class DR_Sub extends DmaapObject {
34
35         private String dcaeLocationName;
36         private String username;
37         private String userpwd;
38         private String feedId;
39         private String deliveryURL;
40         private String logURL;
41         private String subId;
42         private boolean use100;
43         private boolean suspended;
44         private String owner;
45         
46         public String getOwner() {
47                 return owner;
48         }
49
50         public void setOwner(String owner) {
51                 this.owner = owner;
52         }
53
54         public boolean isSuspended() {
55                 return suspended;
56         }
57
58         public void setSuspended(boolean suspended) {
59                 this.suspended = suspended;
60         }
61
62
63
64         public boolean isUse100() {
65                 return use100;
66         }
67
68         public void setUse100(boolean use100) {
69                 this.use100 = use100;
70         }
71
72         public DR_Sub() {
73
74         }
75         
76         public DR_Sub( String dLN,
77                                         String uN,
78                                         String uP,
79                                         String fI,
80                                         String dU,
81                                         String lU,
82                                         boolean u100 ) {
83                 this.dcaeLocationName = dLN;
84                 this.username = uN;
85                 this.userpwd = uP;
86                 this.feedId = fI;
87                 this.deliveryURL = dU;
88                 this.logURL = lU;
89                 this.use100 = u100;
90                 this.setStatus( DmaapObject_Status.NEW );
91                 this.subId = "0";
92         }
93         
94         public DR_Sub ( String json ) {
95                 logger.info( "DR_Sub:" + json );
96                 JSONParser parser = new JSONParser();
97                 JSONObject jsonObj;
98                 
99                 try {
100                         jsonObj = (JSONObject) parser.parse( json );
101                 } catch ( ParseException pe ) {
102                         errorLogger.error( DmaapbcLogMessageEnum.JSON_PARSING_ERROR, "DR_Sub", json );
103             this.setStatus( DmaapObject_Status.INVALID );
104             return;
105         }
106
107                 this.setOwner( (String) jsonObj.get("subscriber"));
108                 this.setSuspended( (boolean) jsonObj.get("suspend"));
109                 
110                 JSONObject links = (JSONObject) jsonObj.get("links");
111                 String url = (String) links.get("feed");
112                 this.setFeedId( url.substring( url.lastIndexOf('/')+1, url.length() ));
113                 url = (String) links.get("self");
114                 this.setSubId( url.substring( url.lastIndexOf('/')+1, url.length() ));
115                 logger.info( "feedid="+ this.getFeedId() );
116                 this.setLogURL( (String) links.get("log") );
117                 
118                 JSONObject del = (JSONObject) jsonObj.get("delivery");
119                 this.setDeliveryURL( (String) del.get("url") ); 
120                 this.setUsername( (String) del.get("user"));
121                 this.setUserpwd( (String) del.get( "password"));
122                 this.setUse100((boolean) del.get( "use100"));
123
124                 this.setStatus( DmaapObject_Status.VALID );
125
126                 logger.info( "new DR_Sub returning");
127         }
128
129         public String getDcaeLocationName() {
130                 return dcaeLocationName;
131         }
132
133         public void setDcaeLocationName(String dcaeLocationName) {
134                 this.dcaeLocationName = dcaeLocationName;
135         }
136
137         public String getUsername() {
138                 return username;
139         }
140
141         public void setUsername(String username) {
142                 this.username = username;
143         }
144
145         public String getUserpwd() {
146                 return userpwd;
147         }
148
149         public void setUserpwd(String userpwd) {
150                 this.userpwd = userpwd;
151         }
152
153         public String getFeedId() {
154                 return feedId;
155         }
156
157         public void setFeedId(String feedId) {
158                 this.feedId = feedId;
159         }
160
161         public String getDeliveryURL() {
162                 return deliveryURL;
163         }
164
165         public void setDeliveryURL(String deliveryURL) {
166                 this.deliveryURL = deliveryURL;
167         }
168
169         public String getLogURL() {
170                 return logURL;
171         }
172
173         public void setLogURL(String logURL) {
174                 this.logURL = logURL;
175         }
176
177         public String getSubId() {
178                 return subId;
179         }
180
181         public void setSubId(String subId) {
182                 this.subId = subId;
183         }
184
185
186
187         public byte[] getBytes() {
188                 return toProvJSON().getBytes(StandardCharsets.UTF_8);
189         }
190         // returns the DR_Sub object in JSON that conforms to DR Prov Server expectations
191         public String toProvJSON() {
192                 
193                 // in DR 3.0, API v2.1 a new groupid field is added.  We are not using this required field so just set it to 0.
194                 // we send this regardless of DR Release because older versions of DR seem to safely ignore it
195                 // and soon those versions won't be around anyway...
196                 // Similarly, in the 1704 Release, a new subscriber attribute "follow_redirect" was introduced.
197                 // We are setting it to "true" because that is the general behavior desired in OpenDCAE.
198                 // But it is really a no-op for OpenDCAE because we've deployed DR with the SYSTEM-level parameter for FOLLOW_REDIRECTS set to true.
199                 // In the event we abandon that, then setting the sub attribute to true will be a good thing.
200                 // TODO:
201                 //   - introduce Bus Controller API support for these attributes
202                 //   - store the default values in the DB
203                 String postJSON = String.format("{\"suspend\": \"%s\", \"delivery\": {\"url\": \"%s\", \"user\": \"%s\", \"password\": \"%s\", \"use100\":  \"%s\"}, \"metadataOnly\": %s, \"groupid\": \"%s\", \"follow_redirect\": %s }", 
204                                 this.suspended,
205                                 this.getDeliveryURL(), 
206                                 this.getUsername(),
207                                 this.getUserpwd(),
208                                 this.isUse100(),
209                                 "false",
210                                 "0",
211                                 "true");        
212                 
213                 logger.info( postJSON );
214                 return postJSON;
215         }
216         
217         @Override
218         public String toString() {
219                 String rc = String.format ( "DR_Sub: {dcaeLocationName=%s username=%s userpwd=%s feedId=%s deliveryURL=%s logURL=%s subid=%s use100=%s suspended=%s owner=%s}",
220                                 dcaeLocationName,
221                                 username,
222                                 userpwd,
223                                 feedId,
224                                 deliveryURL,
225                                 logURL,
226                                 subId,
227                                 use100,
228                                 suspended,
229                                 owner
230                                 );
231                 return rc;
232         }
233 }