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
2013-05-08 18:46:16 +04:00
from lib . main . access import *
2013-05-01 22:10:42 +04:00
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-08 18:46:16 +04:00
def _check_options_permissions ( self , request , view , obj = None ) :
return self . _check_get_permissions ( request , view , obj )
def _check_head_permissions ( self , request , view , obj = None ) :
return self . _check_get_permissions ( request , view , obj )
def _check_get_permissions ( self , request , view , obj = None ) :
if hasattr ( view , ' parent_model ' ) :
parent_obj = view . parent_model . objects . get ( pk = view . kwargs [ ' pk ' ] )
if not check_user_access ( request . user , view . parent_model , ' read ' ,
parent_obj ) :
return False
if not obj :
return True
return check_user_access ( request . user , view . model , ' read ' , obj )
def _check_post_permissions ( self , request , view , obj = None ) :
if hasattr ( view , ' parent_model ' ) :
parent_obj = view . parent_model . objects . get ( pk = view . kwargs [ ' pk ' ] )
#if not check_user_access(request.user, view.parent_model, 'change',
# parent_obj, None):
# return False
# FIXME: attach/unattach
return True
else :
if obj :
return True
return check_user_access ( request . user , view . model , ' add ' , request . DATA )
def _check_put_permissions ( self , request , view , obj = None ) :
if not obj :
return True # FIXME: For some reason this needs to return True
# because it is first called with obj=None?
return check_user_access ( request . user , view . model , ' change ' , obj ,
request . DATA )
def _check_delete_permissions ( self , request , view , obj = None ) :
if not obj :
return True # FIXME: For some reason this needs to return True
# because it is first called with obj=None?
return check_user_access ( request . user , view . model , ' delete ' , obj )
2013-05-01 22:10:42 +04:00
def _check_permissions ( self , request , view , obj = None ) :
2013-05-13 18:43:43 +04:00
#if not obj and hasattr(view, 'get_object'):
# obj = view.get_object()
2013-05-01 22:10:42 +04:00
# 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-05-13 18:43:43 +04:00
raise PermissionDenied ( ' your account is inactive ' )
2013-05-01 22:10:42 +04:00
# Always allow superusers (as long as they are active).
if request . user . is_superuser :
return True
2013-05-08 18:46:16 +04:00
# Check permissions for the given view and object, based on the request
# method used.
check_method = getattr ( self , ' _check_ %s _permissions ' % \
request . method . lower ( ) , None )
result = check_method and check_method ( request , view , obj )
if not result :
raise PermissionDenied ( )
return result
2013-05-01 22:10:42 +04:00
# 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 )