2018-04-21 01:20:26 +00:00
|
|
|
'''
|
|
|
|
Onionr - P2P Microblogging Platform & Social network
|
|
|
|
|
|
|
|
This file deals with the object that is passed with each event
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
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-05-16 02:16:33 +00:00
|
|
|
import onionrplugins, core as onionrcore, logger
|
2018-04-21 01:20:26 +00:00
|
|
|
|
2018-04-21 03:10:50 +00:00
|
|
|
class DaemonAPI:
|
|
|
|
def __init__(self, pluginapi):
|
|
|
|
self.pluginapi = pluginapi
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
self.pluginapi.get_onionr().daemon()
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
self.pluginapi.get_onionr().killDaemon()
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
def queue(self, command, data = ''):
|
|
|
|
self.pluginapi.get_core().daemonQueueAdd(command, data)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
def local_command(self, command):
|
2018-05-16 03:08:42 +00:00
|
|
|
return self.pluginapi.get_utils().localCommand(self, command)
|
2018-04-21 03:10:50 +00:00
|
|
|
|
|
|
|
def queue_pop(self):
|
|
|
|
return self.get_core().daemonQueue()
|
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
class PluginAPI:
|
2018-04-21 03:10:50 +00:00
|
|
|
def __init__(self, pluginapi):
|
|
|
|
self.pluginapi = pluginapi
|
|
|
|
|
|
|
|
def start(self, name):
|
2018-05-13 03:45:32 +00:00
|
|
|
onionrplugins.start(name)
|
2018-04-21 03:10:50 +00:00
|
|
|
|
|
|
|
def stop(self, name):
|
2018-05-13 03:45:32 +00:00
|
|
|
onionrplugins.stop(name)
|
2018-04-21 03:10:50 +00:00
|
|
|
|
|
|
|
def reload(self, name):
|
2018-05-13 03:45:32 +00:00
|
|
|
onionrplugins.reload(name)
|
2018-04-21 03:10:50 +00:00
|
|
|
|
|
|
|
def enable(self, name):
|
2018-05-13 03:45:32 +00:00
|
|
|
onionrplugins.enable(name)
|
2018-04-21 03:10:50 +00:00
|
|
|
|
|
|
|
def disable(self, name):
|
2018-05-13 03:45:32 +00:00
|
|
|
onionrplugins.disable(name)
|
2018-04-21 03:10:50 +00:00
|
|
|
|
2018-04-21 05:04:03 +00:00
|
|
|
def event(self, name, data = {}):
|
|
|
|
events.event(name, data = data, onionr = self.pluginapi.get_onionr())
|
|
|
|
|
2018-04-21 03:10:50 +00:00
|
|
|
def is_enabled(self, name):
|
2018-05-13 03:45:32 +00:00
|
|
|
return onionrplugins.is_enabled(name)
|
2018-04-21 03:10:50 +00:00
|
|
|
|
|
|
|
def get_enabled_plugins(self):
|
2018-05-13 03:45:32 +00:00
|
|
|
return onionrplugins.get_enabled()
|
2018-04-21 03:10:50 +00:00
|
|
|
|
2018-04-23 03:42:37 +00:00
|
|
|
def get_folder(self, name = None, absolute = True):
|
2018-05-13 03:45:32 +00:00
|
|
|
return onionrplugins.get_plugins_folder(name = name, absolute = absolute)
|
2018-04-23 03:42:37 +00:00
|
|
|
|
|
|
|
def get_data_folder(self, name, absolute = True):
|
2018-05-13 03:45:32 +00:00
|
|
|
return onionrplugins.get_plugin_data_folder(name, absolute = absolute)
|
2018-04-23 03:42:37 +00:00
|
|
|
|
|
|
|
def daemon_event(self, event, plugin = None):
|
|
|
|
return # later make local command like /client/?action=makeEvent&event=eventname&module=modulename
|
|
|
|
|
2018-04-21 03:10:50 +00:00
|
|
|
class CommandAPI:
|
|
|
|
def __init__(self, pluginapi):
|
|
|
|
self.pluginapi = pluginapi
|
|
|
|
|
|
|
|
def register(self, names, call = None):
|
|
|
|
if isinstance(names, str):
|
|
|
|
names = [names]
|
|
|
|
|
|
|
|
for name in names:
|
|
|
|
self.pluginapi.get_onionr().addCommand(name, call)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
def unregister(self, names):
|
|
|
|
if isinstance(names, str):
|
|
|
|
names = [names]
|
|
|
|
|
|
|
|
for name in names:
|
|
|
|
self.pluginapi.get_onionr().delCommand(name)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
def register_help(self, names, description):
|
|
|
|
if isinstance(names, str):
|
|
|
|
names = [names]
|
|
|
|
|
|
|
|
for name in names:
|
|
|
|
self.pluginapi.get_onionr().addHelp(name, description)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
def unregister_help(self, names):
|
|
|
|
if isinstance(names, str):
|
|
|
|
names = [names]
|
|
|
|
|
|
|
|
for name in names:
|
|
|
|
self.pluginapi.get_onionr().delHelp(name)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
def call(self, name):
|
|
|
|
self.pluginapi.get_onionr().execute(name)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
def get_commands(self):
|
|
|
|
return self.pluginapi.get_onionr().getCommands()
|
|
|
|
|
|
|
|
class pluginapi:
|
|
|
|
def __init__(self, onionr, data):
|
2018-04-21 01:20:26 +00:00
|
|
|
self.onionr = onionr
|
2018-04-21 03:10:50 +00:00
|
|
|
self.data = data
|
2018-05-16 02:16:33 +00:00
|
|
|
if self.onionr is None:
|
|
|
|
self.core = onionrcore.Core()
|
|
|
|
else:
|
|
|
|
self.core = self.onionr.onionrCore
|
2018-04-21 03:10:50 +00:00
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
self.daemon = DaemonAPI(self)
|
2018-04-21 03:10:50 +00:00
|
|
|
self.plugins = PluginAPI(self)
|
|
|
|
self.commands = CommandAPI(self)
|
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
def get_onionr(self):
|
|
|
|
return self.onionr
|
2018-04-21 03:10:50 +00:00
|
|
|
|
|
|
|
def get_data(self):
|
|
|
|
return self.data
|
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
def get_core(self):
|
2018-05-16 02:16:33 +00:00
|
|
|
return self.core
|
2018-04-21 03:10:50 +00:00
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
def get_utils(self):
|
2018-05-16 02:16:33 +00:00
|
|
|
return self.get_core()._utils
|
2018-04-21 03:10:50 +00:00
|
|
|
|
2018-05-13 06:37:47 +00:00
|
|
|
def get_crypto(self):
|
|
|
|
return self.get_core()._crypto
|
2018-05-13 03:45:32 +00:00
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
def get_daemonapi(self):
|
|
|
|
return self.daemon
|
2018-04-21 03:10:50 +00:00
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
def get_pluginapi(self):
|
2018-04-21 03:10:50 +00:00
|
|
|
return self.plugins
|
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
def get_commandapi(self):
|
2018-04-21 03:10:50 +00:00
|
|
|
return self.commands
|
|
|
|
|
2018-04-21 01:20:26 +00:00
|
|
|
def is_development_mode(self):
|
|
|
|
return self.get_onionr()._developmentMode
|