Warning

This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.managers.secured

"""
Accessible models can be read and copied but not modified or deleted.

Owned models can be modified and deleted.
"""

from galaxy import exceptions


[docs]class AccessibleManagerMixin(object): """ A security interface to check if a User can read/view an item's. This can also be thought of as 'read but not modify' privileges. """ # don't want to override by_id since consumers will also want to fetch w/o any security checks
[docs] def is_accessible(self, item, user, **kwargs): """ Return True if the item accessible to user. """ # override in subclasses raise exceptions.NotImplemented("Abstract interface Method")
[docs] def get_accessible(self, id, user, **kwargs): """ Return the item with the given id if it's accessible to user, otherwise raise an error. :raises exceptions.ItemAccessibilityException: """ item = self.by_id(id) return self.error_unless_accessible(item, user, **kwargs)
[docs] def error_unless_accessible(self, item, user, **kwargs): """ Raise an error if the item is NOT accessible to user, otherwise return the item. :raises exceptions.ItemAccessibilityException: """ if self.is_accessible(item, user, **kwargs): return item raise exceptions.ItemAccessibilityException("%s is not accessible by user" % (self.model_class.__name__))
# TODO:?? are these even useful?
[docs] def list_accessible(self, user, **kwargs): """ Return a list of items accessible to the user, raising an error if ANY are inaccessible. :raises exceptions.ItemAccessibilityException: """ raise exceptions.NotImplemented("Abstract interface Method")
# NOTE: this will be a large, inefficient list if filters are not passed in kwargs # items = ModelManager.list( self, trans, **kwargs ) # return [ self.error_unless_accessible( trans, item, user ) for item in items ]
[docs] def filter_accessible(self, user, **kwargs): """ Return a list of items accessible to the user. """ raise exceptions.NotImplemented("Abstract interface Method")
# NOTE: this will be a large, inefficient list if filters are not passed in kwargs # items = ModelManager.list( self, trans, **kwargs ) # return filter( lambda item: self.is_accessible( trans, item, user ), items )
[docs]class OwnableManagerMixin(object): """ A security interface to check if a User is an item's owner. Some resources are associated with the User that created or imported them and these Users can be considered the models' owner. This can also be thought of as write/edit privileges. """
[docs] def is_owner(self, item, user, **kwargs): """ Return True if user owns the item. """ # override in subclasses raise exceptions.NotImplemented("Abstract interface Method")
[docs] def get_owned(self, id, user, **kwargs): """ Return the item with the given id if owned by the user, otherwise raise an error. :raises exceptions.ItemOwnershipException: """ item = self.by_id(id) return self.error_unless_owner(item, user, **kwargs)
[docs] def error_unless_owner(self, item, user, **kwargs): """ Raise an error if the item is NOT owned by user, otherwise return the item. :raises exceptions.ItemAccessibilityException: """ if self.is_owner(item, user, **kwargs): return item raise exceptions.ItemOwnershipException("%s is not owned by user" % (self.model_class.__name__))
[docs] def list_owned(self, user, **kwargs): """ Return a list of items owned by the user, raising an error if ANY are not. :raises exceptions.ItemAccessibilityException: """ raise exceptions.NotImplemented("Abstract interface Method")
# just alias to by_user (easier/same thing) # return self.by_user( trans, user, **kwargs )
[docs] def filter_owned(self, user, **kwargs): """ Return a list of items owned by the user. """ # just alias to list_owned return self.list_owned(user, **kwargs)