# third party from rest_framework.permissions import AllowAny from rest_framework import status from rest_framework.response import Response from plane.db.models import DeployBoard, Project from .base import BaseAPIView from plane.space.serializer.project import ProjectLiteSerializer class ProjectMetaDataEndpoint(BaseAPIView): permission_classes = [AllowAny] def get(self, request, anchor): try: deploy_board = DeployBoard.objects.filter( anchor=anchor, entity_name="project" ).first() except DeployBoard.DoesNotExist: return Response( {"error": "Project is not published"}, status=status.HTTP_404_NOT_FOUND ) try: project_id = deploy_board.entity_identifier project = Project.objects.get(id=project_id) except Project.DoesNotExist: return Response( {"error": "Project is not published"}, status=status.HTTP_404_NOT_FOUND ) serializer = ProjectLiteSerializer(project) return Response(serializer.data, status=status.HTTP_200_OK)