View Javadoc
1   /**
2    * Copyright 2011-2014 The Kuali Foundation Licensed under the Educational
3    * Community License, Version 2.0 (the "License"); you may not use this file
4    * except in compliance with the License. You may obtain a copy of the License
5    * at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12   * License for the specific language governing permissions and limitations under
13   * the License.
14   */
15  package org.kuali.mobility.dining.controllers;
16  
17  import org.slf4j.Logger;
18  import org.slf4j.LoggerFactory;
19  import org.kuali.mobility.dining.service.DiningService;
20  import org.kuali.mobility.security.user.api.User;
21  import org.kuali.mobility.shared.Constants;
22  import org.springframework.context.ApplicationContext;
23  import org.springframework.context.ApplicationContextAware;
24  import org.springframework.stereotype.Controller;
25  import org.springframework.ui.Model;
26  import org.springframework.web.bind.annotation.PathVariable;
27  import org.springframework.web.bind.annotation.RequestMapping;
28  
29  import javax.annotation.Resource;
30  import javax.servlet.http.HttpServletRequest;
31  import java.util.Properties;
32  
33  /**
34   * @author Kuali Mobility Team (mobility.dev@kuali.org)
35   */
36  @Controller
37  @RequestMapping("/dining")
38  public class DiningController implements ApplicationContextAware{
39  
40  	public static final Logger LOG = LoggerFactory.getLogger(DiningController.class);
41  
42      private ApplicationContext applicationContext;
43  
44  	@Resource(name="diningService")
45  	private DiningService diningService;
46  
47      @Resource(name="kmeProperties")
48      private Properties kmeProperties;
49  
50      @RequestMapping
51      public String index(HttpServletRequest request, Model uiModel ) {
52          String viewName = null;
53          User user = (User) request.getSession().getAttribute(Constants.KME_USER_KEY);
54          String campus = null;
55          if (user.getViewCampus() == null) {
56              viewName = "redirect:/campus?toolName=dining";
57          } else if( "3".equalsIgnoreCase( getKmeProperties().getProperty("kme.uiVersion","classic") ) ) {
58              viewName = "ui3/dining/index";
59          } else {
60              uiModel.addAttribute("diningHalls",getDiningService().getDiningHallGroups());
61              viewName = "dining/index";
62          }
63          return viewName;
64      }
65  
66      @RequestMapping(value="/hall/{name}")
67      public String getDiningHall(
68              @PathVariable("name") String name,
69              HttpServletRequest request,
70              Model uiModel) {
71          uiModel.addAttribute("name",name);
72          return "dining/menus_all";
73      }
74  
75      @RequestMapping(value="/templates/{key}")
76      public String getAngularTemplates(
77              @PathVariable("key") String key,
78              HttpServletRequest request,
79              Model uiModel ) {
80          return "ui3/dining/templates/"+key;
81      }
82  
83      @RequestMapping(value = "/js/dining.js")
84      public String getJavaScript(Model uiModel) {
85          Properties properties = (Properties) getApplicationContext().getBean("computerLabProperties");
86          if (properties != null) {
87              uiModel.addAttribute( "groupLabs", properties.getProperty("computerlabs.groupLabs", "false"));
88              uiModel.addAttribute( "useMaps", properties.getProperty("computerlabs.useMaps", "true"));
89              uiModel.addAttribute( "useDetail", properties.getProperty("computerlabs.useDetail", "true"));
90              uiModel.addAttribute( "groupSeats", properties.getProperty("computerlabs.groupSeats", "true"));
91              uiModel.addAttribute( "feedStatus", properties.getProperty("computerlabs.feedStatus", "false"));
92          }
93          return "ui3/dining/js/dining";
94      }
95  
96      public ApplicationContext getApplicationContext() {
97          return applicationContext;
98      }
99  
100     public void setApplicationContext(ApplicationContext applicationContext) {
101         this.applicationContext = applicationContext;
102     }
103 
104     public void setDiningService(DiningService diningService) {
105         this.diningService = diningService;
106     }
107 
108     public DiningService getDiningService() {
109         return diningService;
110     }
111 
112     public Properties getKmeProperties() {
113         return kmeProperties;
114     }
115 
116     public void setKmeProperties(Properties kmeProperties) {
117         this.kmeProperties = kmeProperties;
118     }
119 }