2018-07-07 13:52:44 +02:00
|
|
|
# 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/>.
|
|
|
|
|
2018-09-13 23:56:12 +02:00
|
|
|
from typing import Any
|
|
|
|
from typing import Dict # pylint: disable=unused-import
|
|
|
|
from typing import List
|
|
|
|
from typing import Tuple
|
|
|
|
|
2018-07-07 13:52:44 +02:00
|
|
|
import logging
|
|
|
|
from importlib import import_module
|
|
|
|
from pathlib import Path
|
2018-07-26 00:12:04 +02:00
|
|
|
from unittest.mock import MagicMock
|
2018-07-07 13:52:44 +02:00
|
|
|
|
2018-09-13 23:56:12 +02:00
|
|
|
from gajim.common.types import ConnectionT
|
|
|
|
|
2018-07-07 13:52:44 +02:00
|
|
|
log = logging.getLogger('gajim.c.m')
|
|
|
|
|
2018-12-23 22:33:10 +01:00
|
|
|
ZEROCONF_MODULES = ['adhoc_commands',
|
|
|
|
'receipts',
|
|
|
|
'discovery',
|
|
|
|
'chatstates']
|
2018-07-08 18:37:53 +02:00
|
|
|
|
2018-09-11 20:00:34 +02:00
|
|
|
_imported_modules = [] # type: List[tuple]
|
2018-09-11 00:16:46 +02:00
|
|
|
_modules = {} # type: Dict[str, Dict[str, Any]]
|
2018-07-07 13:52:44 +02:00
|
|
|
|
|
|
|
for file in Path(__file__).parent.iterdir():
|
|
|
|
if file.stem == '__init__':
|
|
|
|
continue
|
|
|
|
|
2018-09-11 20:00:34 +02:00
|
|
|
_module = import_module('.%s' % file.stem, package='gajim.common.modules')
|
|
|
|
if hasattr(_module, 'get_instance'):
|
2018-07-07 13:52:44 +02:00
|
|
|
log.info('Load module: %s', file.stem)
|
2018-07-08 17:06:12 +02:00
|
|
|
if file.stem == 'pep':
|
|
|
|
# Register the PEP module first, because other modules
|
|
|
|
# depend on it
|
2018-09-11 20:00:34 +02:00
|
|
|
_imported_modules.insert(0, (_module, file.stem))
|
2018-07-08 17:06:12 +02:00
|
|
|
else:
|
2018-09-11 20:00:34 +02:00
|
|
|
_imported_modules.append((_module, file.stem))
|
2018-07-07 13:52:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ModuleMock:
|
2018-09-11 00:16:46 +02:00
|
|
|
def __init__(self, name: str) -> None:
|
2018-07-08 18:37:53 +02:00
|
|
|
self._name = name
|
|
|
|
|
2018-07-27 15:46:02 +02:00
|
|
|
# HTTPUpload, ..
|
2018-07-08 18:37:53 +02:00
|
|
|
self.available = False
|
|
|
|
|
|
|
|
# Blocking
|
2018-09-11 00:16:46 +02:00
|
|
|
self.blocked = [] # type: List[Any]
|
2018-07-08 18:37:53 +02:00
|
|
|
|
|
|
|
# Privacy Lists
|
2018-09-11 00:16:46 +02:00
|
|
|
self.blocked_contacts = [] # type: List[Any]
|
|
|
|
self.blocked_groups = [] # type: List[Any]
|
2018-07-08 18:37:53 +02:00
|
|
|
self.blocked_all = False
|
|
|
|
|
2018-07-27 15:46:02 +02:00
|
|
|
# Delimiter
|
|
|
|
self.delimiter = '::'
|
|
|
|
|
2018-07-20 23:17:05 +02:00
|
|
|
# Bookmarks
|
2018-09-11 00:16:46 +02:00
|
|
|
self.bookmarks = {} # type: Dict[Any, Any]
|
2018-07-20 23:17:05 +02:00
|
|
|
|
2018-07-22 12:18:24 +02:00
|
|
|
# Various Modules
|
|
|
|
self.supported = False
|
|
|
|
|
2018-09-11 00:16:46 +02:00
|
|
|
def __getattr__(self, key: str) -> MagicMock:
|
2018-07-26 00:12:04 +02:00
|
|
|
return MagicMock()
|
2018-07-07 13:52:44 +02:00
|
|
|
|
|
|
|
|
2018-09-13 23:56:12 +02:00
|
|
|
def register(con: ConnectionT, *args: Any, **kwargs: Any) -> None:
|
2018-07-07 13:52:44 +02:00
|
|
|
if con in _modules:
|
|
|
|
return
|
|
|
|
_modules[con.name] = {}
|
2018-09-11 20:00:34 +02:00
|
|
|
for module in _imported_modules:
|
2018-07-08 18:37:53 +02:00
|
|
|
mod, name = module
|
|
|
|
if con.name == 'Local':
|
|
|
|
if name not in ZEROCONF_MODULES:
|
|
|
|
continue
|
|
|
|
instance, name = mod.get_instance(con, *args, **kwargs)
|
2018-07-07 13:52:44 +02:00
|
|
|
_modules[con.name][name] = instance
|
|
|
|
|
|
|
|
|
2018-09-13 23:56:12 +02:00
|
|
|
def register_single(con: ConnectionT, instance: Any, name: str) -> None:
|
2018-08-24 21:39:03 +02:00
|
|
|
if con.name not in _modules:
|
|
|
|
raise ValueError('Unknown account name: %s' % con.name)
|
|
|
|
_modules[con.name][name] = instance
|
|
|
|
|
|
|
|
|
2018-09-13 23:56:12 +02:00
|
|
|
def unregister(con: ConnectionT) -> None:
|
2018-08-24 21:39:03 +02:00
|
|
|
for instance in _modules[con.name].values():
|
|
|
|
if hasattr(instance, 'cleanup'):
|
|
|
|
instance.cleanup()
|
2018-07-07 13:52:44 +02:00
|
|
|
del _modules[con.name]
|
|
|
|
|
|
|
|
|
2018-09-13 23:56:12 +02:00
|
|
|
def unregister_single(con: ConnectionT, name: str) -> None:
|
2018-08-24 21:39:03 +02:00
|
|
|
if con.name not in _modules:
|
|
|
|
return
|
|
|
|
if name not in _modules[con.name]:
|
|
|
|
return
|
|
|
|
del _modules[con.name][name]
|
|
|
|
|
|
|
|
|
2018-09-11 00:16:46 +02:00
|
|
|
def get(account: str, name: str) -> Any:
|
2018-07-07 13:52:44 +02:00
|
|
|
try:
|
|
|
|
return _modules[account][name]
|
|
|
|
except KeyError:
|
2018-07-08 18:37:53 +02:00
|
|
|
return ModuleMock(name)
|
2018-07-07 13:52:44 +02:00
|
|
|
|
|
|
|
|
2018-09-13 23:56:12 +02:00
|
|
|
def get_handlers(con: ConnectionT) -> List[Tuple[Any, ...]]:
|
|
|
|
handlers = [] # type: List[Tuple[Any, ...]]
|
2018-07-07 13:52:44 +02:00
|
|
|
for module in _modules[con.name].values():
|
|
|
|
handlers += module.handlers
|
|
|
|
return handlers
|