2018-03-03 04:19:01 +00:00
|
|
|
'''
|
|
|
|
Onionr - P2P Microblogging Platform & Social network
|
|
|
|
|
|
|
|
This file deals with configuration management.
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
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/>.
|
|
|
|
'''
|
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
import config, logger, onionrplugins as plugins, onionrpluginapi as pluginapi
|
2018-05-03 03:22:07 +00:00
|
|
|
from threading import Thread
|
2018-04-21 01:20:26 +00:00
|
|
|
|
2018-04-21 03:10:50 +00:00
|
|
|
def get_pluginapi(onionr, data):
|
|
|
|
return pluginapi.pluginapi(onionr, data)
|
2018-03-03 04:19:01 +00:00
|
|
|
|
2018-05-03 03:22:07 +00:00
|
|
|
def __event_caller(event_name, data = {}, onionr = None):
|
2018-03-03 04:19:01 +00:00
|
|
|
'''
|
2018-05-03 03:22:07 +00:00
|
|
|
DO NOT call this function, this is for threading code only.
|
|
|
|
Instead, call onionrevents.event
|
2018-03-03 04:19:01 +00:00
|
|
|
'''
|
|
|
|
for plugin in plugins.get_enabled_plugins():
|
|
|
|
try:
|
2018-04-21 03:10:50 +00:00
|
|
|
call(plugins.get_plugin(plugin), event_name, data, get_pluginapi(onionr, data))
|
2018-04-22 00:37:20 +00:00
|
|
|
except ModuleNotFoundError as e:
|
2018-07-31 04:41:32 +00:00
|
|
|
logger.warn('Disabling nonexistant plugin "%s"...' % plugin)
|
2018-04-22 00:37:20 +00:00
|
|
|
plugins.disable(plugin, onionr, stop_event = False)
|
2018-04-21 03:10:50 +00:00
|
|
|
except Exception as e:
|
2018-07-31 04:41:32 +00:00
|
|
|
logger.warn('Event "%s" failed for plugin "%s".' % (event_name, plugin))
|
2018-04-21 03:10:50 +00:00
|
|
|
logger.debug(str(e))
|
2018-03-03 04:19:01 +00:00
|
|
|
|
2018-05-03 03:22:07 +00:00
|
|
|
|
|
|
|
def event(event_name, data = {}, onionr = None, threaded = True):
|
|
|
|
'''
|
|
|
|
Calls an event on all plugins (if defined)
|
|
|
|
'''
|
|
|
|
|
|
|
|
if threaded:
|
|
|
|
thread = Thread(target = __event_caller, args = (event_name, data, onionr))
|
|
|
|
thread.start()
|
|
|
|
return thread
|
|
|
|
else:
|
|
|
|
__event_caller(event_name, data, onionr)
|
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
def call(plugin, event_name, data = None, pluginapi = None):
|
2018-03-03 04:19:01 +00:00
|
|
|
'''
|
|
|
|
Calls an event on a plugin if one is defined
|
|
|
|
'''
|
|
|
|
|
|
|
|
if not plugin is None:
|
|
|
|
try:
|
|
|
|
attribute = 'on_' + str(event_name).lower()
|
|
|
|
|
|
|
|
# TODO: Use multithreading perhaps?
|
|
|
|
if hasattr(plugin, attribute):
|
2018-04-21 03:10:50 +00:00
|
|
|
#logger.debug('Calling event ' + str(event_name))
|
|
|
|
getattr(plugin, attribute)(pluginapi)
|
2018-03-03 04:19:01 +00:00
|
|
|
|
|
|
|
return True
|
2018-04-21 03:10:50 +00:00
|
|
|
except Exception as e:
|
|
|
|
logger.debug(str(e))
|
2018-03-03 04:19:01 +00:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|