All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.fulcrum.security.model.dynamic.AbstractDynamicModelManager Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.apache.fulcrum.security.model.dynamic;

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 */

import org.apache.fulcrum.security.entity.Group;
import org.apache.fulcrum.security.entity.Permission;
import org.apache.fulcrum.security.entity.Role;
import org.apache.fulcrum.security.entity.User;
import org.apache.fulcrum.security.model.dynamic.entity.DynamicGroup;
import org.apache.fulcrum.security.model.dynamic.entity.DynamicPermission;
import org.apache.fulcrum.security.model.dynamic.entity.DynamicRole;
import org.apache.fulcrum.security.model.dynamic.entity.DynamicUser;
import org.apache.fulcrum.security.spi.AbstractManager;
import org.apache.fulcrum.security.util.DataBackendException;
import org.apache.fulcrum.security.util.UnknownEntityException;

/**
 * Holds shared functionality between different implementations of
 * DyanamicModelManager's.
 * 
 * @author Eric Pugh 
 * @author Ben Gidley
 * @version $Id: AbstractDynamicModelManager.java,v 1.2 2004/07/07 18:18:09
 *          epugh Exp $
 */
public abstract class AbstractDynamicModelManager extends AbstractManager implements DynamicModelManager
{
    /**
     * Revokes all roles from a permission
     * 
     * This method is used when deleting a permission.
     * 
     * @param permission
     *            the permission.
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     * @throws UnknownEntityException
     *             if the account is not present.
     */
    public synchronized void revokeAll(Permission permission) throws DataBackendException, UnknownEntityException
    {
        boolean permissionExists = false;
        permissionExists = getPermissionManager().checkExists(permission);
        if (permissionExists)
        {
            Object roles[] = ((DynamicPermission) permission).getRoles().toArray();
            for (Object role2 : roles)
            {
                revoke((Role) role2, permission);
            }

            return;
        }
        else
        {
            throw new UnknownEntityException("Unknown permission '" + permission.getName() + "'");
        }
    }

    /**
     * Revokes all users and roles from a group
     * 
     * This method is used when deleting a group.
     * 
     * @param group
     *            the Group.
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     * @throws UnknownEntityException
     *             if the account is not present.
     */
    public synchronized void revokeAll(Group group) throws DataBackendException, UnknownEntityException
    {
        boolean groupExists = false;
        groupExists = getGroupManager().checkExists(group);
        if (groupExists)
        {
            Object users[] = ((DynamicGroup) group).getUsers().toArray();
            for (Object user : users)
            {
                revoke((User) user, group);
            }

            Object roles[] = ((DynamicGroup) group).getRoles().toArray();
            for (Object role2 : roles)
            {
                revoke(group, (Role) role2);
            }

            return;
        }
        else
        {
            throw new UnknownEntityException("Unknown group '" + group.getName() + "'");
        }
    }

    /**
     * Revokes all groups from a user
     * 
     * This method is used when deleting an account.
     * 
     * @param user
     *            the User.
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     * @throws UnknownEntityException
     *             if the account is not present.
     */
    public synchronized void revokeAll(User user) throws DataBackendException, UnknownEntityException
    {
        boolean userExists = false;
        userExists = getUserManager().checkExists(user);
        if (userExists)
        {
            Object groups[] = ((DynamicUser) user).getGroups().toArray();
            for (Object group : groups)
            {
                revoke(user, (Group) group);
            }

            return;
        }
        else
        {
            throw new UnknownEntityException("Unknown user '" + user.getName() + "'");
        }
    }

    /**
     * Revokes all permissions and groups from a Role.
     * 
     * This method is used when deleting a Role.
     * 
     * @param role
     *            the Role
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     * @throws UnknownEntityException
     *             if the Role is not present.
     */
    public synchronized void revokeAll(Role role) throws DataBackendException, UnknownEntityException
    {
        boolean roleExists = false;
        roleExists = getRoleManager().checkExists(role);
        if (roleExists)
        {
            Object groups[] = ((DynamicRole) role).getGroups().toArray();
            for (Object group : groups)
            {
                revoke((Group) group, role);
            }

            Object permissions[] = ((DynamicRole) role).getPermissions().toArray();
            for (Object permission : permissions)
            {
                revoke(role, (Permission) permission);
            }
        }
        else
        {
            throw new UnknownEntityException("Unknown role '" + role.getName() + "'");
        }

    }

    /**
     * It is expected the real implementation will overide this and save either
     * side of the function. It is not abstract as a in memory implementation
     * would not need to do anything.
     */
    public void addDelegate(User delegator, User delegatee) throws DataBackendException, UnknownEntityException
    {
        DynamicUser dynamicDelegator = (DynamicUser) delegator;
        DynamicUser dynamicDelegatee = (DynamicUser) delegatee;

        // check it hasn't already been done
        // It is NOT an error to call this twice
        if (!(dynamicDelegator.getDelegatees().contains(delegatee) || dynamicDelegatee.getDelegators().contains(delegator)))
        {
            dynamicDelegator.getDelegatees().add(dynamicDelegatee);
            dynamicDelegatee.getDelegators().add(dynamicDelegator);
        }
    }

    /**
     * Implementors should overide this to save and call super if they want the
     * base class to do the work
     */
    public void removeDelegate(User delegator, User delegatee) throws DataBackendException, UnknownEntityException
    {
        DynamicUser dynamicDelegator = (DynamicUser) delegator;
        DynamicUser dynamicDelegatee = (DynamicUser) delegatee;

        if (dynamicDelegator.getDelegatees().contains(dynamicDelegatee))
        {
            dynamicDelegator.getDelegatees().remove(dynamicDelegatee);
            dynamicDelegatee.getDelegators().remove(dynamicDelegator);
        }
        else
        {
            throw new UnknownEntityException("Tried to remove a delegate that does not exist");
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy