View Javadoc

1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.mobility.push.service;
17  
18  import javax.ws.rs.GET;
19  import javax.ws.rs.Path;
20  import org.apache.log4j.Logger;
21  import javax.ws.rs.QueryParam;
22  import net.sf.json.JSONSerializer;
23  import org.kuali.mobility.push.dao.PushDao;
24  import org.kuali.mobility.push.entity.Device;
25  import org.kuali.mobility.push.entity.Push;
26  import org.kuali.mobility.push.entity.PushDeviceTuple;
27  import org.kuali.mobility.push.service.send.SendServiceDelegator;
28  import org.springframework.beans.factory.annotation.Autowired;
29  import org.springframework.beans.factory.annotation.Qualifier;
30  import org.springframework.transaction.annotation.Transactional;
31  
32  import java.util.Iterator;
33  import java.util.List;
34  
35  /**
36   * Implementation of the <code>PushService</code>
37   * 
38   * @since 2.0.0
39   * @author Kuali Mobility Team (mobility.dev@kuali.org)
40   */
41  //@Service
42  public class PushServiceImpl implements PushService {
43  
44  	/** A reference to a logger for this service */
45  	private static final Logger LOG = Logger.getLogger(PushServiceImpl.class);
46  
47  	/** A reference to the <code>SendServiceDelegator</code> object used by this ServiceImpl */
48  	@Autowired
49  	@Qualifier("sendServiceDelegator")
50  	private SendServiceDelegator sendService;
51  
52  	/** A reference to the <code>DeviceService</code> object used by this ServiceImpl */
53  	@Autowired
54  	private DeviceService deviceService;
55  
56  	/** A reference to the <code>PushDeviceTupleService</code> object used by this ServiceImpl */
57  	@Autowired
58  	private PushDeviceTupleService pdtService;
59  
60  	/** A reference to the <code>PushDao</code> */
61  	@Autowired
62  	private PushDao pushDao;
63  
64  	/*
65  	 * (non-Javadoc)
66  	 * @see org.kuali.mobility.push.service.PushService#savePush(org.kuali.mobility.push.entity.Push)
67  	 */
68  	@Override
69  	@Transactional
70  	public void savePush(Push push){
71  		pushDao.savePush(push);
72  	}
73  
74  	
75  	/*
76  	 * (non-Javadoc)
77  	 * @see org.kuali.mobility.push.service.PushService#removePush(org.kuali.mobility.push.entity.Push)
78  	 */
79  	@Override
80  	@Transactional
81  	public boolean removePush(Push push){
82  		return pushDao.removePush(push);
83  	}
84  		
85  	
86  	/*
87  	 * (non-Javadoc)
88  	 * @see org.kuali.mobility.push.service.PushService#savePush(org.kuali.mobility.push.entity.Push, java.util.List)
89  	 */
90  	@Override
91  	@Transactional
92  	public void savePush(Push push, List<Device> devices){
93  		pushDao.savePush(push, devices);
94  	}
95  
96  	/*
97  	 * (non-Javadoc)
98  	 * @see org.kuali.mobility.push.service.PushService#findPushById(java.lang.Long)
99  	 */
100 	@Transactional
101 	public Push findPushById(Long id){
102 		return pushDao.findPushById(id);
103 	}
104 
105 	/*
106 	 * (non-Javadoc)
107 	 * @see org.kuali.mobility.push.service.PushService#findDevicesForPush(org.kuali.mobility.push.entity.Push)
108 	 */
109 	@Transactional
110 	public List<Device> findDevicesForPush(Push push){
111 		return pushDao.findDevicesForPush(push);
112 	}
113 
114 	/*
115 	 * (non-Javadoc)
116 	 * @see org.kuali.mobility.push.service.PushService#findUnsentPushTuples()
117 	 */
118 	@Transactional
119 	public List<PushDeviceTuple> findUnsentPushTuples(){
120 		return pushDao.findUnsentPushTuples();
121 	}
122 
123 	/*
124 	 * (non-Javadoc)
125 	 * @see org.kuali.mobility.push.service.PushService#findAllPush()
126 	 */
127 	@Transactional
128 	public List<Push> findAllPush() {
129 		return pushDao.findAllPush();
130 	}	
131 
132 	/*
133 	 * (non-Javadoc)
134 	 * @see org.kuali.mobility.push.service.PushService#countPushes()
135 	 */
136 	@Transactional
137 	public int countPushes() {
138 		return pushDao.countPushes();
139 	}	
140 
141 	/*
142 	 * (non-Javadoc)
143 	 * @see org.kuali.mobility.push.service.PushService#sendPush(org.kuali.mobility.push.entity.Push, org.kuali.mobility.push.entity.Device)
144 	 */
145 	public int sendPush(Push push, Device device){
146 		this.getSendService().sendPush(push, device);
147 		return -1;
148 	}
149 
150 
151 	/*
152 	 * (non-Javadoc)
153 	 * @see org.kuali.mobility.push.service.PushService#sendPush(org.kuali.mobility.push.entity.Push, java.util.List)
154 	 */
155 	public int sendPush(Push push, List<Device> devices){
156 		this.getSendService().sendPush(push, devices);
157 		return -1;
158 	}
159 
160 	/*
161 	 * (non-Javadoc)
162 	 * @see org.kuali.mobility.push.service.PushService#sendPush(java.util.List)
163 	 */
164 	@Transactional
165 	public int sendPush(List<PushDeviceTuple> tuples){
166 		Iterator<PushDeviceTuple> i = tuples.iterator();
167 		Push p = null;
168 		Device d = null;
169 		while(i.hasNext()){
170 			PushDeviceTuple pdt = (PushDeviceTuple)i.next();
171 			LOG.info("Push id :   " + pdt.getPushId() + " Device id: " + pdt.getDeviceId()); 
172 			p = this.findPushById(pdt.getPushId());
173 			LOG.info("Push Title: " + p.getTitle());
174 			d = getDeviceService().findDeviceById(pdt.getDeviceId());
175 			LOG.info("Device Name:" + d.getDeviceName());
176 			getPdtService().markTupleAsSent(pdt);
177 		}
178 		return 0;
179 	}
180 
181     @Override
182     @GET
183     @Path("/getUserDetails")
184     public String getUserDetails(@QueryParam("pushId") final String id) {
185         Push push = new Push();
186         long pushId = 0;
187         try {
188             pushId = Long.parseLong(id);
189         } catch (NumberFormatException nfe) {
190             LOG.error( "Number Format Exception: "+ nfe.getMessage() );
191         }
192         push = findPushById(pushId);
193         String value = "pushJSON('" + JSONSerializer.toJSON(push).toString() + "');";
194         return value;
195     }
196 
197 
198 	/**
199 	 * Sets the reference to the <code>PushDao</code>
200 	 * @param dao Reference to the <code>PushDao</code>
201 	 */
202 	public void setPushDao(PushDao dao) {
203 		this.pushDao = dao;
204 	}
205 
206 	/**
207 	 * Gets the reference to the <code>PushDao</code>
208 	 * @return
209 	 */
210 	public PushDao getPushDao() {
211 		return pushDao;
212 	}
213 
214 	/**
215 	 * A reference to the <code>SendServiceDelegator</code> responsible for delegating
216 	 * push messages to appropriate implementations for different devices.
217 	 */
218 	public SendServiceDelegator getSendService() {
219 		return sendService;
220 	}
221 
222 	/**
223 	 * Set the reference to the <code>SendServiceDelegator</code> for this ServiceImpl.
224 	 * @param sendService
225 	 */
226 	public void setSendService(SendServiceDelegator sendService) {
227 		this.sendService = sendService;
228 	}
229 
230 	/** Get reference to the <code>DeviceService</code> */
231 	public DeviceService getDeviceService() {
232 		return deviceService;
233 	}
234 
235 	/**
236 	 * Set the reference to the <code>DeviceService</code> for this ServiceImpl.
237 	 * @param deviceService
238 	 */
239 	public void setDeviceService(DeviceService deviceService) {
240 		this.deviceService = deviceService;
241 	}
242 
243 	/** A reference to the <code>PushDeviceTupleService</code>*/
244 	public PushDeviceTupleService getPdtService() {
245 		return pdtService;
246 	}
247 
248 	/**
249 	 * Set the reference to the <code>PushDeviceTupleService</code> for this ServiceImpl.
250 	 * @param pdtService
251 	 */
252 	public void setPdtService(PushDeviceTupleService pdtService) {
253 		this.pdtService = pdtService;
254 	}
255 }