68 lines
2.4 KiB
Python
68 lines
2.4 KiB
Python
# Copyright (C) 2014 Andrey Antukh <niwi@niwi.be>
|
|
# Copyright (C) 2014 Jesús Espino <jespinog@gmail.com>
|
|
# Copyright (C) 2014 David Barragán <bameda@dbarragan.com>
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import json
|
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
from rest_framework.response import Response
|
|
|
|
from taiga.base import filters
|
|
from taiga.base.api import ModelCrudViewSet, ModelListViewSet
|
|
from taiga.base.decorators import detail_route
|
|
|
|
from . import models
|
|
from . import serializers
|
|
from . import permissions
|
|
from . import tasks
|
|
|
|
|
|
class WebhookViewSet(ModelCrudViewSet):
|
|
model = models.Webhook
|
|
serializer_class = serializers.WebhookSerializer
|
|
permission_classes = (permissions.WebhookPermission,)
|
|
filter_backends = (filters.IsProjectAdminFilterBackend,)
|
|
filter_fields = ("project",)
|
|
|
|
@detail_route(methods=["POST"])
|
|
def test(self, request, pk=None):
|
|
webhook = self.get_object()
|
|
self.check_permissions(request, 'test', webhook)
|
|
|
|
webhooklog = tasks.test_webhook(webhook.id, webhook.url, webhook.key)
|
|
log = serializers.WebhookLogSerializer(webhooklog)
|
|
|
|
return Response(log.data)
|
|
|
|
class WebhookLogViewSet(ModelListViewSet):
|
|
model = models.WebhookLog
|
|
serializer_class = serializers.WebhookLogSerializer
|
|
permission_classes = (permissions.WebhookLogPermission,)
|
|
filter_backends = (filters.IsProjectAdminFromWebhookLogFilterBackend,)
|
|
filter_fields = ("webhook",)
|
|
|
|
@detail_route(methods=["POST"])
|
|
def resend(self, request, pk=None):
|
|
webhooklog = self.get_object()
|
|
self.check_permissions(request, 'resend', webhooklog)
|
|
|
|
webhook = webhooklog.webhook
|
|
|
|
webhooklog = tasks.resend_webhook(webhook.id, webhook.url, webhook.key, webhooklog.request_data)
|
|
log = serializers.WebhookLogSerializer(webhooklog)
|
|
|
|
return Response(log.data)
|