*/ 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 $entity * @param string|null $action * @param array $options * * @return \Symfony\Component\Form\FormInterface */ 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; } }