2013-04-02 00:04:27 +04:00
# Copyright (c) 2013 AnsibleWorks, Inc.
2013-03-24 02:43:11 +04:00
#
2013-04-09 09:05:55 +04:00
# This file is part of Ansible Commander.
#
2013-03-24 02:43:11 +04:00
# Ansible Commander is free software: you can redistribute it and/or modify
2013-04-09 09:05:55 +04:00
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
2013-03-24 02:43:11 +04:00
#
2013-04-09 09:05:55 +04:00
# Ansible Commander is distributed in the hope that it will be useful,
2013-03-24 02:43:11 +04:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2013-04-09 09:05:55 +04:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible Commander. If not, see <http://www.gnu.org/licenses/>.
2013-03-24 02:43:11 +04:00
2013-05-01 22:10:42 +04:00
import logging
2013-03-21 22:20:59 +04:00
from django . http import Http404
2013-05-01 22:10:42 +04:00
from rest_framework . exceptions import PermissionDenied
from rest_framework import permissions
logger = logging . getLogger ( ' lib.main.rbac ' )
2013-03-21 08:34:59 +04:00
# FIXME: this will probably need to be subclassed by object type
class CustomRbac ( permissions . BasePermission ) :
2013-05-01 22:10:42 +04:00
def _check_permissions ( self , request , view , obj = None ) :
# Check that obj (if given) is active, otherwise raise a 404.
active = getattr ( obj , ' active ' , getattr ( obj , ' is_active ' , True ) )
if callable ( active ) :
active = active ( )
if not active :
raise Http404 ( )
# Don't allow anonymous users. 401, not 403, hence no raised exception.
if not request . user or request . user . is_anonymous ( ) :
2013-03-21 08:34:59 +04:00
return False
2013-05-01 22:10:42 +04:00
# Don't allow inactive users (and respond with a 403).
2013-03-22 19:35:26 +04:00
if not request . user . is_active :
2013-03-21 18:25:49 +04:00
raise PermissionDenied ( )
2013-05-01 22:10:42 +04:00
# Always allow superusers (as long as they are active).
if request . user . is_superuser :
return True
# If no obj is given, check list permissions.
2013-03-21 08:34:59 +04:00
if obj is None :
2013-03-21 19:06:47 +04:00
if getattr ( view , ' list_permissions_check ' , None ) :
if not view . list_permissions_check ( request ) :
raise PermissionDenied ( )
elif not getattr ( view , ' item_permissions_check ' , None ) :
2013-05-01 22:10:42 +04:00
raise Exception ( ' internal error, list_permissions_check or '
' item_permissions_check must be defined ' )
2013-03-21 08:34:59 +04:00
return True
2013-05-01 22:10:42 +04:00
# Otherwise, check the item permissions for the given obj.
2013-03-21 08:34:59 +04:00
else :
2013-05-01 22:10:42 +04:00
if not view . item_permissions_check ( request , obj ) :
raise PermissionDenied ( )
return True
2013-03-21 08:34:59 +04:00
2013-05-01 22:10:42 +04:00
def has_permission ( self , request , view , obj = None ) :
logger . debug ( ' has_permission(user= %s method= %s data= %r , %s , %r ) ' ,
request . user , request . method , request . DATA ,
view . __class__ . __name__ , obj )
try :
response = self . _check_permissions ( request , view , obj )
except Exception , e :
logger . debug ( ' has_permission raised %r ' , e , exc_info = True )
raise
2013-03-24 20:36:42 +04:00
else :
2013-05-01 22:10:42 +04:00
logger . debug ( ' has_permission returned %r ' , response )
return response
2013-03-23 23:34:16 +04:00
2013-05-01 22:10:42 +04:00
def has_object_permission ( self , request , view , obj ) :
return self . has_permission ( request , view , obj )