Spaces:
No application file
No application file
File size: 5,755 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
<?php
namespace Mautic\ChannelBundle\Command;
use Mautic\ChannelBundle\ChannelEvents;
use Mautic\ChannelBundle\Event\ChannelBroadcastEvent;
use Mautic\CoreBundle\Command\ModeratedCommand;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\PathsHelper;
use Symfony\Component\Console\Helper\Table;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
/**
* CLI Command to send a scheduled broadcast.
*/
class SendChannelBroadcastCommand extends ModeratedCommand
{
public function __construct(
private TranslatorInterface $translator,
private EventDispatcherInterface $dispatcher,
PathsHelper $pathsHelper,
CoreParametersHelper $coreParametersHelper
) {
parent::__construct($pathsHelper, $coreParametersHelper);
}
protected function configure()
{
$this->setName('mautic:broadcasts:send')
->setHelp(
<<<'EOT'
The <info>%command.name%</info> command is send a channel broadcast to pending contacts.
<info>php %command.full_name% --channel=email --id=3</info>
EOT
)
->setDefinition(
[
new InputOption(
'channel', 'c', InputOption::VALUE_OPTIONAL,
'A specific channel to process broadcasts for pending contacts.'
),
new InputOption(
'id', 'i', InputOption::VALUE_OPTIONAL,
'The ID for a specifc channel to process broadcasts for pending contacts.'
),
new InputOption(
'min-contact-id', null, InputOption::VALUE_OPTIONAL,
'Min contact ID to filter recipients.'
),
new InputOption(
'max-contact-id', null, InputOption::VALUE_OPTIONAL,
'Max contact ID to filter recipients.'
),
new InputOption(
'limit', 'l', InputOption::VALUE_OPTIONAL,
'Limit how many contacts to load from database to process.'
),
new InputOption(
'batch', 'b', InputOption::VALUE_OPTIONAL,
'Limit how many messages to send at once.'
),
]
)->addOption(
'--thread-id',
null,
InputOption::VALUE_OPTIONAL,
'The number of this current process if running multiple in parallel.'
)
->addOption(
'--max-threads',
null,
InputOption::VALUE_OPTIONAL,
'The maximum number of processes you intend to run in parallel.'
);
parent::configure();
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$channel = $input->getOption('channel');
$channelId = $input->getOption('id');
$limit = $input->getOption('limit');
$batch = $input->getOption('batch');
$minContactId = $input->getOption('min-contact-id');
$maxContactId = $input->getOption('max-contact-id');
$threadId = $input->getOption('thread-id');
$maxThreads = $input->getOption('max-threads');
$key = sprintf('%s-%s-%s-%s', $channel, $channelId, $threadId, $maxThreads);
if ($threadId && $maxThreads) {
if ((int) $threadId > (int) $maxThreads) {
$output->writeln('--thread-id cannot be larger than --max-thread');
return \Symfony\Component\Console\Command\Command::FAILURE;
}
}
if (!$this->checkRunStatus($input, $output, $key)) {
return \Symfony\Component\Console\Command\Command::SUCCESS;
}
$event = new ChannelBroadcastEvent($channel, $channelId, $output);
if ($limit) {
$event->setLimit((int) $limit);
}
if ($batch) {
$event->setBatch((int) $batch);
}
if ($minContactId) {
$event->setMinContactIdFilter((int) $minContactId);
}
if ($maxContactId) {
$event->setMaxContactIdFilter((int) $maxContactId);
}
if ($threadId) {
$event->setThreadId((int) $threadId);
}
if ($maxThreads) {
$event->setMaxThreads((int) $maxThreads);
}
$this->dispatcher->dispatch($event, ChannelEvents::CHANNEL_BROADCAST);
$results = $event->getResults();
$rows = [];
foreach ($results as $channel => $counts) {
$rows[] = [$channel, $counts['success'], $counts['failed']];
}
// Put a blank line after anything the event spits out
$output->writeln('');
$output->writeln('');
$table = new Table($output);
$table
->setHeaders([$this->translator->trans('mautic.core.channel'), $this->translator->trans('mautic.core.channel.broadcast_success_count'), $this->translator->trans('mautic.core.channel.broadcast_failed_count')])
->setRows($rows);
$table->render();
$this->completeRun();
return \Symfony\Component\Console\Command\Command::SUCCESS;
}
protected static $defaultDescription = 'Process contacts pending to receive a channel broadcast.';
}
|