/** * Copyright (c) 2009 - 2012 Red Hat, Inc. * * This software is licensed to you under the GNU General Public License, * version 2 (GPLv2). There is NO WARRANTY for this software, express or * implied, including the implied warranties of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 * along with this software; if not, see * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * * Red Hat trademarks are not licensed under GPLv2. No permission is * granted to use or replicate Red Hat trademarks that are incorporated * in this software or its documentation. */ package org.candlepin.auth.permissions; import org.candlepin.auth.Access; import org.candlepin.auth.SubResource; import org.candlepin.model.Consumer; import org.candlepin.model.Environment; import org.candlepin.model.Owned; import org.candlepin.model.Owner; import org.candlepin.model.OwnerContent; import org.candlepin.model.OwnerProduct; import org.candlepin.model.Pool; import org.candlepin.model.activationkeys.ActivationKey; import org.hibernate.criterion.Criterion; import org.hibernate.criterion.Restrictions; import java.io.Serializable; /** * A permission represents an owner to be accessed in some fashion, and a verb which * the permission is granting. */ public class OwnerPermission implements Permission, Serializable { private static final long serialVersionUID = -8906113952952371238L; private final Owner owner; private final Access access; public OwnerPermission(Owner owner, Access access) { this.owner = owner; this.access = access; } @Override public boolean canAccess(Object target, SubResource subResource, Access requiredAccess) { if (target instanceof Owned) { // First make sure the owner matches: if (owner.getKey().equals(((Owned) target).getOwner().getKey()) && access.provides(requiredAccess)) { return true; } } // If asked to verify access to an object that does not implement Owned, // as far as this permission goes, we probably have to deny access. return false; } @Override public Criterion getCriteriaRestrictions(Class entityClass) { if (Owner.class.equals(entityClass)) { return Restrictions.eq("key", owner.getKey()); } else if (Consumer.class.equals(entityClass)) { return Restrictions.eq("owner", owner); } else if (Pool.class.equals(entityClass)) { return Restrictions.eq("owner", owner); } else if (ActivationKey.class.equals(entityClass)) { return Restrictions.eq("owner", owner); } else if (Environment.class.equals(entityClass)) { return Restrictions.eq("owner", owner); } else if (OwnerProduct.class.equals(entityClass)) { return Restrictions.eq("owner", owner); } else if (OwnerContent.class.equals(entityClass)) { return Restrictions.eq("owner", owner); } return null; } @Override public Owner getOwner() { return owner; } public Access getAccess() { return access; } }