View Javadoc

1   /**
2    * Copyright 2011-2013 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.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   * Controller to write out a PushConfig.js file containing the configuration for push notifications.
31   * 
32   * @author Kuali Mobility Team {mobility.dev@kuali.org}
33   * @since 2.2.0
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  	 * Request to get the PushConfig.js file
47  	 * @param platform
48  	 * @param model
49  	 * @return
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  		// TODO implement caching headers to cache the file
63  		return "push/js/PushConfig";
64  	}
65  	
66  	/**
67  	 * Update the model for the Android PushConfig.
68  	 * @param model
69  	 */
70  	private void getAndroidPushConfig(Model model) {
71  		model.addAttribute("applicationId", getKmeProperties().getProperty("push.google.gcm.senderId", ""));
72  	}
73  
74  	/**
75  	 * Update the model for the Blackberry PushConfig.
76  	 * @param model
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  	 * A reference to the KME Properties
86  	 */
87  	public Properties getKmeProperties() {
88  		return kmeProperties;
89  	}
90  
91  	public void setKmeProperties(Properties kmeProperties) {
92  		this.kmeProperties = kmeProperties;
93  	}
94  
95  	/**
96  	 * A reference to the <code>BlackberryPushConfig</code>
97  	 */
98  	public BlackberryPushConfig getBbPushConfig() {
99  		return bbPushConfig;
100 	}
101 
102 	public void setBbPushConfig(BlackberryPushConfig bbPushConfig) {
103 		this.bbPushConfig = bbPushConfig;
104 	}
105 }