|
| 1 | +import logging |
| 2 | +from typing import TYPE_CHECKING, Any, Optional |
| 3 | + |
| 4 | +from flask import request |
| 5 | + |
| 6 | +from alerta.exceptions import ForwardingLoop |
| 7 | +from alerta.plugins import PluginBase |
| 8 | +from alerta.utils.client import Client |
| 9 | +from alerta.utils.response import base_url |
| 10 | + |
| 11 | +if TYPE_CHECKING: |
| 12 | + from alerta.models.alert import Alert # noqa |
| 13 | + |
| 14 | + |
| 15 | +LOG = logging.getLogger('alerta.plugins.forwarder') |
| 16 | + |
| 17 | +X_LOOP_HEADER = 'X-Alerta-Loop' |
| 18 | + |
| 19 | + |
| 20 | +def append_to_header(origin): |
| 21 | + x_loop = request.headers.get(X_LOOP_HEADER) |
| 22 | + return origin if not x_loop else '{},{}'.format(x_loop, origin) |
| 23 | + |
| 24 | + |
| 25 | +def is_in_xloop(server): |
| 26 | + x_loop = request.headers.get(X_LOOP_HEADER) |
| 27 | + return server in x_loop if server and x_loop else False |
| 28 | + |
| 29 | + |
| 30 | +class Forwarder(PluginBase): |
| 31 | + """ |
| 32 | + Alert and action forwarder for federated Alerta deployments |
| 33 | + See https://docs.alerta.io/en/latest/federated.html |
| 34 | + """ |
| 35 | + |
| 36 | + def pre_receive(self, alert: 'Alert', **kwargs) -> 'Alert': |
| 37 | + |
| 38 | + if is_in_xloop(base_url()): |
| 39 | + http_origin = request.origin or '(unknown)' |
| 40 | + raise ForwardingLoop('Alert forwarded by {} already processed by {}'.format(http_origin, base_url())) |
| 41 | + return alert |
| 42 | + |
| 43 | + def post_receive(self, alert: 'Alert', **kwargs) -> Optional['Alert']: |
| 44 | + |
| 45 | + for remote, auth, actions in self.get_config('FWD_DESTINATIONS', default=[], type=list, **kwargs): |
| 46 | + if is_in_xloop(remote): |
| 47 | + LOG.debug('Forward [action=alerts]: {} ; Remote {} already processed alert. Skip.'.format(alert.id, remote)) |
| 48 | + continue |
| 49 | + if not ('*' in actions or 'alerts' in actions): |
| 50 | + LOG.debug('Forward [action=alerts]: {} ; Remote {} not configured for alerts. Skip.'.format(alert.id, remote)) |
| 51 | + continue |
| 52 | + |
| 53 | + headers = {X_LOOP_HEADER: append_to_header(base_url())} |
| 54 | + client = Client(endpoint=remote, headers=headers, **auth) |
| 55 | + |
| 56 | + LOG.info('Forward [action=alerts]: {} ; {} -> {}'.format(alert.id, base_url(), remote)) |
| 57 | + try: |
| 58 | + r = client.send_alert(**alert.get_body()) |
| 59 | + except Exception as e: |
| 60 | + LOG.warning('Forward [action=alerts]: {} ; Failed to forward alert to {} - {}'.format(alert.id, remote, str(e))) |
| 61 | + continue |
| 62 | + LOG.debug('Forward [action=alerts]: {} ; [{}] {}'.format(alert.id, r.status_code, r.text)) |
| 63 | + |
| 64 | + return alert |
| 65 | + |
| 66 | + def status_change(self, alert: 'Alert', status: str, text: str, **kwargs) -> Any: |
| 67 | + return |
| 68 | + |
| 69 | + def take_action(self, alert: 'Alert', action: str, text: str, **kwargs) -> Any: |
| 70 | + |
| 71 | + if is_in_xloop(base_url()): |
| 72 | + http_origin = request.origin or '(unknown)' |
| 73 | + raise ForwardingLoop('Action {} forwarded by {} already processed by {}'.format( |
| 74 | + action, http_origin, base_url()) |
| 75 | + ) |
| 76 | + |
| 77 | + for remote, auth, actions in self.get_config('FWD_DESTINATIONS', default=[], type=list, **kwargs): |
| 78 | + if is_in_xloop(remote): |
| 79 | + LOG.debug('Forward [action={}]: {} ; Remote {} already processed action. Skip.'.format(action, alert.id, remote)) |
| 80 | + continue |
| 81 | + if not ('*' in actions or 'actions' in actions or action in actions): |
| 82 | + LOG.debug('Forward [action={}]: {} ; Remote {} not configured for action. Skip.'.format(action, alert.id, remote)) |
| 83 | + continue |
| 84 | + |
| 85 | + headers = {X_LOOP_HEADER: append_to_header(base_url())} |
| 86 | + client = Client(endpoint=remote, headers=headers, **auth) |
| 87 | + |
| 88 | + LOG.info('Forward [action={}]: {} ; {} -> {}'.format(action, alert.id, base_url(), remote)) |
| 89 | + try: |
| 90 | + r = client.action(alert.id, action, text) |
| 91 | + except Exception as e: |
| 92 | + LOG.warning('Forward [action={}]: {} ; Failed to action alert on {} - {}'.format(action, alert.id, remote, str(e))) |
| 93 | + continue |
| 94 | + LOG.debug('Forward [action={}]: {} ; [{}] {}'.format(action, alert.id, r.status_code, r.text)) |
| 95 | + |
| 96 | + return alert |
| 97 | + |
| 98 | + def delete(self, alert: 'Alert', **kwargs) -> bool: |
| 99 | + |
| 100 | + if is_in_xloop(base_url()): |
| 101 | + http_origin = request.origin or '(unknown)' |
| 102 | + raise ForwardingLoop('Delete forwarded by {} already processed by {}'.format(http_origin, base_url())) |
| 103 | + |
| 104 | + for remote, auth, actions in self.get_config('FWD_DESTINATIONS', default=[], type=list, **kwargs): |
| 105 | + print('{} actions={}'.format(remote, actions)) |
| 106 | + if is_in_xloop(remote): |
| 107 | + LOG.debug('Forward [action=delete]: {} ; Remote {} already processed delete. Skip.'.format(alert.id, remote)) |
| 108 | + continue |
| 109 | + if not ('*' in actions or 'delete' in actions): |
| 110 | + LOG.debug('Forward [action=delete]: {} ; Remote {} not configured for deletes. Skip.'.format(alert.id, remote)) |
| 111 | + continue |
| 112 | + |
| 113 | + headers = {X_LOOP_HEADER: append_to_header(base_url())} |
| 114 | + client = Client(endpoint=remote, headers=headers, **auth) |
| 115 | + |
| 116 | + LOG.info('Forward [action=delete]: {} ; {} -> {}'.format(alert.id, base_url(), remote)) |
| 117 | + try: |
| 118 | + r = client.delete_alert(alert.id) |
| 119 | + except Exception as e: |
| 120 | + LOG.warning('Forward [action=delete]: {} ; Failed to delete alert on {} - {}'.format(alert.id, remote, str(e))) |
| 121 | + continue |
| 122 | + LOG.debug('Forward [action=delete]: {} ; [{}] {}'.format(alert.id, r.status_code, r.text)) |
| 123 | + |
| 124 | + return True # always continue with local delete even if remote delete(s) fail |
0 commit comments