Onionr/src/httpapi/__init__.py

39 lines
1.3 KiB
Python
Raw Normal View History

"""
2021-02-21 23:22:18 +00:00
Onionr - Private P2P Communication
2019-03-02 19:17:18 +00:00
2021-02-21 23:22:18 +00:00
Register plugin's flask blueprints for the client http server
"""
2021-02-21 23:22:18 +00:00
import onionrplugins
import config
from . import wrappedfunctions
2021-02-22 07:44:17 +00:00
from . import fdsafehandler
"""
2021-02-21 23:22: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.
2019-03-02 19:17:18 +00:00
2021-02-21 23:22:18 +00:00
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.
2019-03-02 19:17:18 +00:00
2021-02-21 23:22:18 +00:00
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
2021-02-21 23:22:18 +00:00
def load_plugin_blueprints(flaskapp, blueprint: str = 'flask_blueprint'):
"""Iterate enabled plugins and load any http endpoints they have"""
2019-12-03 06:00:15 +00:00
config.reload()
disabled = config.get('plugins.disabled')
2019-03-02 06:22:59 +00:00
for plugin in onionrplugins.get_enabled_plugins():
2019-12-03 06:00:15 +00:00
if plugin in disabled:
continue
2019-03-02 06:22:59 +00:00
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