Onionr/onionr/onionrpluginapi.py

81 lines
2.3 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/>.
'''
2019-07-20 15:52:03 +00:00
import onionrplugins, logger
from onionrutils import localcommand
2019-07-17 22:41:33 +00:00
from coredb import daemonqueue
2018-04-21 03:10:50 +00:00
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 = {}):
2019-08-05 04:08:56 +00:00
events.event(name, data = data)
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 call(self, name):
self.pluginapi.get_onionr().execute(name)
class SharedAPI:
2019-08-05 00:34:57 +00:00
def __init__(self, data):
2018-04-21 03:10:50 +00:00
self.data = data
self.plugins = PluginAPI(self)
def get_data(self):
return self.data
def get_daemonapi(self):
return self.daemon
2018-04-21 03:10:50 +00:00
def get_pluginapi(self):
2019-08-05 04:08:56 +00:00
return self.plugins