116 lines
3.0 KiB
Python
116 lines
3.0 KiB
Python
# This file is part of Gajim.
|
|
#
|
|
# Gajim 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; version 3 only.
|
|
#
|
|
# Gajim 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 Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import logging
|
|
from importlib import import_module
|
|
from pathlib import Path
|
|
from unittest.mock import MagicMock
|
|
|
|
log = logging.getLogger('gajim.c.m')
|
|
|
|
ZEROCONF_MODULES = ['adhoc_commands', 'receipts', 'discovery']
|
|
|
|
imported_modules = []
|
|
_modules = {}
|
|
|
|
for file in Path(__file__).parent.iterdir():
|
|
if file.stem == '__init__':
|
|
continue
|
|
|
|
module = import_module('.%s' % file.stem, package='gajim.common.modules')
|
|
if hasattr(module, 'get_instance'):
|
|
log.info('Load module: %s', file.stem)
|
|
if file.stem == 'pep':
|
|
# Register the PEP module first, because other modules
|
|
# depend on it
|
|
imported_modules.insert(0, (module, file.stem))
|
|
else:
|
|
imported_modules.append((module, file.stem))
|
|
|
|
|
|
class ModuleMock:
|
|
def __init__(self, name):
|
|
self._name = name
|
|
|
|
# HTTPUpload, ..
|
|
self.available = False
|
|
|
|
# Blocking
|
|
self.blocked = []
|
|
|
|
# Privacy Lists
|
|
self.blocked_contacts = []
|
|
self.blocked_groups = []
|
|
self.blocked_all = False
|
|
|
|
# Delimiter
|
|
self.delimiter = '::'
|
|
|
|
# Bookmarks
|
|
self.bookmarks = {}
|
|
|
|
# Various Modules
|
|
self.supported = False
|
|
|
|
def __getattr__(self, key):
|
|
return MagicMock()
|
|
|
|
|
|
def register(con, *args, **kwargs):
|
|
if con in _modules:
|
|
return
|
|
_modules[con.name] = {}
|
|
for module in imported_modules:
|
|
mod, name = module
|
|
if con.name == 'Local':
|
|
if name not in ZEROCONF_MODULES:
|
|
continue
|
|
instance, name = mod.get_instance(con, *args, **kwargs)
|
|
_modules[con.name][name] = instance
|
|
|
|
|
|
def register_single(con, instance, name):
|
|
if con.name not in _modules:
|
|
raise ValueError('Unknown account name: %s' % con.name)
|
|
_modules[con.name][name] = instance
|
|
|
|
|
|
def unregister(con):
|
|
for instance in _modules[con.name].values():
|
|
if hasattr(instance, 'cleanup'):
|
|
instance.cleanup()
|
|
del _modules[con.name]
|
|
|
|
|
|
def unregister_single(con, name):
|
|
if con.name not in _modules:
|
|
return
|
|
if name not in _modules[con.name]:
|
|
return
|
|
del _modules[con.name][name]
|
|
|
|
|
|
def get(account, name):
|
|
try:
|
|
return _modules[account][name]
|
|
except KeyError:
|
|
return ModuleMock(name)
|
|
|
|
|
|
def get_handlers(con):
|
|
handlers = []
|
|
for module in _modules[con.name].values():
|
|
handlers += module.handlers
|
|
return handlers
|