Onionr/src/httpapi/__init__.py

30 lines
1.2 KiB
Python
Raw Normal View History

"""
2019-06-26 20:13:36 +00:00
Onionr - Private P2P Communication
2019-03-02 19:17:18 +00:00
This file registers plugin's flask blueprints for the client http server
"""
"""
2019-03-02 19:17:18 +00:00
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/>.
"""
2019-03-02 06:22:59 +00:00
import onionrplugins
def load_plugin_blueprints(flaskapp, blueprint: str = 'flask_blueprint'):
"""Iterate enabled plugins and load any http endpoints they have"""
2019-03-02 06:22:59 +00:00
for plugin in onionrplugins.get_enabled_plugins():
plugin = onionrplugins.get_plugin(plugin)
try:
2019-03-29 17:37:51 +00:00
flaskapp.register_blueprint(getattr(plugin, blueprint))
2019-03-02 06:22:59 +00:00
except AttributeError:
pass