mirror of https://github.com/jumpserver/jumpserver
[future] 增加503和501的自定义异常
parent
76f72dfb58
commit
1e835d2fa9
|
@ -0,0 +1,16 @@
|
|||
# ~*~ coding: utf-8 ~*~
|
||||
from __future__ import unicode_literals, print_function
|
||||
|
||||
from rest_framework.exceptions import APIException
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
|
||||
class ServiceUnavailable(APIException):
|
||||
status_code = default_code = 503
|
||||
default_detail = _('Service temporarily unavailable, try again later.')
|
||||
|
||||
|
||||
class ServiceNotImplemented(APIException):
|
||||
status_code = default_code = 501
|
||||
default_detail = _('This service maybe implemented in the future, but now not implemented!')
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
# ~*~ coding: utf-8 ~*~
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from rest_framework import permissions
|
||||
|
||||
|
||||
class AdminUserRequired(permissions.BasePermission):
|
||||
"""
|
||||
Custom permission to only allow admin user to access the resource.
|
||||
"""
|
||||
|
||||
def has_object_permission(self, request, view, obj):
|
||||
# Read permissions are allowed to any request,
|
||||
# so we'll always allow GET, HEAD or OPTIONS requests.
|
||||
if request.method in permissions.SAFE_METHODS:
|
||||
return True
|
||||
|
||||
# Write permissions are only allowed to the admin role.
|
||||
return request.user.is_staff
|
Loading…
Reference in New Issue