2 * Copyright 2005-2010 the original author or authors.
4 * Licensed under the Apache 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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.wamblee.security.authorization;
18 import java.util.ArrayList;
19 import java.util.List;
21 import javax.persistence.CascadeType;
22 import javax.persistence.DiscriminatorValue;
23 import javax.persistence.Entity;
24 import javax.persistence.ManyToMany;
25 import javax.persistence.OneToMany;
26 import javax.persistence.OrderColumn;
27 import javax.persistence.Transient;
29 import org.wamblee.security.authentication.User;
30 import org.wamblee.security.authentication.UserAccessor;
31 import org.wamblee.security.authentication.UserAdministration;
34 * Default implementation of an authorization service. To determine whether
35 * access to a resource is allowed, the service consults a number of
36 * authorization rules in a fixed order. The first rule that gives a result
37 * GRANTED or DENIED determines the result of the evaluation. Rules that return
38 * any other result are ignoed. If none of the rules match, than access is
41 * @author Erik Brakkee
44 @DiscriminatorValue("DEFAULT")
45 public class DefaultAuthorizationService extends AbstractAuthorizationService {
48 * List of ordered authorization rules.
50 @OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, targetEntity = AbstractAuthorizationRule.class)
51 @OrderColumn(name = "RULE_INDEX")
52 private List<AuthorizationRule> rules;
55 * User accessor used to obtain the current user.
58 private UserAccessor userAccessor;
61 private UserAdministration userAdmin;
64 * Constructs the service.
69 * User administration.
71 * Name of this instance of the service.
73 public DefaultAuthorizationService(UserAccessor aAccessor,
74 UserAdministration aUserAdmin, String aName) {
76 rules = new ArrayList<AuthorizationRule>();
77 userAccessor = aAccessor;
78 userAdmin = aUserAdmin;
82 * Constructs the authorization service.
84 public DefaultAuthorizationService() {
85 rules = new ArrayList<AuthorizationRule>();
92 public void setUserAccessor(UserAccessor aUserAccessor) {
93 userAccessor = aUserAccessor;
97 public void setUserAdministration(UserAdministration aUserAdmin) {
98 userAdmin = aUserAdmin;
99 System.out.println("Setting userAdmin");
100 for (AuthorizationRule rule: rules) {
101 System.out.println("Setting useradmin on " + rule);
102 rule.setUserAdministration(userAdmin);
110 * org.wamblee.security.authorization.AuthorizationService#isAllowed(java
111 * .lang.Object, org.wamblee.security.authorization.Operation)
113 public boolean isAllowed(Object aResource, Operation aOperation) {
114 String user = userAccessor.getCurrentUser();
116 for (AuthorizationRule rule : rules) {
117 switch (rule.isAllowed(aResource, aOperation, user)) {
132 * @see org.wamblee.security.authorization.AuthorizationService#check(T,
133 * org.wamblee.security.authorization.Operation)
135 public <T> T check(T aResource, Operation aOperation) {
136 if (!isAllowed(aResource, aOperation)) {
137 throw new AuthorizationException(aResource, aOperation);
146 * @see org.wamblee.security.authorization.AuthorizationService#getRules()
148 public AuthorizationRule[] getRules() {
149 return rules.toArray(new AbstractAuthorizationRule[0]);
156 * org.wamblee.security.authorization.AuthorizationService#appendRule(org
157 * .wamblee.security.authorization.AuthorizationRule)
159 public void appendRule(AuthorizationRule aRule) {
160 aRule.setUserAdministration(userAdmin);
168 * org.wamblee.security.authorization.AuthorizationService#insertRuleAfter
169 * (int, org.wamblee.security.authorization.AuthorizationRule)
171 public void insertRuleAfter(int aIndex, AuthorizationRule aRule) {
172 aRule.setUserAdministration(userAdmin);
173 rules.add(aIndex, aRule);
180 * org.wamblee.security.authorization.AuthorizationService#removeRule(int)
182 public void removeRule(int aIndex) {
183 rules.remove(aIndex);
191 protected List<AuthorizationRule> getMappedRules() {
201 protected void setMappedRules(List<AuthorizationRule> aRules) {
203 for (AuthorizationRule rule: rules) {
204 rule.setUserAdministration(userAdmin);