WIP: Symfony 6 project remake #2
|
@ -1,73 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace src\PointToolsBundle\Command;
|
||||
|
||||
use src\PointToolsBundle\Service\Telegram\MessageSender;
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\{InputArgument, InputInterface, InputOption};
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
use function Skobkin\Bundle\PointToolsBundle\Command\mb_strlen;
|
||||
use function Skobkin\Bundle\PointToolsBundle\Command\mb_substr;
|
||||
|
||||
class TelegramSendMessageCommand extends Command
|
||||
{
|
||||
/** @var MessageSender */
|
||||
private $messenger;
|
||||
|
||||
public function __construct(MessageSender $messenger)
|
||||
{
|
||||
$this->messenger = $messenger;
|
||||
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function configure()
|
||||
{
|
||||
$this
|
||||
->setName('telegram:send-message')
|
||||
->setDescription('Send message via Telegram')
|
||||
->addOption('chat-id', 'c', InputOption::VALUE_OPTIONAL, 'ID of the chat')
|
||||
->addOption('stdin', 'i', InputOption::VALUE_NONE, 'Read message from stdin instead of option')
|
||||
->addArgument('message', InputArgument::OPTIONAL, 'Text of the message')
|
||||
;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function execute(InputInterface $input, OutputInterface $output)
|
||||
{
|
||||
$output->writeln('Sending message...');
|
||||
|
||||
if ($input->getOption('stdin')) {
|
||||
$message = file_get_contents('php://stdin');
|
||||
} elseif (null !== $input->getArgument('message')) {
|
||||
$message = $input->getArgument('message');
|
||||
} else {
|
||||
$output->writeln('<error>Either \'--stdin\' option or \'message\' argument should be specified.</error>');
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (mb_strlen($message) > 4096) {
|
||||
$output->writeln('<comment>Message is too long (>4096). Cutting the tail...</comment>');
|
||||
$message = mb_substr($message, 0, 4090).PHP_EOL.'...';
|
||||
}
|
||||
|
||||
try {
|
||||
$this->messenger->sendMessageToChat(
|
||||
(int) $input->getOption('chat-id'),
|
||||
$message
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
$output->writeln('Error: '.$e->getMessage());
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
65
src/Command/TelegramSendMessageCommand.php
Normal file
65
src/Command/TelegramSendMessageCommand.php
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Command;
|
||||
|
||||
use App\Service\Telegram\MessageSender;
|
||||
use Symfony\Component\Console\Attribute\AsCommand;
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Input\InputOption;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
use Symfony\Component\Console\Style\SymfonyStyle;
|
||||
|
||||
#[AsCommand(name: 'telegram:send-message', description: 'Send message via Telegram')]
|
||||
class TelegramSendMessageCommand extends Command
|
||||
{
|
||||
public function __construct(
|
||||
private readonly MessageSender $messenger,
|
||||
) {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
protected function configure()
|
||||
{
|
||||
$this
|
||||
->addOption('chat-id', 'c', InputOption::VALUE_OPTIONAL, 'ID of the chat')
|
||||
->addOption('stdin', 'i', InputOption::VALUE_NONE, 'Read message from stdin instead of option')
|
||||
->addArgument('message', InputArgument::OPTIONAL, 'Text of the message')
|
||||
;
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int
|
||||
{
|
||||
$io = new SymfonyStyle($input, $output);
|
||||
|
||||
if ($input->getOption('stdin')) {
|
||||
$message = \file_get_contents('php://stdin');
|
||||
} elseif (null !== $input->getArgument('message')) {
|
||||
$message = $input->getArgument('message');
|
||||
} else {
|
||||
$io->error('Either \'--stdin\' option or \'message\' argument should be specified.')
|
||||
|
||||
return Command::FAILURE;
|
||||
}
|
||||
|
||||
if (mb_strlen($message) > 4096) {
|
||||
$io->comment('Message is too long (>4096). Cutting the tail...');
|
||||
$message = \mb_substr($message, 0, 4090) . PHP_EOL . '...';
|
||||
}
|
||||
|
||||
try {
|
||||
$this->messenger->sendMessageToChat(
|
||||
(int) $input->getOption('chat-id'),
|
||||
$message
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
$io->error($e->getMessage());
|
||||
|
||||
return Command::FAILURE;
|
||||
}
|
||||
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue