|
| 1 | +from rest_framework import viewsets, status |
| 2 | +from rest_framework.response import Response |
| 3 | +from .models import UserExpenseType |
| 4 | +from .serializers import UserExpenseTypeSerializer |
| 5 | +from authentication.decorators import cognito_authenticated |
| 6 | +import jwt |
| 7 | + |
| 8 | + |
| 9 | +class UserExpenseTypeViewSet(viewsets.ViewSet): |
| 10 | + def get_user_id_from_token(self, request): |
| 11 | + try: |
| 12 | + authorization_header = request.headers.get("Authorization") |
| 13 | + if not authorization_header: |
| 14 | + raise Exception("Authorization header not found") |
| 15 | + |
| 16 | + token = authorization_header.split()[1] |
| 17 | + decoded_token = jwt.decode(token, options={"verify_signature": False}) |
| 18 | + username = decoded_token.get("username") |
| 19 | + if not username: |
| 20 | + raise Exception("User ID not found in token") |
| 21 | + return username |
| 22 | + except jwt.DecodeError: |
| 23 | + raise Exception("Invalid token") |
| 24 | + except jwt.ExpiredSignatureError: |
| 25 | + raise Exception("Expired token") |
| 26 | + except Exception as e: |
| 27 | + raise Exception(f"Error decoding token: {e}") |
| 28 | + |
| 29 | + @cognito_authenticated |
| 30 | + def list(self, request): |
| 31 | + try: |
| 32 | + username = self.get_user_id_from_token(request) |
| 33 | + user_expense_types = UserExpenseType.objects.filter(username=username) |
| 34 | + serializer = UserExpenseTypeSerializer(user_expense_types, many=True) |
| 35 | + for ser in serializer.data: |
| 36 | + ser.pop("username") |
| 37 | + ser.pop("created_at") |
| 38 | + ser.pop("updated_at") |
| 39 | + return Response(data=serializer.data) |
| 40 | + except UserExpenseType.DoesNotExist: |
| 41 | + return Response({"error": "UserExpenseType not found"}, status=status.HTTP_404_NOT_FOUND) |
| 42 | + except Exception as e: |
| 43 | + return Response({"error": str(e)}, status=status.HTTP_500_INTERNAL_SERVER_ERROR) |
| 44 | + |
| 45 | + @cognito_authenticated |
| 46 | + def retrieve(self, request, pk=None): |
| 47 | + try: |
| 48 | + username = self.get_user_id_from_token(request) |
| 49 | + user_expense_type = UserExpenseType.objects.get(id=pk, username=username) |
| 50 | + serializer = UserExpenseTypeSerializer(user_expense_type) |
| 51 | + response = { |
| 52 | + "name": serializer.data["name"], |
| 53 | + "description": serializer.data["description"], |
| 54 | + "set_by_user": serializer.data["set_by_user"], |
| 55 | + } |
| 56 | + return Response(data=response) |
| 57 | + except UserExpenseType.DoesNotExist: |
| 58 | + return Response({"error": "UserExpenseType not found"}, status=status.HTTP_404_NOT_FOUND) |
| 59 | + except Exception as e: |
| 60 | + return Response({"error": str(e)}, status=status.HTTP_500_INTERNAL_SERVER_ERROR) |
| 61 | + |
| 62 | + @cognito_authenticated |
| 63 | + def create(self, request): |
| 64 | + try: |
| 65 | + username = self.get_user_id_from_token(request) |
| 66 | + data = request.data.copy() |
| 67 | + data["username"] = username |
| 68 | + |
| 69 | + serializer = UserExpenseTypeSerializer(data=data) |
| 70 | + if serializer.is_valid(): |
| 71 | + serializer.save() |
| 72 | + response = { |
| 73 | + "name": serializer.data["name"], |
| 74 | + "description": serializer.data["description"], |
| 75 | + "set_by_user": serializer.data["set_by_user"], |
| 76 | + } |
| 77 | + return Response(data=response, status=status.HTTP_201_CREATED) |
| 78 | + return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) |
| 79 | + except Exception as e: |
| 80 | + return Response({"error": str(e)}, status=status.HTTP_500_INTERNAL_SERVER_ERROR) |
| 81 | + |
| 82 | + @cognito_authenticated |
| 83 | + def destroy(self, request, pk=None): |
| 84 | + try: |
| 85 | + username = self.get_user_id_from_token(request) |
| 86 | + user_expense_type = UserExpenseType.objects.get(id=pk, username=username) |
| 87 | + user_expense_type.delete() |
| 88 | + return Response(status=status.HTTP_204_NO_CONTENT) |
| 89 | + except UserExpenseType.DoesNotExist: |
| 90 | + return Response({"error": "UserExpenseType not found"}, status=status.HTTP_404_NOT_FOUND) |
| 91 | + except Exception as e: |
| 92 | + return Response({"error": str(e)}, status=status.HTTP_500_INTERNAL_SERVER_ERROR) |
| 93 | + |
| 94 | + @cognito_authenticated |
| 95 | + def partial_update(self, request, pk=None): |
| 96 | + try: |
| 97 | + username = self.get_user_id_from_token(request) |
| 98 | + user_expense_type = UserExpenseType.objects.get(id=pk, username=username) |
| 99 | + serializer = UserExpenseTypeSerializer(user_expense_type, data=request.data, partial=True) |
| 100 | + if serializer.is_valid(): |
| 101 | + serializer.save() |
| 102 | + response = { |
| 103 | + "name": serializer.data["name"], |
| 104 | + "description": serializer.data["description"], |
| 105 | + "set_by_user": serializer.data["set_by_user"], |
| 106 | + } |
| 107 | + return Response(data=response) |
| 108 | + return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) |
| 109 | + except UserExpenseType.DoesNotExist: |
| 110 | + return Response({"error": "UserExpenseType not found"}, status=status.HTTP_404_NOT_FOUND) |
| 111 | + except Exception as e: |
| 112 | + return Response({"error": str(e)}, status=status.HTTP_500_INTERNAL_SERVER_ERROR) |
0 commit comments