org.picketlink.idm.permission.acl.spi.PermissionHandlerPolicy Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
*
* Copyright 2013 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.picketlink.idm.permission.acl.spi;
import org.picketlink.idm.IdentityManagementException;
import org.picketlink.idm.permission.annotations.PermissionsHandledBy;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
/**
* Manages a set of PermissionHandler instances that overall define a "policy" for
* how persistent resource permissions are mapped and managed.
*
* @author Shane Bryzak
*/
public class PermissionHandlerPolicy {
private Map, PermissionHandler> classHandlers = new ConcurrentHashMap, PermissionHandler>();
private Set registeredHandlers = new HashSet();
public PermissionHandlerPolicy(Set handlers) {
if (handlers == null || handlers.isEmpty()) {
registeredHandlers.add(new EntityPermissionHandler());
registeredHandlers.add(new ClassPermissionHandler());
registeredHandlers.add(new StringPermissionHandler());
}
}
public Serializable getIdentifier(Object resource) {
if (resource instanceof String) {
return (String) resource;
}
PermissionHandler handler = getHandlerForResource(resource);
return handler != null ? handler.getIdentifier(resource) : null;
}
public Class> getResourceClass(Object resource) {
if (resource instanceof String) {
return String.class;
}
PermissionHandler handler = getHandlerForResource(resource);
if (handler == null) {
throw new IdentityManagementException(String.format(
"No permission handler registered for resource [%s]", resource.toString()));
}
return handler.unwrapResourceClass(resource);
}
private PermissionHandler getHandlerForResource(Object resource) {
PermissionHandler handler = null;
if (resource.getClass().isAnnotationPresent(PermissionsHandledBy.class)) {
Class extends PermissionHandler> handlerClass =
resource.getClass().getAnnotation(PermissionsHandledBy.class).value();
if (handlerClass != PermissionHandler.class) {
try {
handler = handlerClass.newInstance();
classHandlers.put(resource.getClass(), handler);
}
catch (Exception ex) {
throw new RuntimeException("Error instantiating IdentifierStrategy for object " + resource, ex);
}
}
}
for (PermissionHandler s : registeredHandlers) {
if (s.canHandle(resource.getClass())) {
handler = s;
Class> resourceClassKey = resource.getClass();
if (Class.class.isInstance(resource)) {
resourceClassKey = (Class>) resource;
}
classHandlers.put(resourceClassKey, handler);
break;
}
}
return handler;
}
public Set getRegisteredHandlers() {
return registeredHandlers;
}
public void registerHandler(PermissionHandler handler) {
this.registeredHandlers.add(handler);
}
}