1
2
3
4
5
6
7
8
9
10
11
12
13
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
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 }