102 lines
3.8 KiB
Python
102 lines
3.8 KiB
Python
# rest framework
|
|
from rest_framework import generics
|
|
|
|
# drf yasg
|
|
from drf_yasg import openapi
|
|
from drf_yasg.utils import swagger_auto_schema
|
|
|
|
|
|
# accounts
|
|
from core.apps.accounts.models import User
|
|
from core.apps.accounts.serializers.auth import login as serializers
|
|
from core.apps.accounts.serializers.user import UserSerializer
|
|
|
|
# utils
|
|
from core.utils.response.mixin import ResponseMixin
|
|
|
|
|
|
class LoginApiView(generics.GenericAPIView, ResponseMixin):
|
|
serializer_class = serializers.LoginSerializer
|
|
queryset = User.objects.all()
|
|
|
|
@swagger_auto_schema(
|
|
tags=["auth"],
|
|
operation_summary="Authenticate a user and returns access/refresh tokens",
|
|
operation_description="""
|
|
Authenticate a user using their login credentials and return JWT tokens.
|
|
|
|
Request:
|
|
- Accepts user login credentials in JSON format.
|
|
- The payload is validated using the LoginSerializer.
|
|
|
|
Process:
|
|
- If the credentials are valid, the corresponding user is retrieved.
|
|
- A pair of JWT tokens (access and refresh) is generated for the user.
|
|
- User data and tokens are returned in the response.
|
|
|
|
Response:
|
|
- 200 OK: Returns authenticated user details along with access and refresh tokens.
|
|
- 400 Bad Request: Returned when validation fails (e.g., invalid credentials or missing fields).
|
|
- 500 Internal Server Error: Returned if an unexpected error occurs during authentication.
|
|
|
|
Authentication:
|
|
- This endpoint does not require authentication.
|
|
- It is used to obtain new JWT tokens for authorized access to protected endpoints.
|
|
|
|
Notes:
|
|
- The response includes both user profile data and JWT token pair.
|
|
- Make sure to store the refresh token securely for token renewal flows.
|
|
""",
|
|
responses={
|
|
200: openapi.Response(
|
|
description="Success",
|
|
schema=None,
|
|
examples={
|
|
"application/json": {
|
|
"status_code": 200,
|
|
"status": "success",
|
|
"message": "Login muvaffaqiyatli amalga oshirildi",
|
|
"data": {
|
|
"user": {
|
|
"id": 0,
|
|
"first_name": "string",
|
|
"last_name": "string",
|
|
"username": "string",
|
|
"phone_number": "string",
|
|
"profile_image": "string",
|
|
"created_at": "string",
|
|
"updated_at": "string",
|
|
},
|
|
"tokens": {
|
|
"access_token": "string",
|
|
"refresh_token": "string",
|
|
}
|
|
}
|
|
}
|
|
}
|
|
)
|
|
}
|
|
)
|
|
def post(self, request):
|
|
try:
|
|
serializer = self.serializer_class(data=request.data)
|
|
if serializer.is_valid():
|
|
user = serializer.validated_data.get('user')
|
|
token = user.get_jwt_token()
|
|
data = {
|
|
"user": UserSerializer(user).data,
|
|
"tokens": token,
|
|
}
|
|
return self.success_response(
|
|
data=data,
|
|
message="Login muvaffaqiyatli amalga oshirildi"
|
|
)
|
|
return self.failure_response(
|
|
data=serializer.errors,
|
|
message="Kiritayotgan malumotingizni tekshirib ko'ring"
|
|
)
|
|
except Exception as e:
|
|
return self.error_response(
|
|
data=str(e)
|
|
)
|