Onionr/onionr/httpapi/__init__.py

29 lines
1.2 KiB
Python
Raw Normal View History

2019-03-02 19:17:18 +00:00
'''
Onionr - P2P Anonymous Storage Network
This file registers plugin's flask blueprints for the client http server
'''
'''
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
2019-03-29 17:37:51 +00:00
def load_plugin_blueprints(flaskapp, blueprint='flask_blueprint'):
2019-03-02 19:17:18 +00:00
'''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