mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
import abc
|
|
import logging
|
|
from typing import Any, Dict, Union
|
|
|
|
from flask import Blueprint, current_app, request
|
|
from werkzeug.datastructures import ImmutableMultiDict
|
|
|
|
from alerta.models.alert import Alert
|
|
|
|
webhooks = Blueprint('webhooks', __name__)
|
|
|
|
from . import custom # noqa isort:skip
|
|
|
|
JSON = Dict[str, Any]
|
|
|
|
|
|
@webhooks.before_request
|
|
def before_request():
|
|
current_app.logger.info('Webhook Request:\n{} {}\n\n{}{}'.format(
|
|
request.method,
|
|
request.url,
|
|
request.headers,
|
|
request.get_data().decode('utf-8')
|
|
))
|
|
|
|
|
|
LOG = logging.getLogger('alerta.webhooks')
|
|
|
|
|
|
class WebhookBase(metaclass=abc.ABCMeta):
|
|
|
|
def __init__(self, name: str = None) -> None:
|
|
self.name = name or self.__module__
|
|
if self.__doc__:
|
|
LOG.info(f'\n{self.__doc__}\n')
|
|
|
|
@abc.abstractmethod
|
|
def incoming(self, path: str, query_string: ImmutableMultiDict, payload: Any) -> Union[Alert, JSON]:
|
|
"""
|
|
Parse webhook path, query string and/or payload in JSON or plain text and
|
|
return an alert or a custom JSON response.
|
|
"""
|
|
raise NotImplementedError
|