├── .gitignore ├── LICENSE ├── README.md ├── VagrantProvisionScripts ├── base.sh ├── nginx-telegram.conf ├── php-fpm-telegram.conf ├── phpfpm-access-to-shared-folder.te ├── phpfpm-access-to-write-logs.te └── userrights.sql ├── Vagrantfile ├── bin ├── README.md ├── composer-update.sh ├── create-db-schema.sh └── run-tests.sh ├── cli-config.php ├── composer.json ├── composer.lock ├── conf.php-sample ├── config ├── config.development.yml ├── config.main.yml └── config.test.yml ├── media ├── add-alert-contact-full.png ├── add-alert-contact.png ├── add-monitor-full.png ├── add-monitor.png ├── my-settings.png └── notifications-preview.png ├── phpunit.xml.dist ├── public └── index.php ├── src ├── Bots │ ├── Base.php │ ├── Interfaces │ │ ├── Bots.php │ │ └── UptimeMonitorSetupSteps.php │ ├── TheTimeBot.php │ ├── UptimeMonitor │ │ ├── Common.php │ │ ├── EventManager.php │ │ ├── RegenerateNotifyURL │ │ │ ├── Cancel.php │ │ │ ├── Confirmation.php │ │ │ └── Regenerate.php │ │ └── Setup │ │ │ ├── Step1.php │ │ │ ├── Step2.php │ │ │ └── Step3.php │ ├── unreal4uBot.php │ ├── unreal4uTestBot.php │ └── uptimeMonitorBot.php ├── DatabaseWrapper.php ├── Exceptions │ ├── ChatIsBlacklisted.php │ ├── Database │ │ ├── DriverAlreadyDefined.php │ │ └── DriverNotFound.php │ ├── EntityManagerRequired.php │ ├── InvalidCallbackContents.php │ ├── InvalidRequest.php │ ├── InvalidSetupRequest.php │ ├── InvalidTimezoneId.php │ ├── InvalidUpdateObject.php │ └── MissingNotifyUrl.php ├── Models │ ├── Base.php │ ├── Configuration.php │ ├── Entities │ │ ├── Events.php │ │ └── Monitors.php │ └── Toolbox.php ├── RequestHandler.php └── common.php ├── telegramApiLogs └── .gitignore └── tests ├── Bots ├── BaseTest.php ├── TheTimeBotTest.php ├── UptimeMonitorBotTest.php └── unreal4uBotTest.php ├── Mock └── BaseMock.php ├── bootstrap.php └── commandEmulator └── Bots ├── Base └── start.json ├── TheTimeBot ├── geonames │ ├── eindhoven-manyResults.json │ ├── eindhoven-timezone.json │ ├── getCustomLocation.json │ ├── getOneResult.json │ ├── noresults.json │ ├── search-citySantiago.json │ ├── search-countryAR.json │ └── timezone-countrySelectionAR.json ├── get-city.json ├── get_time_for_timezone-AmericaSantiago.json ├── getme.json ├── start.json ├── typing-accepted.json ├── update-AmericaSantiago.json ├── update-cityOneResult.json ├── update-countrySelectionAR.json ├── update-deleteBotFromGroup.json ├── update-getCountry.json ├── update-invalid-command.json ├── update-invalidBotCommand.json └── update-sendLocation.json ├── UptimeMonitorBot ├── getme.json ├── setup-group.json ├── setup-step1.json ├── setup-step2.json ├── start.json ├── update-invalid-command.json ├── update-left-chat-member-not-bot.json ├── update-left-chat-member.json ├── update-new-chat-member-not-bot.json └── update-new-chat-member.json └── unreal4uBot └── start.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/README.md -------------------------------------------------------------------------------- /VagrantProvisionScripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/VagrantProvisionScripts/base.sh -------------------------------------------------------------------------------- /VagrantProvisionScripts/nginx-telegram.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/VagrantProvisionScripts/nginx-telegram.conf -------------------------------------------------------------------------------- /VagrantProvisionScripts/php-fpm-telegram.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/VagrantProvisionScripts/php-fpm-telegram.conf -------------------------------------------------------------------------------- /VagrantProvisionScripts/phpfpm-access-to-shared-folder.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/VagrantProvisionScripts/phpfpm-access-to-shared-folder.te -------------------------------------------------------------------------------- /VagrantProvisionScripts/phpfpm-access-to-write-logs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/VagrantProvisionScripts/phpfpm-access-to-write-logs.te -------------------------------------------------------------------------------- /VagrantProvisionScripts/userrights.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/VagrantProvisionScripts/userrights.sql -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/composer-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/bin/composer-update.sh -------------------------------------------------------------------------------- /bin/create-db-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/bin/create-db-schema.sh -------------------------------------------------------------------------------- /bin/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/bin/run-tests.sh -------------------------------------------------------------------------------- /cli-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/cli-config.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/composer.lock -------------------------------------------------------------------------------- /conf.php-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/conf.php-sample -------------------------------------------------------------------------------- /config/config.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/config/config.development.yml -------------------------------------------------------------------------------- /config/config.main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/config/config.main.yml -------------------------------------------------------------------------------- /config/config.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/config/config.test.yml -------------------------------------------------------------------------------- /media/add-alert-contact-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/media/add-alert-contact-full.png -------------------------------------------------------------------------------- /media/add-alert-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/media/add-alert-contact.png -------------------------------------------------------------------------------- /media/add-monitor-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/media/add-monitor-full.png -------------------------------------------------------------------------------- /media/add-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/media/add-monitor.png -------------------------------------------------------------------------------- /media/my-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/media/my-settings.png -------------------------------------------------------------------------------- /media/notifications-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/media/notifications-preview.png -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/public/index.php -------------------------------------------------------------------------------- /src/Bots/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/Base.php -------------------------------------------------------------------------------- /src/Bots/Interfaces/Bots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/Interfaces/Bots.php -------------------------------------------------------------------------------- /src/Bots/Interfaces/UptimeMonitorSetupSteps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/Interfaces/UptimeMonitorSetupSteps.php -------------------------------------------------------------------------------- /src/Bots/TheTimeBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/TheTimeBot.php -------------------------------------------------------------------------------- /src/Bots/UptimeMonitor/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/UptimeMonitor/Common.php -------------------------------------------------------------------------------- /src/Bots/UptimeMonitor/EventManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/UptimeMonitor/EventManager.php -------------------------------------------------------------------------------- /src/Bots/UptimeMonitor/RegenerateNotifyURL/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/UptimeMonitor/RegenerateNotifyURL/Cancel.php -------------------------------------------------------------------------------- /src/Bots/UptimeMonitor/RegenerateNotifyURL/Confirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/UptimeMonitor/RegenerateNotifyURL/Confirmation.php -------------------------------------------------------------------------------- /src/Bots/UptimeMonitor/RegenerateNotifyURL/Regenerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/UptimeMonitor/RegenerateNotifyURL/Regenerate.php -------------------------------------------------------------------------------- /src/Bots/UptimeMonitor/Setup/Step1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/UptimeMonitor/Setup/Step1.php -------------------------------------------------------------------------------- /src/Bots/UptimeMonitor/Setup/Step2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/UptimeMonitor/Setup/Step2.php -------------------------------------------------------------------------------- /src/Bots/UptimeMonitor/Setup/Step3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/UptimeMonitor/Setup/Step3.php -------------------------------------------------------------------------------- /src/Bots/unreal4uBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/unreal4uBot.php -------------------------------------------------------------------------------- /src/Bots/unreal4uTestBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/unreal4uTestBot.php -------------------------------------------------------------------------------- /src/Bots/uptimeMonitorBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Bots/uptimeMonitorBot.php -------------------------------------------------------------------------------- /src/DatabaseWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/DatabaseWrapper.php -------------------------------------------------------------------------------- /src/Exceptions/ChatIsBlacklisted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/ChatIsBlacklisted.php -------------------------------------------------------------------------------- /src/Exceptions/Database/DriverAlreadyDefined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/Database/DriverAlreadyDefined.php -------------------------------------------------------------------------------- /src/Exceptions/Database/DriverNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/Database/DriverNotFound.php -------------------------------------------------------------------------------- /src/Exceptions/EntityManagerRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/EntityManagerRequired.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidCallbackContents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/InvalidCallbackContents.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/InvalidRequest.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidSetupRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/InvalidSetupRequest.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidTimezoneId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/InvalidTimezoneId.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidUpdateObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/InvalidUpdateObject.php -------------------------------------------------------------------------------- /src/Exceptions/MissingNotifyUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Exceptions/MissingNotifyUrl.php -------------------------------------------------------------------------------- /src/Models/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Models/Base.php -------------------------------------------------------------------------------- /src/Models/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Models/Configuration.php -------------------------------------------------------------------------------- /src/Models/Entities/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Models/Entities/Events.php -------------------------------------------------------------------------------- /src/Models/Entities/Monitors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Models/Entities/Monitors.php -------------------------------------------------------------------------------- /src/Models/Toolbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/Models/Toolbox.php -------------------------------------------------------------------------------- /src/RequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/RequestHandler.php -------------------------------------------------------------------------------- /src/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/src/common.php -------------------------------------------------------------------------------- /telegramApiLogs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Bots/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/Bots/BaseTest.php -------------------------------------------------------------------------------- /tests/Bots/TheTimeBotTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/Bots/TheTimeBotTest.php -------------------------------------------------------------------------------- /tests/Bots/UptimeMonitorBotTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/Bots/UptimeMonitorBotTest.php -------------------------------------------------------------------------------- /tests/Bots/unreal4uBotTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/Bots/unreal4uBotTest.php -------------------------------------------------------------------------------- /tests/Mock/BaseMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/Mock/BaseMock.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/Base/start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/Base/start.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/geonames/eindhoven-manyResults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/geonames/eindhoven-manyResults.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/geonames/eindhoven-timezone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/geonames/eindhoven-timezone.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/geonames/getCustomLocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/geonames/getCustomLocation.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/geonames/getOneResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/geonames/getOneResult.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/geonames/noresults.json: -------------------------------------------------------------------------------- 1 | {"totalResultsCount":0,"geonames":[]} 2 | -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/geonames/search-citySantiago.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/geonames/search-citySantiago.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/geonames/search-countryAR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/geonames/search-countryAR.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/geonames/timezone-countrySelectionAR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/geonames/timezone-countrySelectionAR.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/get-city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/get-city.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/get_time_for_timezone-AmericaSantiago.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/get_time_for_timezone-AmericaSantiago.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/getme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/getme.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/start.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/typing-accepted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/typing-accepted.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/update-AmericaSantiago.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/update-AmericaSantiago.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/update-cityOneResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/update-cityOneResult.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/update-countrySelectionAR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/update-countrySelectionAR.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/update-deleteBotFromGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/update-deleteBotFromGroup.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/update-getCountry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/update-getCountry.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/update-invalid-command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/update-invalid-command.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/update-invalidBotCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/update-invalidBotCommand.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/TheTimeBot/update-sendLocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/TheTimeBot/update-sendLocation.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/getme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/getme.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/setup-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/setup-group.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/setup-step1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/setup-step1.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/setup-step2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/setup-step2.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/start.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/update-invalid-command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/update-invalid-command.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/update-left-chat-member-not-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/update-left-chat-member-not-bot.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/update-left-chat-member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/update-left-chat-member.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/update-new-chat-member-not-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/update-new-chat-member-not-bot.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/UptimeMonitorBot/update-new-chat-member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/UptimeMonitorBot/update-new-chat-member.json -------------------------------------------------------------------------------- /tests/commandEmulator/Bots/unreal4uBot/start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreal4u/telegram-bots/HEAD/tests/commandEmulator/Bots/unreal4uBot/start.json --------------------------------------------------------------------------------