Adding PdpGroup query & statechange providers
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / PdpGroupStateChangeControllerV1.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pap.main.rest;
22
23 import io.swagger.annotations.ApiOperation;
24 import io.swagger.annotations.ApiParam;
25 import io.swagger.annotations.ApiResponse;
26 import io.swagger.annotations.ApiResponses;
27 import io.swagger.annotations.Authorization;
28 import io.swagger.annotations.Extension;
29 import io.swagger.annotations.ExtensionProperty;
30 import io.swagger.annotations.ResponseHeader;
31
32 import java.util.UUID;
33
34 import javax.ws.rs.HeaderParam;
35 import javax.ws.rs.PUT;
36 import javax.ws.rs.Path;
37 import javax.ws.rs.PathParam;
38 import javax.ws.rs.QueryParam;
39 import javax.ws.rs.core.Response;
40 import javax.ws.rs.core.Response.Status;
41
42 import org.apache.commons.lang3.tuple.Pair;
43 import org.onap.policy.models.base.PfModelException;
44 import org.onap.policy.models.pap.concepts.PdpGroupStateChangeResponse;
45 import org.onap.policy.models.pdp.enums.PdpState;
46
47 /**
48  * Class to provide REST end points for PAP component to change state of a PDP group.
49  *
50  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
51  */
52 public class PdpGroupStateChangeControllerV1 extends PapRestControllerV1 {
53
54     private final PdpGroupStateChangeProvider provider = new PdpGroupStateChangeProvider();
55
56     /**
57      * Changes state of a PDP group.
58      *
59      * @param requestId request ID used in ONAP logging
60      * @param groupName name of the PDP group to be deleted
61      * @param version version of the PDP group
62      * @param state state of the PDP group
63      * @return a response
64      */
65     // @formatter:off
66     @PUT
67     @Path("pdps/groups/{name}/versions/{version}")
68     @ApiOperation(value = "Change state of a PDP Group",
69         notes = "Changes state of PDP Group, returning optional error details",
70         response = PdpGroupStateChangeResponse.class,
71         tags = {"Policy Administration (PAP) API"},
72         authorizations = @Authorization(value = AUTHORIZATION_TYPE),
73         responseHeaders = {
74             @ResponseHeader(name = VERSION_MINOR_NAME, description = VERSION_MINOR_DESCRIPTION,
75                             response = String.class),
76             @ResponseHeader(name = VERSION_PATCH_NAME, description = VERSION_PATCH_DESCRIPTION,
77                             response = String.class),
78             @ResponseHeader(name = VERSION_LATEST_NAME, description = VERSION_LATEST_DESCRIPTION,
79                             response = String.class),
80             @ResponseHeader(name = REQUEST_ID_NAME, description = REQUEST_ID_HDR_DESCRIPTION,
81                             response = UUID.class)},
82         extensions = {@Extension(name = EXTENSION_NAME,
83             properties = {@ExtensionProperty(name = API_VERSION_NAME, value = API_VERSION),
84                 @ExtensionProperty(name = LAST_MOD_NAME, value = LAST_MOD_RELEASE)})})
85     @ApiResponses(value = {@ApiResponse(code = AUTHENTICATION_ERROR_CODE, message = AUTHENTICATION_ERROR_MESSAGE),
86                     @ApiResponse(code = AUTHORIZATION_ERROR_CODE, message = AUTHORIZATION_ERROR_MESSAGE),
87                     @ApiResponse(code = SERVER_ERROR_CODE, message = SERVER_ERROR_MESSAGE)})
88     // @formatter:on
89
90     public Response changeGroupState(
91             @HeaderParam(REQUEST_ID_NAME) @ApiParam(REQUEST_ID_PARAM_DESCRIPTION) final UUID requestId,
92             @ApiParam(value = "PDP Group Name", required = true) @PathParam("name") final String groupName,
93             @ApiParam(value = "PDP Group Version", required = true) @PathParam("version") final String version,
94             @ApiParam(value = "PDP Group State", required = true) @QueryParam("state") final PdpState state) {
95
96         try {
97             final Pair<Status, PdpGroupStateChangeResponse> pair = provider.changeGroupState(groupName, version, state);
98             return addLoggingHeaders(addVersionControlHeaders(Response.status(pair.getLeft())), requestId)
99                     .entity(pair.getRight()).build();
100         } catch (final PfModelException exp) {
101             return addLoggingHeaders(
102                     addVersionControlHeaders(Response.status(exp.getErrorResponse().getResponseCode())), requestId)
103                             .entity(exp.getErrorResponse()).build();
104         }
105     }
106 }