mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
from typing import cast
|
|
|
|
from django.conf import settings
|
|
from rest_framework import exceptions, serializers, viewsets
|
|
from rest_framework.permissions import IsAuthenticated
|
|
|
|
from ee.models.hook import Hook
|
|
from posthog.api.routing import StructuredViewSetMixin
|
|
from posthog.models.user import User
|
|
from posthog.permissions import OrganizationMemberPermissions
|
|
|
|
|
|
class HookSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Hook
|
|
fields = ("id", "created", "updated", "event", "target", "resource_id", "team")
|
|
read_only_fields = ("team",)
|
|
|
|
def validate_event(self, event):
|
|
if event not in settings.HOOK_EVENTS:
|
|
raise exceptions.ValidationError(detail=f"Unexpected event {event}")
|
|
return event
|
|
|
|
|
|
class HookViewSet(StructuredViewSetMixin, viewsets.ModelViewSet):
|
|
"""
|
|
Retrieve, create, update or destroy webhooks.
|
|
"""
|
|
|
|
queryset = Hook.objects.all()
|
|
ordering = "-created_at"
|
|
permission_classes = [IsAuthenticated, OrganizationMemberPermissions]
|
|
serializer_class = HookSerializer
|
|
|
|
def perform_create(self, serializer):
|
|
user = cast(User, self.request.user)
|
|
serializer.save(user=user, team=user.team)
|