openlp/openlp/core/api/versions/v1/plugins.py

78 lines
3.1 KiB
Python

# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
##########################################################################
# OpenLP - Open Source Lyrics Projection #
# ---------------------------------------------------------------------- #
# Copyright (c) 2008-2022 OpenLP Developers #
# ---------------------------------------------------------------------- #
# This program 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. #
# #
# This program 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 this program. If not, see <https://www.gnu.org/licenses/>. #
##########################################################################
import logging
from flask import request, Blueprint, jsonify
from openlp.core.api.lib import extract_request, old_auth
from openlp.core.lib.plugin import PluginStatus
from openlp.core.common.registry import Registry
log = logging.getLogger(__name__)
plugins = Blueprint('v1-plugins', __name__)
def search(plugin_name, text):
plugin = Registry().get('plugin_manager').get_plugin_by_name(plugin_name)
if plugin.status == PluginStatus.Active and plugin.media_item and plugin.media_item.has_search:
results = plugin.media_item.search(text, False)
return results
return None
def live(plugin_name, id):
plugin = Registry().get('plugin_manager').get_plugin_by_name(plugin_name)
if plugin.status == PluginStatus.Active and plugin.media_item:
getattr(plugin.media_item, '{action}_go_live'.format(action=plugin_name)).emit([id, True])
def add(plugin_name, id):
plugin = Registry().get('plugin_manager').get_plugin_by_name(plugin_name)
if plugin.status == PluginStatus.Active and plugin.media_item:
item_id = plugin.media_item.create_item_from_id(id)
getattr(plugin.media_item, '{action}_add_to_service'.format(action=plugin_name)).emit([item_id, True])
@plugins.route('/api/<plugin>/search')
@old_auth
def old_search(plugin):
text = extract_request(request.args.get('data', ''), 'text')
return jsonify({'results': {'items': search(plugin, text)}})
@plugins.route('/api/<plugin>/add')
@old_auth
def old_add(plugin):
id = extract_request(request.args.get('data', ''), 'id')
add(plugin, id)
return '', 204
@plugins.route('/api/<plugin>/live')
@old_auth
def old_live(plugin):
id = extract_request(request.args.get('data', ''), 'id')
live(plugin, id)
return '', 204