[VID-3] Setting docker image tag
[vid.git] / vid / src / main / java / org / openecomp / vid / controller / UserProfileController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
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.openecomp.vid.controller;
22
23 import java.io.IOException;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27
28 import javax.servlet.http.HttpServletRequest;
29
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.stereotype.Controller;
32 import org.springframework.web.bind.annotation.RequestMapping;
33 import org.springframework.web.bind.annotation.RequestMethod;
34 import org.springframework.web.servlet.ModelAndView;
35
36 import org.openecomp.portalsdk.core.controller.RestrictedBaseController;
37 import org.openecomp.portalsdk.core.domain.Profile;
38 import org.openecomp.portalsdk.core.service.ProfileService;
39 import com.fasterxml.jackson.core.JsonGenerationException;
40 import com.fasterxml.jackson.databind.JsonMappingException;
41 import com.fasterxml.jackson.databind.ObjectMapper;
42
43 /**
44  * Controller for user profile view. The view is restricted to authenticated
45  * users. The view name resolves to page user_profile.jsp which uses Angular.
46  */
47
48 @Controller
49 @RequestMapping("/")
50 public class UserProfileController extends RestrictedBaseController {
51
52    /** The service. */
53    @Autowired
54    ProfileService service;
55
56    /**
57     * Profile search.
58     *
59     * @param request the request
60     * @return the model and view
61     */
62    @RequestMapping(value = {"/user_profile" }, method = RequestMethod.GET)
63    public ModelAndView ProfileSearch(HttpServletRequest request) {
64            Map<String, Object> model = new HashMap<String, Object>();
65            ObjectMapper mapper = new ObjectMapper();
66            List<Profile> profileList = service.findAll();
67        try {
68                 model.put("customerInfo", mapper.writeValueAsString(profileList));
69                 } catch (JsonGenerationException e) {
70                         e.printStackTrace();
71                 } catch (JsonMappingException e) {
72                         e.printStackTrace();
73                 } catch (IOException e) {
74                         e.printStackTrace();
75                 }
76      
77        return new ModelAndView("user_profile","model", model);
78    }
79
80 }