mistral/mistral/notifiers/default_notifier.py
Andras Kovi 5eb2a21607 Improve workflow notifications and webhook data
The task_execution_id is required to be able to restore the hierarchy
of tasks and workflows on the notification receiver side. Also, including
the event in the notification is very useful.

Also fix the documentation as multiline strings are not supported in
ini files.

Change-Id: I714fd5c32b0f31f85ac5a4d22d161e662bf18687
2019-09-04 07:12:20 +02:00

50 lines
1.6 KiB
Python

# Copyright 2018 - Extreme Networks, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import copy
from oslo_log import log as logging
from mistral import context as auth_ctx
from mistral.notifiers import base
LOG = logging.getLogger(__name__)
class DefaultNotifier(base.Notifier):
"""Local notifier that process notification request."""
def notify(self, ex_id, data, event, timestamp, publishers):
ctx = auth_ctx.ctx()
data['event'] = event
for entry in publishers:
params = copy.deepcopy(entry)
publisher_name = params.pop('type', None)
if not publisher_name:
LOG.error('Notification publisher type is not specified.')
continue
try:
publisher = base.get_notification_publisher(publisher_name)
publisher.publish(ctx, ex_id, data, event, timestamp, **params)
except Exception:
LOG.exception(
'Unable to process event for publisher "%s".',
publisher_name
)