Merge "Refactor vfc-ztevnfmdriver views"
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / main / java / org / onap / vfc / nfvo / vnfm / svnfm / vnfmadapter / service / rest / AuthRoa.java
1 /*
2  * Copyright 2016-2017 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.rest;
18
19 import javax.servlet.http.HttpServletRequest;
20 import javax.servlet.http.HttpServletResponse;
21 import javax.ws.rs.Consumes;
22 import javax.ws.rs.DELETE;
23 import javax.ws.rs.GET;
24 import javax.ws.rs.PUT;
25 import javax.ws.rs.Path;
26 import javax.ws.rs.PathParam;
27 import javax.ws.rs.Produces;
28 import javax.ws.rs.QueryParam;
29 import javax.ws.rs.core.Context;
30 import javax.ws.rs.core.MediaType;
31 import javax.ws.rs.core.Response;
32
33 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.VnfmJsonUtil;
34 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.constant.Constant;
35 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.constant.ParamConstants;
36 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.process.AuthMgr;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39
40 import net.sf.json.JSONObject;
41
42 /**
43  * Provide interfaces for authInfo
44  * <br/>
45  * <p>
46  * auth tokens interface is provided by platform
47  * not in nfvo for vnfm
48  * differences from other interface
49   * </p>
50  *
51  * @author
52  * @version VFC 1.0 Aug 24, 2016
53  */
54 @Path("/rest/plat/smapp/v1")
55 @Consumes(MediaType.APPLICATION_JSON)
56 @Produces(MediaType.APPLICATION_JSON)
57 public class AuthRoa {
58
59     private static final Logger LOG = LoggerFactory.getLogger(AuthRoa.class);
60
61     private AuthMgr authMgr;
62
63     public void setAuthMgr(AuthMgr authMgr) {
64         this.authMgr = authMgr;
65     }
66
67     /**
68      * Provide interface for add authInfo
69      * <br/>
70      *
71      * @param context
72      * @return
73      * @since VFC 1.0
74      */
75     @PUT
76     @Path("/oauth/token")
77     public String authToken(@Context HttpServletRequest context, @Context HttpServletResponse resp) {
78         LOG.warn("function=login, msg=enter to get token.");
79         JSONObject subJsonObject = VnfmJsonUtil.getJsonFromContexts(context);
80         LOG.warn("subJsonObject: {}", subJsonObject);
81
82         if(null == subJsonObject) {
83             LOG.error("function=login, msg=params are insufficient");
84             String resultStr = "Login params insufficient";
85             resp.setStatus(Constant.HTTP_BAD_REQUEST);
86
87             return resultStr;
88         }
89
90         JSONObject authResult = authMgr.authToken(subJsonObject);
91         LOG.warn("authResult: {}", authResult);
92         if(authResult.getInt(Constant.RETCODE) == Constant.REST_SUCCESS) {
93             JSONObject data = authResult.getJSONObject("data");
94
95             resp.setStatus(Constant.HTTP_OK);
96             return data.toString();
97         } else if(authResult.getInt(Constant.RETCODE) == Constant.HTTP_INNERERROR) {
98             Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(authResult.getString("data")).build();
99
100             return String.format(ParamConstants.GET_TOKEN_FAIL_RESP, authResult.getString("data"));
101         } else {
102             Response.status(Response.Status.UNAUTHORIZED).entity(authResult.getString("data")).build();
103
104             return String.format(ParamConstants.GET_TOKEN_FAIL_RESP, authResult.getString("data"));
105         }
106     }
107
108     /**
109      * Provide interface for delete authInfo
110      * <br/>
111      *
112      * @param context
113      * @param userName
114      * @param roarand
115      * @return
116      * @since VFC 1.0
117      */
118     @DELETE
119     @Path("/auth/tokens/{userName}/{roarand}")
120     public String delAuthToken(@PathParam(Constant.USERNAME) String userName, @PathParam("roarand") String roarand,
121             @Context HttpServletResponse resp) {
122         LOG.warn("function=logout, msg=enter to logout");
123         JSONObject resultJson = new JSONObject();
124
125         resultJson.put("Information", "Operation success");
126         resp.setStatus(Constant.HTTP_NOCONTENT);
127         LOG.warn("function=logout, msg=end to logout");
128         return resultJson.toString();
129     }
130
131     /**
132      * Provide interface for handshake authInfo
133      * <br/>
134      *
135      * @param context
136      * @param roattr
137      * @return
138      * @since VFC 1.0
139      */
140     @GET
141     @Path("/nfvo/shakehand")
142     public String shakehand(@QueryParam("roattr") String roattr, @Context HttpServletResponse resp) {
143         JSONObject resultJson = new JSONObject();
144         resultJson.put("status", "running");
145         resultJson.put("description", "Operation success");
146         resp.setStatus(Constant.HTTP_OK);
147
148         return resultJson.toString();
149     }
150 }