Spaces:
No application file
No application file
File size: 3,626 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 |
<?php
declare(strict_types=1);
namespace Mautic\LeadBundle\Field;
use Doctrine\DBAL\Exception\DriverException;
use Doctrine\DBAL\Schema\SchemaException;
use Mautic\LeadBundle\Exception\NoListenerException;
use Mautic\LeadBundle\Field\Dispatcher\FieldColumnBackgroundJobDispatcher;
use Mautic\LeadBundle\Field\Exception\AbortColumnCreateException;
use Mautic\LeadBundle\Field\Exception\AbortColumnUpdateException;
use Mautic\LeadBundle\Field\Exception\ColumnAlreadyCreatedException;
use Mautic\LeadBundle\Field\Exception\CustomFieldLimitException;
use Mautic\LeadBundle\Field\Exception\LeadFieldWasNotFoundException;
use Mautic\LeadBundle\Field\Notification\CustomFieldNotification;
use Mautic\LeadBundle\Model\FieldModel;
class BackgroundService
{
public function __construct(
private FieldModel $fieldModel,
private CustomFieldColumn $customFieldColumn,
private LeadFieldSaver $leadFieldSaver,
private FieldColumnBackgroundJobDispatcher $fieldColumnBackgroundJobDispatcher,
private CustomFieldNotification $customFieldNotification
) {
}
/**
* @throws AbortColumnCreateException
* @throws ColumnAlreadyCreatedException
* @throws CustomFieldLimitException
* @throws LeadFieldWasNotFoundException
* @throws \Doctrine\DBAL\Exception
* @throws DriverException
* @throws SchemaException
* @throws \Mautic\CoreBundle\Exception\SchemaException
*/
public function addColumn(int $leadFieldId, ?int $userId): void
{
$leadField = $this->fieldModel->getEntity($leadFieldId);
if (null === $leadField) {
throw new LeadFieldWasNotFoundException('LeadField entity was not found');
}
if (!$leadField->getColumnIsNotCreated()) {
$this->customFieldNotification->customFieldWasCreated($leadField, $userId);
throw new ColumnAlreadyCreatedException('Column was already created');
}
try {
$this->fieldColumnBackgroundJobDispatcher->dispatchPreAddColumnEvent($leadField);
} catch (NoListenerException $e) {
}
try {
$this->customFieldColumn->processCreateLeadColumn($leadField, false);
} catch (DriverException|SchemaException|\Mautic\CoreBundle\Exception\SchemaException $e) {
$this->customFieldNotification->customFieldCannotBeCreated($leadField, $userId);
throw $e;
} catch (CustomFieldLimitException $e) {
$this->customFieldNotification->customFieldLimitWasHit($leadField, $userId);
throw $e;
}
$leadField->setColumnWasCreated();
$this->leadFieldSaver->saveLeadFieldEntity($leadField, false);
$this->customFieldNotification->customFieldWasCreated($leadField, $userId);
}
/**
* @throws AbortColumnUpdateException
* @throws DriverException
* @throws LeadFieldWasNotFoundException
* @throws SchemaException
* @throws \Mautic\CoreBundle\Exception\SchemaException
*/
public function updateColumn(int $leadFieldId, int $userId): void
{
$leadField = $this->fieldModel->getEntity($leadFieldId);
if (null === $leadField) {
throw new LeadFieldWasNotFoundException('LeadField entity was not found');
}
try {
$this->fieldColumnBackgroundJobDispatcher->dispatchPreUpdateColumnEvent($leadField);
} catch (NoListenerException) {
}
$this->customFieldColumn->processUpdateLeadColumn($leadField);
$this->customFieldNotification->customFieldWasUpdated($leadField, $userId);
}
}
|