Mercurial > libervia-backend
changeset 2105:c96fe007ca41
core(constants): added a constant for profile extension (PLUGIN_EXT):
this constant may be modified if needed, which is the case on Android (it's modified by Cagou service's main.py), so platform detection is not needed anymore in sat_main.py.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 25 Dec 2016 16:43:56 +0100 |
parents | 4f189bd1d9ed |
children | 5874da3811b7 |
files | src/core/constants.py src/core/sat_main.py |
diffstat | 2 files changed, 8 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/src/core/constants.py Sat Dec 24 14:08:21 2016 +0100 +++ b/src/core/constants.py Sun Dec 25 16:43:56 2016 +0100 @@ -35,11 +35,14 @@ APP_URL = u'http://salut-a-toi.org' - # Main config ## + ## Runtime ## + PLUGIN_EXT = "py" + + ## Main config ## DEFAULT_BRIDGE = 'dbus' - # Protocol + ## Protocol ## XMPP_C2S_PORT = 5222 XMPP_KEEP_ALIFE = 180 XMPP_MAX_RETRIES = 2
--- a/src/core/sat_main.py Sat Dec 24 14:08:21 2016 +0100 +++ b/src/core/sat_main.py Sun Dec 25 16:43:56 2016 +0100 @@ -35,6 +35,7 @@ from sat.tools import utils from sat.tools.common import dynamic_import from sat.stdui import ui_contact_list, ui_profile_manager +import sat.plugins from glob import glob from uuid import uuid4 import sys @@ -154,15 +155,8 @@ def _import_plugins(self): """Import all plugins found in plugins directory""" - if sys.platform == "android": - # FIXME: android hack to load plugins from proper path - # TODO: move this in a separate module and/or use sat.conf to specify path - plugins_path = "/data/data/org.goffi.cagou.cagou/files/sat/plugins" - plugin_glob = "plugin*.pyo" - else: - import sat.plugins - plugins_path = os.path.dirname(sat.plugins.__file__) - plugin_glob = "plugin*.py" + plugins_path = os.path.dirname(sat.plugins.__file__) + plugin_glob = "plugin*." + C.PLUGIN_EXT plug_lst = [os.path.splitext(plugin)[0] for plugin in map(os.path.basename, glob(os.path.join(plugins_path, plugin_glob)))] plugins_to_import = {} # plugins we still have to import for plug in plug_lst: