Onionr/onionr/onionrpluginapi.py

192 lines
5.1 KiB
Python
Raw Normal View History

'''
2019-06-16 06:06:32 +00:00
Onionr - Private P2P Communication
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 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()
class PluginAPI:
2018-04-21 03:10:50 +00:00
def __init__(self, pluginapi):
self.pluginapi = pluginapi
def start(self, name):
onionrplugins.start(name)
2018-04-21 03:10:50 +00:00
def stop(self, name):
onionrplugins.stop(name)
2018-04-21 03:10:50 +00:00
def reload(self, name):
onionrplugins.reload(name)
2018-04-21 03:10:50 +00:00
def enable(self, name):
onionrplugins.enable(name)
2018-04-21 03:10:50 +00:00
def disable(self, name):
onionrplugins.disable(name)
2018-04-21 03:10:50 +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):
return onionrplugins.is_enabled(name)
2018-04-21 03:10:50 +00:00
def get_enabled_plugins(self):
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):
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):
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()
2018-07-30 00:37:12 +00:00
class WebAPI:
def __init__(self, pluginapi):
self.pluginapi = pluginapi
def register_callback(self, action, callback, scope = 'public'):
return self.pluginapi.get_onionr().api.setCallback(action, callback, scope = scope)
def unregister_callback(self, action, scope = 'public'):
return self.pluginapi.get_onionr().api.removeCallback(action, scope = scope)
def get_callback(self, action, scope = 'public'):
return self.pluginapi.get_onionr().api.getCallback(action, scope= scope)
def get_callbacks(self, scope = None):
return self.pluginapi.get_onionr().api.getCallbacks(scope = scope)
2018-04-21 03:10:50 +00:00
class pluginapi:
def __init__(self, onionr, data):
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
self.daemon = DaemonAPI(self)
2018-04-21 03:10:50 +00:00
self.plugins = PluginAPI(self)
self.commands = CommandAPI(self)
2018-07-30 00:37:12 +00:00
self.web = WebAPI(self)
2018-04-21 03:10:50 +00:00
def get_onionr(self):
return self.onionr
2018-04-21 03:10:50 +00:00
def get_data(self):
return self.data
def get_core(self):
2018-05-16 02:16:33 +00:00
return self.core
2018-04-21 03:10:50 +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
def get_daemonapi(self):
return self.daemon
2018-04-21 03:10:50 +00:00
def get_pluginapi(self):
2018-04-21 03:10:50 +00:00
return self.plugins
def get_commandapi(self):
2018-04-21 03:10:50 +00:00
return self.commands
2018-07-30 00:37:12 +00:00
def get_webapi(self):
return self.web
def is_development_mode(self):
return self.get_onionr()._developmentMode