Spaces:
No application file
No application file
File size: 5,796 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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
<?php
namespace Mautic\FormBundle\Model;
use Doctrine\ORM\EntityManager;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\UserHelper;
use Mautic\CoreBundle\Model\FormModel as CommonFormModel;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\CoreBundle\Translation\Translator;
use Mautic\FormBundle\Entity\Field;
use Mautic\FormBundle\Event\FormFieldEvent;
use Mautic\FormBundle\Form\Type\FieldType;
use Mautic\FormBundle\FormEvents;
use Mautic\LeadBundle\Model\FieldModel as LeadFieldModel;
use Psr\Log\LoggerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Contracts\EventDispatcher\Event;
/**
* @extends CommonFormModel<Field>
*/
class FieldModel extends CommonFormModel
{
public function __construct(
protected LeadFieldModel $leadFieldModel,
EntityManager $em,
CorePermissions $security,
EventDispatcherInterface $dispatcher,
UrlGeneratorInterface $router,
Translator $translator,
UserHelper $userHelper,
LoggerInterface $mauticLogger,
CoreParametersHelper $coreParametersHelper,
private RequestStack $requestStack
) {
parent::__construct($em, $security, $dispatcher, $router, $translator, $userHelper, $mauticLogger, $coreParametersHelper);
}
private function getSession(): SessionInterface
{
return $this->requestStack->getSession();
}
/**
* @param object|array<mixed> $entity
* @param string|null $action
* @param array $options
*
* @return \Symfony\Component\Form\FormInterface<mixed>
*/
public function createForm($entity, FormFactoryInterface $formFactory, $action = null, $options = []): \Symfony\Component\Form\FormInterface
{
if ($action) {
$options['action'] = $action;
}
return $formFactory->create(FieldType::class, $entity, $options);
}
/**
* @deprecated to be removed in Mautic 4. This method is not used anymore.
*
* @return array{mixed[], mixed[]}
*/
public function getObjectFields($object = 'lead'): array
{
$fields = $this->leadFieldModel->getFieldListWithProperties($object);
$choices = [];
foreach ($fields as $alias => $field) {
if (empty($field['isPublished'])) {
continue;
}
if (!isset($choices[$field['group_label']])) {
$choices[$field['group_label']] = [];
}
$choices[$field['group_label']][$field['label']] = $alias;
}
return [$fields, $choices];
}
/**
* @return \Mautic\FormBundle\Entity\FieldRepository
*/
public function getRepository()
{
return $this->em->getRepository(Field::class);
}
public function getPermissionBase(): string
{
return 'form:forms';
}
public function getEntity($id = null): ?Field
{
if (null === $id) {
return new Field();
}
return parent::getEntity($id);
}
/**
* Get the fields saved in session.
*/
public function getSessionFields($formId): array
{
$fields = $this->getSession()->get('mautic.form.'.$formId.'.fields.modified', []);
$remove = $this->getSession()->get('mautic.form.'.$formId.'.fields.deleted', []);
return array_diff_key($fields, array_flip($remove));
}
/**
* @param string[] $aliases
*/
public function generateAlias(string $label, array &$aliases): string
{
$alias = $this->cleanAlias($label, 'f_', 25);
// make sure alias is not already taken
$testAlias = $alias;
$count = (int) in_array($alias, $aliases);
$aliasTag = $count;
while ($count) {
$testAlias = $alias.$aliasTag;
$count = (int) in_array($testAlias, $aliases);
++$aliasTag;
}
// Prevent internally used identifiers in the form HTML from colliding with the generated field's ID
$internalUse = ['message', 'error', 'id', 'return', 'name', 'messenger'];
if (in_array($testAlias, $internalUse)) {
$testAlias = 'f_'.$testAlias;
}
$aliases[] = $testAlias;
return $testAlias;
}
/**
* @throws MethodNotAllowedHttpException
*/
protected function dispatchEvent($action, &$entity, $isNew = false, Event $event = null): ?Event
{
if (!$entity instanceof Field) {
throw new MethodNotAllowedHttpException(['Form']);
}
switch ($action) {
case 'pre_save':
$name = FormEvents::FIELD_PRE_SAVE;
break;
case 'post_save':
$name = FormEvents::FIELD_POST_SAVE;
break;
case 'pre_delete':
$name = FormEvents::FIELD_PRE_DELETE;
break;
case 'post_delete':
$name = FormEvents::FIELD_POST_DELETE;
break;
default:
return null;
}
if ($this->dispatcher->hasListeners($name)) {
if (empty($event)) {
$event = new FormFieldEvent($entity, $isNew);
}
$this->dispatcher->dispatch($event, $name);
return $event;
}
return null;
}
}
|