DMAAP-83 Initial code import
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / resources / DR_PubResource.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.resources;
22
23 import io.swagger.annotations.Api;
24 import io.swagger.annotations.ApiOperation;
25 import io.swagger.annotations.ApiResponse;
26 import io.swagger.annotations.ApiResponses;
27
28 import java.util.ArrayList;
29 import java.util.Iterator;
30 import java.util.List;
31
32 import javax.ws.rs.Consumes;
33 import javax.ws.rs.DELETE;
34 import javax.ws.rs.GET;
35 import javax.ws.rs.POST;
36 import javax.ws.rs.PUT;
37 import javax.ws.rs.Path;
38 import javax.ws.rs.PathParam;
39 import javax.ws.rs.Produces;
40 import javax.ws.rs.core.GenericEntity;
41 import javax.ws.rs.core.MediaType;
42 import javax.ws.rs.core.Response;
43 import javax.ws.rs.core.Response.Status;
44
45 import org.onap.dmaap.dbcapi.logging.BaseLoggingClass;
46 import org.onap.dmaap.dbcapi.model.ApiError;
47 import org.onap.dmaap.dbcapi.model.DR_Pub;
48 import org.onap.dmaap.dbcapi.model.Feed;
49 import org.onap.dmaap.dbcapi.service.ApiService;
50 import org.onap.dmaap.dbcapi.service.DR_PubService;
51 import org.onap.dmaap.dbcapi.service.FeedService;
52
53
54 @Path("/dr_pubs")
55 @Api( value= "dr_pubs", description = "Endpoint for a Data Router client that implements a Publisher" )
56 @Consumes(MediaType.APPLICATION_JSON)
57 @Produces(MediaType.APPLICATION_JSON)
58 @Authorization
59 public class DR_PubResource extends BaseLoggingClass {
60
61         DR_PubService dr_pubService = new DR_PubService();
62         
63         @GET
64         @ApiOperation( value = "return DR_Pub details", 
65         notes = "Returns array of  `DR_Pub` objects.  Add filter for feedId.", 
66         response = DR_Pub.class)
67         @ApiResponses( value = {
68             @ApiResponse( code = 200, message = "Success", response = DR_Pub.class),
69             @ApiResponse( code = 400, message = "Error", response = ApiError.class )
70         })
71         public  Response getDr_Pubs() {
72                 ApiService resp = new ApiService();
73
74                 logger.info( "Entry: GET /dr_pubs");
75                 List<DR_Pub> pubs = dr_pubService.getAllDr_Pubs();
76
77                 GenericEntity<List<DR_Pub>> list = new GenericEntity<List<DR_Pub>>(pubs) {
78         };
79         return resp.success(list);
80         }
81         
82         @POST
83         @ApiOperation( value = "return DR_Pub details", 
84         notes = "create a DR Publisher in the specified environment.", 
85         response = DR_Pub.class)
86         @ApiResponses( value = {
87             @ApiResponse( code = 200, message = "Success", response = DR_Pub.class),
88             @ApiResponse( code = 400, message = "Error", response = ApiError.class )
89         })
90         public Response addDr_Pub( 
91                         DR_Pub pub
92                         ) {
93                 ApiService resp = new ApiService();
94
95                 logger.info( "Entry: POST /dr_pubs");
96
97                 try {
98                         resp.required( "feedId", pub.getFeedId(), "");
99                         resp.required( "dcaeLocationName", pub.getDcaeLocationName(), "");
100                 } catch ( RequiredFieldException rfe ) {
101                         logger.debug( resp.getErr().toString() );
102                         return resp.error();    
103                 }
104
105                 FeedService feeds = new FeedService();
106                 Feed fnew = feeds.getFeed( pub.getFeedId(), resp.getErr() );
107                 if ( fnew == null ) {
108                         logger.info( "Specified feed " + pub.getFeedId() + " not known to Bus Controller");     
109                         return resp.error();    
110                 }
111
112                 ArrayList<DR_Pub> pubs = fnew.getPubs();
113                 logger.info( "num existing pubs before = " + pubs.size() );
114                 
115                 logger.info( "update feed");
116                 pub.setNextPubId();
117                 if ( pub.getUsername() == null ) {
118                         pub.setRandomUserName();
119                 }
120                 if ( pub.getUserpwd() == null ) {
121                         pub.setRandomPassword();
122                 }
123                 pubs.add( pub );
124                 fnew.setPubs(pubs);
125                 fnew = feeds.updateFeed( fnew, resp.getErr() ); 
126                 
127                 if ( ! resp.getErr().is2xx()) { 
128                         return resp.error();                    
129                 }
130                 pubs = fnew.getPubs();
131                 logger.info( "num existing pubs after = " + pubs.size() );
132                 
133                 DR_Pub pnew = dr_pubService.getDr_Pub(pub.getPubId(), resp.getErr());
134                 return resp.success(Status.CREATED.getStatusCode(), pnew);
135         }
136         
137         @PUT
138         @ApiOperation( value = "return DR_Pub details", 
139         notes = "update a DR Publisher in the specified environment.  Update a `DR_Pub` object by pubId", 
140         response = DR_Pub.class)
141         @ApiResponses( value = {
142             @ApiResponse( code = 200, message = "Success", response = DR_Pub.class),
143             @ApiResponse( code = 400, message = "Error", response = ApiError.class )
144         })
145         @Path("/{pubId}")
146         public Response updateDr_Pub( 
147                         @PathParam("pubId") String name, 
148                         DR_Pub pub
149                         ) {
150                 ApiService resp = new ApiService();
151
152                 logger.info( "Entry: PUT /dr_pubs");
153                 pub.setPubId(name);
154                 DR_Pub res = dr_pubService.updateDr_Pub(pub);
155                 return resp.success(res);
156         }
157         
158         @DELETE
159         @ApiOperation( value = "return DR_Pub details", 
160         notes = "delete a DR Publisher in the specified environment. Delete a `DR_Pub` object by pubId", 
161         response = DR_Pub.class)
162         @ApiResponses( value = {
163             @ApiResponse( code = 204, message = "Success", response = DR_Pub.class),
164             @ApiResponse( code = 400, message = "Error", response = ApiError.class )
165         })
166         @Path("/{pubId}")
167         public Response deleteDr_Pub( 
168                         @PathParam("pubId") String id
169                         ){
170
171                 ApiService resp = new ApiService();
172
173                 try {
174                         resp.required( "pubId", id, "");
175                 } catch ( RequiredFieldException rfe ) {
176                         return resp.error();
177                 }
178
179                 DR_Pub pub =  dr_pubService.getDr_Pub( id, resp.getErr() );
180                 if ( ! resp.getErr().is2xx()) { 
181                         return resp.error();                                    
182                 }
183                 FeedService feeds = new FeedService();
184                 Feed fnew = feeds.getFeed( pub.getFeedId(), resp.getErr() );
185                 if ( fnew == null ) {
186                         logger.info( "Specified feed " + pub.getFeedId() + " not known to Bus Controller");     
187                         return resp.error();
188                 }
189                 ArrayList<DR_Pub> pubs = fnew.getPubs();
190                 if ( pubs.size() == 1 ) {
191                         resp.setCode(Status.BAD_REQUEST.getStatusCode());
192                         resp.setMessage( "Can't delete the last publisher of a feed");
193                         return resp.error();    
194                 }
195                 
196                 for( Iterator<DR_Pub> i = pubs.iterator(); i.hasNext(); ) {
197                         DR_Pub listItem = i.next();
198                         if ( listItem.getPubId().equals(id)) {
199                                 pubs.remove( listItem );
200                         }
201                 }
202                 fnew.setPubs(pubs);
203                 fnew = feeds.updateFeed( fnew, resp.getErr() );
204                 if ( ! resp.getErr().is2xx()) { 
205                         return resp.error();                    
206                 }
207                 
208                 dr_pubService.removeDr_Pub(id, resp.getErr() );
209                 if ( ! resp.getErr().is2xx()) { 
210                         return resp.error();            
211                 }
212                 return resp.success(Status.NO_CONTENT.getStatusCode(), null);
213         }
214
215         @GET
216         @ApiOperation( value = "return DR_Pub details", 
217         notes = "returns a DR Publisher in the specified environment. Gets a `DR_Pub` object by pubId", 
218         response = DR_Pub.class)
219         @ApiResponses( value = {
220             @ApiResponse( code = 200, message = "Success", response = DR_Pub.class),
221             @ApiResponse( code = 400, message = "Error", response = ApiError.class )
222         })
223         @Path("/{pubId}")
224         public Response get( 
225                         @PathParam("pubId") String id
226                         ) {
227                 ApiService resp = new ApiService();
228
229                 try {
230                         resp.required( "feedId", id, "");
231                 } catch ( RequiredFieldException rfe ) {
232                         return resp.error();    
233                 }
234
235                 DR_Pub pub =  dr_pubService.getDr_Pub( id, resp.getErr() );
236                 if ( ! resp.getErr().is2xx()) { 
237                         resp.getErr();                  
238                 }
239                 return resp.success(Status.OK.getStatusCode(), pub);
240         }
241 }