* dev: initiate external apis * dev: external api * dev: external public api implementation * dev: add prefix to all api tokens * dev: flag to enable disable api token api access * dev: webhook model create and apis * dev: webhook settings * fix: webhook logs * chore: removed drf spectacular * dev: remove retry_count and fix api logging for get requests * dev: refactor webhook logic * fix: celery retry mechanism * chore: event and action change * chore: migrations changes * dev: proxy setup for apis * chore: changed retry time and cleanup * chore: added issue comment and inbox issue api endpoints * fix: migration files * fix: added env variables * fix: removed issue attachment from proxy * fix: added new migration file * fix: restricted wehbook access * chore: changed urls * chore: fixed porject serializer * fix: set expire for api token * fix: retrive endpoint for api token * feat: Api Token screens & api integration * dev: webhook endpoint changes * dev: add fields for webhook updates * feat: Download Api secret key * chore: removed BASE API URL * feat: revoke token access * dev: migration fixes * feat: workspace webhooks (#2748) * feat: workspace webhook store, services integeration and rendered webhook list and create * chore: handled webhook update and rengenerate token in workspace webhooks * feat: regenerate key and delete functionality --------- Co-authored-by: Ramesh Kumar <rameshkumar@rameshs-MacBook-Pro.local> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Ramesh Kumar Chandra <rameshkumar2299@gmail.com> * fix: url validation added * fix: seperated env for webhook and api * Web hooks refactoring * add show option for generated hook key * Api token restructure * webhook minor fixes * fix build errors * chore: improvements in file structring * dev: rate limiting the open apis --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: LAKHAN BAHETI <lakhanbaheti9@gmail.com> Co-authored-by: rahulramesha <71900764+rahulramesha@users.noreply.github.com> Co-authored-by: Ramesh Kumar <rameshkumar@rameshs-MacBook-Pro.local> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Ramesh Kumar Chandra <rameshkumar2299@gmail.com> Co-authored-by: Nikhil <118773738+pablohashescobar@users.noreply.github.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: rahulramesha <rahulramesham@gmail.com>
78 lines
2.6 KiB
Python
78 lines
2.6 KiB
Python
# Python import
|
|
from uuid import uuid4
|
|
|
|
# Third party
|
|
from rest_framework.response import Response
|
|
from rest_framework import status
|
|
|
|
# Module import
|
|
from .base import BaseAPIView
|
|
from plane.db.models import APIToken, Workspace
|
|
from plane.api.serializers import APITokenSerializer, APITokenReadSerializer
|
|
from plane.api.permissions import WorkspaceOwnerPermission
|
|
|
|
|
|
class ApiTokenEndpoint(BaseAPIView):
|
|
permission_classes = [
|
|
WorkspaceOwnerPermission,
|
|
]
|
|
|
|
def post(self, request, slug):
|
|
label = request.data.get("label", str(uuid4().hex))
|
|
description = request.data.get("description", "")
|
|
workspace = Workspace.objects.get(slug=slug)
|
|
expired_at = request.data.get("expired_at", None)
|
|
|
|
# Check the user type
|
|
user_type = 1 if request.user.is_bot else 0
|
|
|
|
api_token = APIToken.objects.create(
|
|
label=label,
|
|
description=description,
|
|
user=request.user,
|
|
workspace=workspace,
|
|
user_type=user_type,
|
|
expired_at=expired_at,
|
|
)
|
|
|
|
serializer = APITokenSerializer(api_token)
|
|
# Token will be only visible while creating
|
|
return Response(
|
|
serializer.data,
|
|
status=status.HTTP_201_CREATED,
|
|
)
|
|
|
|
def get(self, request, slug, pk=None):
|
|
if pk == None:
|
|
api_tokens = APIToken.objects.filter(
|
|
user=request.user, workspace__slug=slug
|
|
)
|
|
serializer = APITokenReadSerializer(api_tokens, many=True)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
else:
|
|
api_tokens = APIToken.objects.get(
|
|
user=request.user, workspace__slug=slug, pk=pk
|
|
)
|
|
serializer = APITokenReadSerializer(api_tokens)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
|
|
def delete(self, request, slug, pk):
|
|
api_token = APIToken.objects.get(
|
|
workspace__slug=slug,
|
|
user=request.user,
|
|
pk=pk,
|
|
)
|
|
api_token.delete()
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
def patch(self, request, slug, pk):
|
|
api_token = APIToken.objects.get(
|
|
workspace__slug=slug,
|
|
user=request.user,
|
|
pk=pk,
|
|
)
|
|
serializer = APITokenSerializer(api_token, data=request.data, partial=True)
|
|
if serializer.is_valid():
|
|
serializer.save()
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|