mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
77 lines
3.6 KiB
Python
77 lines
3.6 KiB
Python
# This file is part of Indico.
|
|
# Copyright (C) 2002 - 2018 European Organization for Nuclear Research (CERN).
|
|
#
|
|
# Indico 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 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# Indico 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 Indico; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from indico.core import signals
|
|
from indico.core.plugins import IndicoPlugin, IndicoPluginBlueprint, PluginCategory, plugin_url_rule_to_js
|
|
from indico.modules.events.timetable.views import WPManageTimetable
|
|
from indico.web.flask.util import url_rule_to_js
|
|
|
|
from indico_importer import _
|
|
from indico_importer.controllers import RHBlockEndTime, RHDayEndTime, RHGetImporters, RHImportData
|
|
|
|
|
|
class ImporterPlugin(IndicoPlugin):
|
|
"""Importer
|
|
|
|
Extends Indico for other plugins to import data from external sources to
|
|
the timetable.
|
|
"""
|
|
category = PluginCategory.importers
|
|
|
|
def init(self):
|
|
super(ImporterPlugin, self).init()
|
|
self.inject_js('importer_js', WPManageTimetable)
|
|
self.inject_css('importer_css', WPManageTimetable)
|
|
self.connect(signals.event.timetable_buttons, self.get_timetable_buttons)
|
|
self.importer_engines = {}
|
|
|
|
def get_blueprints(self):
|
|
return blueprint
|
|
|
|
def get_timetable_buttons(self, *args, **kwargs):
|
|
if self.importer_engines:
|
|
yield _('Importer'), 'create-importer-dialog'
|
|
|
|
def get_vars_js(self):
|
|
return {'urls': {'import_data': plugin_url_rule_to_js('importer.import_data'),
|
|
'importers': plugin_url_rule_to_js('importer.importers'),
|
|
'day_end_date': plugin_url_rule_to_js('importer.day_end_date'),
|
|
'block_end_date': plugin_url_rule_to_js('importer.block_end_date'),
|
|
'add_contrib': url_rule_to_js('timetable.add_contribution'),
|
|
'create_subcontrib_rest': url_rule_to_js('contributions.create_subcontrib_rest'),
|
|
'create_contrib_reference_rest': url_rule_to_js('contributions.create_contrib_reference_rest'),
|
|
'create_subcontrib_reference_rest': url_rule_to_js('contributions'
|
|
'.create_subcontrib_reference_rest'),
|
|
'add_link': url_rule_to_js('attachments.add_link')}}
|
|
|
|
def register_assets(self):
|
|
self.register_js_bundle('importer_js', 'js/importer.js')
|
|
self.register_css_bundle('importer_css', 'css/importer.css')
|
|
|
|
def register_importer_engine(self, importer_engine, plugin):
|
|
self.importer_engines[importer_engine._id] = (importer_engine, plugin)
|
|
|
|
|
|
blueprint = IndicoPluginBlueprint('importer', __name__)
|
|
blueprint.add_url_rule('/importers/<importer_name>/search', 'import_data', RHImportData, methods=('POST',))
|
|
blueprint.add_url_rule('/importers/', 'importers', RHGetImporters)
|
|
|
|
blueprint.add_url_rule('/importers/<importer_name>/event/<confId>/day-end-date', 'day_end_date', RHDayEndTime)
|
|
blueprint.add_url_rule('/importers/<importer_name>/event/<confId>/entry/<entry_id>/block-end-date', 'block_end_date',
|
|
RHBlockEndTime)
|