setName('mautic:integration:pushleadactivity')
->setAliases(
[
'mautic:integration:pushactivity',
]
)
->addOption(
'--integration',
'-i',
InputOption::VALUE_REQUIRED,
'Integration name. Integration must be enabled and authorised.',
null
)
->addOption('--start-date', '-d', InputOption::VALUE_REQUIRED, 'Set start date for updated values.')
->addOption(
'--end-date',
'-t',
InputOption::VALUE_REQUIRED,
'Set end date for updated values.'
)
->addOption(
'--time-interval',
'-a',
InputOption::VALUE_OPTIONAL,
'Send time interval to check updates on Salesforce, it should be a correct php formatted time interval in the past eg:(-10 minutes)'
)
->addOption('--force', '-f', InputOption::VALUE_NONE, 'Force execution even if another process is assumed running.');
parent::configure();
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$integration = $input->getOption('integration');
$startDate = $input->getOption('start-date');
$endDate = $input->getOption('end-date');
$interval = $input->getOption('time-interval');
if (!$interval) {
$interval = '15 minutes';
}
if (!$startDate) {
$startDate = date('c', strtotime('-'.$interval));
}
if (!$endDate) {
$endDate = date('c');
}
if ($integration) {
$integrationObject = $this->integrationHelper->getIntegrationObject($integration);
if (null !== $integrationObject && method_exists($integrationObject, 'pushLeadActivity')) {
$output->writeln(''.$this->translator->trans('mautic.plugin.command.push.leads.activity', ['%integration%' => $integration]).'');
$params['start'] = $startDate;
$params['end'] = $endDate;
$processed = intval($integrationObject->pushLeadActivity($params));
$output->writeln(''.$this->translator->trans('mautic.plugin.command.push.leads.events_executed', ['%events%' => $processed]).''."\n");
}
}
return Command::SUCCESS;
}
protected static $defaultDescription = 'Push lead activity to integration.';
}