1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.kuali.mobility.push.controllers;
16
17 import org.kuali.mobility.push.entity.Device;
18 import org.kuali.mobility.push.service.send.config.BlackberryPushConfig;
19 import org.springframework.beans.factory.annotation.Autowired;
20 import org.springframework.beans.factory.annotation.Qualifier;
21 import org.springframework.stereotype.Controller;
22 import org.springframework.ui.Model;
23 import org.springframework.web.bind.annotation.CookieValue;
24 import org.springframework.web.bind.annotation.RequestMapping;
25
26 import javax.annotation.Resource;
27 import java.util.Properties;
28
29
30
31
32
33
34
35 @Controller
36 public class PushConfigController {
37
38 @Resource(name="kmeProperties")
39 private Properties kmeProperties;
40
41 @Autowired
42 @Qualifier("pushSDKProperties")
43 private BlackberryPushConfig bbPushConfig;
44
45
46
47
48
49
50
51 @RequestMapping(value="js/PushConfig.js", produces={"text/javascript"})
52 public String getPushConfig(
53 @CookieValue("platform") String platform,
54 Model model){
55
56 if (Device.TYPE_BLACKBERRY.equalsIgnoreCase(platform)){
57 this.getBlackberryPushConfig(model);
58 }
59 else if (Device.TYPE_ANDROID.equalsIgnoreCase(platform)){
60 this.getAndroidPushConfig(model);
61 }
62
63 return "push/js/PushConfig";
64 }
65
66
67
68
69
70 private void getAndroidPushConfig(Model model) {
71 model.addAttribute("applicationId", getKmeProperties().getProperty("push.google.gcm.senderId", ""));
72 }
73
74
75
76
77
78 private void getBlackberryPushConfig(Model model){
79 model.addAttribute("applicationId", getBbPushConfig().getApplicationId());
80 model.addAttribute("registrationUrl", getBbPushConfig().getPushUrl());
81 model.addAttribute("port", getKmeProperties().get("push.blackberry.native.port"));
82 }
83
84
85
86
87 public Properties getKmeProperties() {
88 return kmeProperties;
89 }
90
91 public void setKmeProperties(Properties kmeProperties) {
92 this.kmeProperties = kmeProperties;
93 }
94
95
96
97
98 public BlackberryPushConfig getBbPushConfig() {
99 return bbPushConfig;
100 }
101
102 public void setBbPushConfig(BlackberryPushConfig bbPushConfig) {
103 this.bbPushConfig = bbPushConfig;
104 }
105 }