Skip to content

Commit

Permalink
dev: rest framework throttling (makeplane#4534)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablohashescobar authored May 21, 2024
1 parent 4feec35 commit 410f04c
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 3 deletions.
2 changes: 2 additions & 0 deletions apiserver/plane/authentication/adapter/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
"ADMIN_USER_ALREADY_EXIST": 5180,
"ADMIN_USER_DOES_NOT_EXIST": 5185,
"ADMIN_USER_DEACTIVATED": 5190,
# Rate limit
"RATE_LIMIT_EXCEEDED": 5900,
}


Expand Down
15 changes: 15 additions & 0 deletions apiserver/plane/authentication/adapter/exception.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Third party imports
from rest_framework.views import exception_handler
from rest_framework.exceptions import NotAuthenticated
from rest_framework.exceptions import Throttled

# Module imports
from plane.authentication.adapter.error import AuthenticationException, AUTHENTICATION_ERROR_CODES


def auth_exception_handler(exc, context):
Expand All @@ -9,4 +14,14 @@ def auth_exception_handler(exc, context):
if isinstance(exc, NotAuthenticated):
response.status_code = 401

# Check if an Throttled exception is raised.
if isinstance(exc, Throttled):
exc = AuthenticationException(
error_code=AUTHENTICATION_ERROR_CODES["RATE_LIMIT_EXCEEDED"],
error_message="RATE_LIMIT_EXCEEDED",
)
response.data = exc.get_error_dict()
response.status_code = 429

# Return the response that is generated by the default exception handler.
return response
26 changes: 26 additions & 0 deletions apiserver/plane/authentication/rate_limit.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Third party imports
from rest_framework.throttling import AnonRateThrottle
from rest_framework import status
from rest_framework.response import Response

# Module imports
from plane.authentication.adapter.error import (
AuthenticationException,
AUTHENTICATION_ERROR_CODES,
)


class AuthenticationThrottle(AnonRateThrottle):
rate = "30/minute"
scope = "authentication"

def throttle_failure_view(self, request, *args, **kwargs):
try:
raise AuthenticationException(
error_code=AUTHENTICATION_ERROR_CODES["RATE_LIMIT_EXCEEDED"],
error_message="RATE_LIMIT_EXCEEDED",
)
except AuthenticationException as e:
return Response(
e.get_error_dict(), status=status.HTTP_429_TOO_MANY_REQUESTS
)
10 changes: 9 additions & 1 deletion apiserver/plane/authentication/views/app/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,18 @@
AuthenticationException,
AUTHENTICATION_ERROR_CODES,
)

from plane.authentication.rate_limit import AuthenticationThrottle

class EmailCheckSignUpEndpoint(APIView):

permission_classes = [
AllowAny,
]

throttle_classes = [
AuthenticationThrottle,
]

def post(self, request):
try:
# Check instance configuration
Expand Down Expand Up @@ -86,6 +90,10 @@ class EmailCheckSignInEndpoint(APIView):
AllowAny,
]

throttle_classes = [
AuthenticationThrottle,
]

def post(self, request):
try:
# Check instance configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
AuthenticationException,
AUTHENTICATION_ERROR_CODES,
)

from plane.authentication.rate_limit import AuthenticationThrottle

def generate_password_token(user):
uidb64 = urlsafe_base64_encode(smart_bytes(user.id))
Expand All @@ -46,6 +46,10 @@ class ForgotPasswordEndpoint(APIView):
AllowAny,
]

throttle_classes = [
AuthenticationThrottle,
]

def post(self, request):
email = request.data.get("email")

Expand Down
6 changes: 5 additions & 1 deletion apiserver/plane/authentication/views/space/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,18 @@
AUTHENTICATION_ERROR_CODES,
AuthenticationException,
)

from plane.authentication.rate_limit import AuthenticationThrottle

class EmailCheckEndpoint(APIView):

permission_classes = [
AllowAny,
]

throttle_classes = [
AuthenticationThrottle,
]

def post(self, request):
# Check instance configuration
instance = Instance.objects.first()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
AuthenticationException,
AUTHENTICATION_ERROR_CODES,
)
from plane.authentication.rate_limit import AuthenticationThrottle


def generate_password_token(user):
Expand All @@ -46,6 +47,10 @@ class ForgotPasswordSpaceEndpoint(APIView):
AllowAny,
]

throttle_classes = [
AuthenticationThrottle,
]

def post(self, request):
email = request.data.get("email")

Expand Down

0 comments on commit 410f04c

Please sign in to comment.