Source code for swh.web.save_origin_webhooks.gitlab
# Copyright (C) 2022 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU Affero General Public License version 3, or any later version
# See top-level LICENSE file for more information
from typing import Tuple
from rest_framework.request import Request
from swh.web.save_origin_webhooks.generic_receiver import OriginSaveWebhookReceiver
[docs]
class GitlabOriginSaveWebhookReceiver(OriginSaveWebhookReceiver):
FORGE_TYPE = "GitLab"
WEBHOOK_GUIDE_URL = (
"https://docs.gitlab.com/ee/user/project/integrations/"
"webhooks.html#configure-a-webhook-in-gitlab"
)
REPO_TYPES = "git"
[docs]
def is_forge_request(self, request: Request) -> bool:
return (
request.headers.get("User-Agent", "").startswith(f"{self.FORGE_TYPE}/")
and "X-Gitlab-Event" in request.headers
)
[docs]
def is_push_event(self, request: Request) -> bool:
return "Push Hook" in request.headers["X-Gitlab-Event"]
api_origin_save_webhook_gitlab = GitlabOriginSaveWebhookReceiver()