You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
<?php
|
|
|
|
/**
|
|
* This file is part of the PHP Telegram Bot example-bot package.
|
|
* https://github.com/php-telegram-bot/example-bot/
|
|
*
|
|
* (c) PHP Telegram Bot Team
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Longman\TelegramBot\Commands\SystemCommands;
|
|
|
|
use Longman\TelegramBot\Commands\SystemCommand;
|
|
use Longman\TelegramBot\Entities\ServerResponse;
|
|
use Longman\TelegramBot\Exception\TelegramException;
|
|
|
|
/**
|
|
* Generic command
|
|
*
|
|
* Gets executed for generic commands, when no other appropriate one is found.
|
|
*/
|
|
class GenericCommand extends SystemCommand
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $name = 'generic';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $description = 'Handles generic commands or is executed by default when a command is not found';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $version = '1.1.0';
|
|
|
|
/**
|
|
* Main command execution
|
|
*
|
|
* @return ServerResponse
|
|
* @throws TelegramException
|
|
*/
|
|
public function execute(): ServerResponse
|
|
{
|
|
$message = $this->getMessage();
|
|
$user_id = $message->getFrom()->getId();
|
|
$command = $message->getCommand();
|
|
|
|
// To enable proper use of the /whois command.
|
|
// If the user is an admin and the command is in the format "/whoisXYZ", call the /whois command
|
|
if (stripos($command, 'whois') === 0 && $this->telegram->isAdmin($user_id)) {
|
|
return $this->telegram->executeCommand('whois');
|
|
}
|
|
|
|
return $this->replyToChat("Command /{$command} not found.. :(");
|
|
}
|
|
}
|