├── .dockerignore ├── .gitignore ├── CODEOWNERS ├── Dockerfile ├── LICENSE.md ├── README.md ├── docker_start └── start.sh ├── generate_session.py ├── installer.ps1 ├── installer.sh ├── recovery.py ├── requirements.txt ├── setup.py ├── update_secure_cfg.py └── userbot ├── __init__.py ├── __main__.py ├── _core ├── __init__.py ├── access_controller.py ├── client.py └── module_loader.py ├── include ├── __init__.py ├── aux_funcs.py ├── git_api.py ├── language_processor.py └── pip_utils.py ├── modules ├── README.md ├── __init__.py ├── _feature_manager.py ├── _modules_utils.py ├── _package_manager.py ├── _systools.py ├── _updater.py ├── admin.py ├── chatinfo.py ├── deletions.py ├── github.py ├── memberinfo.py ├── messages.py ├── misc.py ├── scrappers.py ├── sideloader.py ├── terminal.py ├── user.py └── webtools.py ├── modules_user ├── README.md └── __init__.py ├── sample_config.env ├── sample_config.ini ├── sample_config.py ├── sysutils ├── __init__.py ├── _services.py ├── colors.py ├── config_loader.py ├── configuration.py ├── errors.py ├── event_handler.py ├── feature_manager.py ├── getpass.py ├── logger.py ├── package_manager.py ├── properties.py ├── registration.py └── sys_funcs.py ├── translations ├── __init__.py ├── de.py ├── en.py ├── pl.py └── pt.py └── version.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Project owners 2 | * @nunopenim @prototype74 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/README.md -------------------------------------------------------------------------------- /docker_start/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/docker_start/start.sh -------------------------------------------------------------------------------- /generate_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/generate_session.py -------------------------------------------------------------------------------- /installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/installer.ps1 -------------------------------------------------------------------------------- /installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/installer.sh -------------------------------------------------------------------------------- /recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/recovery.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/setup.py -------------------------------------------------------------------------------- /update_secure_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/update_secure_cfg.py -------------------------------------------------------------------------------- /userbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/__init__.py -------------------------------------------------------------------------------- /userbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/__main__.py -------------------------------------------------------------------------------- /userbot/_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/_core/__init__.py -------------------------------------------------------------------------------- /userbot/_core/access_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/_core/access_controller.py -------------------------------------------------------------------------------- /userbot/_core/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/_core/client.py -------------------------------------------------------------------------------- /userbot/_core/module_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/_core/module_loader.py -------------------------------------------------------------------------------- /userbot/include/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/include/__init__.py -------------------------------------------------------------------------------- /userbot/include/aux_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/include/aux_funcs.py -------------------------------------------------------------------------------- /userbot/include/git_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/include/git_api.py -------------------------------------------------------------------------------- /userbot/include/language_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/include/language_processor.py -------------------------------------------------------------------------------- /userbot/include/pip_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/include/pip_utils.py -------------------------------------------------------------------------------- /userbot/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/README.md -------------------------------------------------------------------------------- /userbot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/__init__.py -------------------------------------------------------------------------------- /userbot/modules/_feature_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/_feature_manager.py -------------------------------------------------------------------------------- /userbot/modules/_modules_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/_modules_utils.py -------------------------------------------------------------------------------- /userbot/modules/_package_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/_package_manager.py -------------------------------------------------------------------------------- /userbot/modules/_systools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/_systools.py -------------------------------------------------------------------------------- /userbot/modules/_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/_updater.py -------------------------------------------------------------------------------- /userbot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/admin.py -------------------------------------------------------------------------------- /userbot/modules/chatinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/chatinfo.py -------------------------------------------------------------------------------- /userbot/modules/deletions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/deletions.py -------------------------------------------------------------------------------- /userbot/modules/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/github.py -------------------------------------------------------------------------------- /userbot/modules/memberinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/memberinfo.py -------------------------------------------------------------------------------- /userbot/modules/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/messages.py -------------------------------------------------------------------------------- /userbot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/misc.py -------------------------------------------------------------------------------- /userbot/modules/scrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/scrappers.py -------------------------------------------------------------------------------- /userbot/modules/sideloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/sideloader.py -------------------------------------------------------------------------------- /userbot/modules/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/terminal.py -------------------------------------------------------------------------------- /userbot/modules/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/user.py -------------------------------------------------------------------------------- /userbot/modules/webtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules/webtools.py -------------------------------------------------------------------------------- /userbot/modules_user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules_user/README.md -------------------------------------------------------------------------------- /userbot/modules_user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/modules_user/__init__.py -------------------------------------------------------------------------------- /userbot/sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sample_config.env -------------------------------------------------------------------------------- /userbot/sample_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sample_config.ini -------------------------------------------------------------------------------- /userbot/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sample_config.py -------------------------------------------------------------------------------- /userbot/sysutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/__init__.py -------------------------------------------------------------------------------- /userbot/sysutils/_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/_services.py -------------------------------------------------------------------------------- /userbot/sysutils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/colors.py -------------------------------------------------------------------------------- /userbot/sysutils/config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/config_loader.py -------------------------------------------------------------------------------- /userbot/sysutils/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/configuration.py -------------------------------------------------------------------------------- /userbot/sysutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/errors.py -------------------------------------------------------------------------------- /userbot/sysutils/event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/event_handler.py -------------------------------------------------------------------------------- /userbot/sysutils/feature_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/feature_manager.py -------------------------------------------------------------------------------- /userbot/sysutils/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/getpass.py -------------------------------------------------------------------------------- /userbot/sysutils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/logger.py -------------------------------------------------------------------------------- /userbot/sysutils/package_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/package_manager.py -------------------------------------------------------------------------------- /userbot/sysutils/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/properties.py -------------------------------------------------------------------------------- /userbot/sysutils/registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/registration.py -------------------------------------------------------------------------------- /userbot/sysutils/sys_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/sysutils/sys_funcs.py -------------------------------------------------------------------------------- /userbot/translations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/translations/__init__.py -------------------------------------------------------------------------------- /userbot/translations/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/translations/de.py -------------------------------------------------------------------------------- /userbot/translations/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/translations/en.py -------------------------------------------------------------------------------- /userbot/translations/pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/translations/pl.py -------------------------------------------------------------------------------- /userbot/translations/pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/translations/pt.py -------------------------------------------------------------------------------- /userbot/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prototype74/HyperUBot/HEAD/userbot/version.py --------------------------------------------------------------------------------