Source code for invenio_webhooks.ext

# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2015, 2016 CERN.
#
# Invenio is free software; you can redistribute it
# and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Invenio is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Invenio; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307, USA.
#
# In applying this license, CERN does not
# waive the privileges and immunities granted to it by virtue of its status
# as an Intergovernmental Organization or submit itself to any jurisdiction.

"""Invenio module for processing webhook events."""

from __future__ import absolute_import, print_function

import pkg_resources

from . import config


class _WebhooksState(object):
    """Webhooks state storing registered receivers."""

    def __init__(self, app, entry_point_group=None):
        """Initialize state."""
        self.app = app
        self.receivers = {}

        if entry_point_group:
            self.load_entry_point_group(entry_point_group)

    def register(self, receiver_id, receiver):
        """Register a receiver."""
        assert receiver_id not in self.receivers
        self.receivers[receiver_id] = receiver(receiver_id)

    def unregister(self, receiver_id):
        """Unregister a receiver by its id."""
        del self.receivers[receiver_id]

    def load_entry_point_group(self, entry_point_group):
        """Load actions from an entry point group."""
        for ep in pkg_resources.iter_entry_points(group=entry_point_group):
            self.register(ep.name, ep.load())


[docs]class InvenioWebhooks(object): """Invenio-Webhooks extension.""" def __init__(self, app=None, **kwargs): """Extension initialization.""" if app: self.init_app(app, **kwargs)
[docs] def init_app(self, app, entry_point_group='invenio_webhooks.receivers'): """Flask application initialization.""" self.init_config(app) state = _WebhooksState(app, entry_point_group=entry_point_group) self._state = app.extensions['invenio-webhooks'] = state
[docs] def init_config(self, app): """Initialize configuration.""" app.config.setdefault( 'WEBHOOKS_BASE_TEMPLATE', app.config.get('BASE_TEMPLATE', 'invenio_webhooks/base.html')) for k in dir(config): if k.startswith('WEBHOOKS_'): app.config.setdefault(k, getattr(config, k))