Warning
This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy.webapps.galaxy.api.webhooks
"""
API Controller providing Galaxy Webhooks
"""
import imp
import logging
from galaxy.web import expose_api_anonymous_and_sessionless
from galaxy.webapps.base.controller import BaseAPIController
log = logging.getLogger(__name__)
[docs]class WebhooksController(BaseAPIController):
[docs] @expose_api_anonymous_and_sessionless
def all_webhooks(self, trans, **kwd):
"""
*GET /api/webhooks/
Returns all webhooks
"""
return [
webhook.to_dict()
for webhook in self.app.webhooks_registry.webhooks
]
[docs] @expose_api_anonymous_and_sessionless
def webhook_data(self, trans, webhook_id, **kwd):
"""
*GET /api/webhooks/{webhook_id}/data/{params}
Returns the result of executing helper function
"""
params = {}
for key, value in kwd.items():
params[key] = value
webhook = next(
webhook
for webhook in self.app.webhooks_registry.webhooks
if webhook.id == webhook_id
)
return imp.load_source(webhook.path, webhook.helper).main(
trans, webhook, params,
) if webhook and webhook.helper != '' else {}