Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
NotificationAuthorizationServiceImpl |
|
| 2.3333333333333335;2.333 |
1 | /* | |
2 | * Copyright 2006-2011 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.opensource.org/licenses/ecl2.php | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | ||
17 | package org.kuali.rice.ken.service.impl; | |
18 | ||
19 | import org.kuali.rice.core.framework.persistence.dao.GenericDao; | |
20 | import org.kuali.rice.ken.bo.NotificationChannel; | |
21 | import org.kuali.rice.ken.bo.NotificationProducer; | |
22 | import org.kuali.rice.ken.service.NotificationAuthorizationService; | |
23 | import org.kuali.rice.ken.util.NotificationConstants; | |
24 | import org.kuali.rice.kim.bo.Person; | |
25 | import org.kuali.rice.kim.service.KIMServiceLocator; | |
26 | import org.kuali.rice.kim.util.KimConstants; | |
27 | ||
28 | import java.util.List; | |
29 | ||
30 | ||
31 | /** | |
32 | * NotificationAuthorizationService implementation - this is the default out-of-the-box implementation of the service. | |
33 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
34 | */ | |
35 | public class NotificationAuthorizationServiceImpl implements NotificationAuthorizationService { | |
36 | 0 | private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(NotificationAuthorizationServiceImpl.class); |
37 | ||
38 | private GenericDao businessObjectDao; | |
39 | ||
40 | /** | |
41 | * Constructs a NotificationAuthorizationServiceImpl class instance. | |
42 | * @param businessObjectDao | |
43 | */ | |
44 | 0 | public NotificationAuthorizationServiceImpl(GenericDao businessObjectDao) { |
45 | 0 | this.businessObjectDao = businessObjectDao; |
46 | 0 | } |
47 | ||
48 | /** | |
49 | * @see org.kuali.rice.ken.service.NotificationAuthorizationService#isProducerAuthorizedToSendNotificationForChannel(org.kuali.rice.ken.bo.NotificationProducer, org.kuali.rice.ken.bo.NotificationChannel) | |
50 | */ | |
51 | public boolean isProducerAuthorizedToSendNotificationForChannel(NotificationProducer producer, NotificationChannel channel) { | |
52 | 0 | List channels = producer.getChannels(); |
53 | ||
54 | 0 | if(channels.contains(channel)) { |
55 | 0 | return true; |
56 | } else { | |
57 | 0 | return false; |
58 | } | |
59 | } | |
60 | ||
61 | /** | |
62 | * Implements by calling the is user member of service in KEW's workgroup service, looking for a specific membership | |
63 | * in the "NotificationAdmin" workgroup. | |
64 | * @see org.kuali.rice.ken.service.NotificationAuthorizationService#isUserAdministrator(java.lang.String) | |
65 | */ | |
66 | public boolean isUserAdministrator(String userId) { | |
67 | 0 | String groupNameId = NotificationConstants.KEW_CONSTANTS.NOTIFICATION_ADMIN_GROUP_NAME; |
68 | 0 | Person user = KIMServiceLocator.getPersonService().getPerson(userId); |
69 | 0 | if (user == null) { |
70 | 0 | return false; |
71 | } | |
72 | 0 | return KIMServiceLocator.getIdentityManagementService().isMemberOfGroup(user.getPrincipalId(), KimConstants.KIM_GROUP_WORKFLOW_NAMESPACE_CODE, groupNameId); |
73 | } | |
74 | } |