mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
126 lines
5.3 KiB
Python
126 lines
5.3 KiB
Python
import logging
|
|
from typing import TYPE_CHECKING, Any, Optional
|
|
|
|
from flask import request
|
|
|
|
from alerta.exceptions import ForwardingLoop
|
|
from alerta.plugins import PluginBase
|
|
from alerta.utils.client import Client
|
|
from alerta.utils.response import base_url
|
|
|
|
if TYPE_CHECKING:
|
|
from alerta.models.alert import Alert # noqa
|
|
|
|
|
|
LOG = logging.getLogger('alerta.plugins.forwarder')
|
|
|
|
X_LOOP_HEADER = 'X-Alerta-Loop'
|
|
|
|
|
|
def append_to_header(origin):
|
|
x_loop = request.headers.get(X_LOOP_HEADER)
|
|
return origin if not x_loop else f'{x_loop},{origin}'
|
|
|
|
|
|
def is_in_xloop(server):
|
|
x_loop = request.headers.get(X_LOOP_HEADER)
|
|
return server in x_loop if server and x_loop else False
|
|
|
|
|
|
class Forwarder(PluginBase):
|
|
"""
|
|
Alert and action forwarder for federated Alerta deployments
|
|
See https://docs.alerta.io/en/latest/federated.html
|
|
"""
|
|
|
|
def pre_receive(self, alert: 'Alert', **kwargs) -> 'Alert':
|
|
|
|
if is_in_xloop(base_url()):
|
|
http_origin = request.origin or '(unknown)' # type: ignore
|
|
raise ForwardingLoop(f'Alert forwarded by {http_origin} already processed by {base_url()}')
|
|
return alert
|
|
|
|
def post_receive(self, alert: 'Alert', **kwargs) -> Optional['Alert']:
|
|
|
|
for remote, auth, actions in self.get_config('FWD_DESTINATIONS', default=[], type=list, **kwargs):
|
|
if is_in_xloop(remote):
|
|
LOG.debug(f'Forward [action=alerts]: {alert.id} ; Remote {remote} already processed alert. Skip.')
|
|
continue
|
|
if not ('*' in actions or 'alerts' in actions):
|
|
LOG.debug(f'Forward [action=alerts]: {alert.id} ; Remote {remote} not configured for alerts. Skip.')
|
|
continue
|
|
|
|
headers = {X_LOOP_HEADER: append_to_header(base_url())}
|
|
client = Client(endpoint=remote, headers=headers, **auth)
|
|
|
|
LOG.info(f'Forward [action=alerts]: {alert.id} ; {base_url()} -> {remote}')
|
|
try:
|
|
body = alert.get_body(history=False)
|
|
body['id'] = alert.last_receive_id
|
|
# FIXME - createTime is being overwritten by send_alert()
|
|
r = client.send_alert(**body)
|
|
except Exception as e:
|
|
LOG.warning(f'Forward [action=alerts]: {alert.id} ; Failed to forward alert to {remote} - {str(e)}')
|
|
continue
|
|
LOG.debug(f'Forward [action=alerts]: {alert.id} ; [{r.status_code}] {r.text}')
|
|
|
|
return alert
|
|
|
|
def status_change(self, alert: 'Alert', status: str, text: str, **kwargs) -> Any:
|
|
return
|
|
|
|
def take_action(self, alert: 'Alert', action: str, text: str, **kwargs) -> Any:
|
|
|
|
if is_in_xloop(base_url()):
|
|
http_origin = request.origin or '(unknown)' # type: ignore
|
|
raise ForwardingLoop('Action {} forwarded by {} already processed by {}'.format(
|
|
action, http_origin, base_url())
|
|
)
|
|
|
|
for remote, auth, actions in self.get_config('FWD_DESTINATIONS', default=[], type=list, **kwargs):
|
|
if is_in_xloop(remote):
|
|
LOG.debug(f'Forward [action={action}]: {alert.id} ; Remote {remote} already processed action. Skip.')
|
|
continue
|
|
if not ('*' in actions or 'actions' in actions or action in actions):
|
|
LOG.debug(f'Forward [action={action}]: {alert.id} ; Remote {remote} not configured for action. Skip.')
|
|
continue
|
|
|
|
headers = {X_LOOP_HEADER: append_to_header(base_url())}
|
|
client = Client(endpoint=remote, headers=headers, **auth)
|
|
|
|
LOG.info(f'Forward [action={action}]: {alert.id} ; {base_url()} -> {remote}')
|
|
try:
|
|
r = client.action(alert.id, action, text)
|
|
except Exception as e:
|
|
LOG.warning(f'Forward [action={action}]: {alert.id} ; Failed to action alert on {remote} - {str(e)}')
|
|
continue
|
|
LOG.debug(f'Forward [action={action}]: {alert.id} ; [{r.status_code}] {r.text}')
|
|
|
|
return alert
|
|
|
|
def delete(self, alert: 'Alert', **kwargs) -> bool:
|
|
|
|
if is_in_xloop(base_url()):
|
|
http_origin = request.origin or '(unknown)' # type: ignore
|
|
raise ForwardingLoop(f'Delete forwarded by {http_origin} already processed by {base_url()}')
|
|
|
|
for remote, auth, actions in self.get_config('FWD_DESTINATIONS', default=[], type=list, **kwargs):
|
|
if is_in_xloop(remote):
|
|
LOG.debug(f'Forward [action=delete]: {alert.id} ; Remote {remote} already processed delete. Skip.')
|
|
continue
|
|
if not ('*' in actions or 'delete' in actions):
|
|
LOG.debug(f'Forward [action=delete]: {alert.id} ; Remote {remote} not configured for deletes. Skip.')
|
|
continue
|
|
|
|
headers = {X_LOOP_HEADER: append_to_header(base_url())}
|
|
client = Client(endpoint=remote, headers=headers, **auth)
|
|
|
|
LOG.info(f'Forward [action=delete]: {alert.id} ; {base_url()} -> {remote}')
|
|
try:
|
|
r = client.delete_alert(alert.id)
|
|
except Exception as e:
|
|
LOG.warning(f'Forward [action=delete]: {alert.id} ; Failed to delete alert on {remote} - {str(e)}')
|
|
continue
|
|
LOG.debug(f'Forward [action=delete]: {alert.id} ; [{r.status_code}] {r.text}')
|
|
|
|
return True # always continue with local delete even if remote delete(s) fail
|