Spaces:
No application file
No application file
File size: 32,702 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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 |
<?php
namespace Mautic\LeadBundle\Model;
use Doctrine\DBAL\Exception\DriverException;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\Tools\Pagination\Paginator;
use Mautic\CoreBundle\Cache\ResultCacheOptions;
use Mautic\CoreBundle\Doctrine\Helper\ColumnSchemaHelper;
use Mautic\CoreBundle\Doctrine\Paginator\SimplePaginator;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\InputHelper;
use Mautic\CoreBundle\Helper\UserHelper;
use Mautic\CoreBundle\Model\FormModel;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\CoreBundle\Translation\Translator;
use Mautic\LeadBundle\Entity\Lead;
use Mautic\LeadBundle\Entity\LeadField;
use Mautic\LeadBundle\Entity\LeadFieldRepository;
use Mautic\LeadBundle\Entity\LeadRepository;
use Mautic\LeadBundle\Event\LeadFieldEvent;
use Mautic\LeadBundle\Exception\NoListenerException;
use Mautic\LeadBundle\Field\CustomFieldColumn;
use Mautic\LeadBundle\Field\Dispatcher\FieldSaveDispatcher;
use Mautic\LeadBundle\Field\Exception\AbortColumnCreateException;
use Mautic\LeadBundle\Field\Exception\AbortColumnUpdateException;
use Mautic\LeadBundle\Field\Exception\CustomFieldLimitException;
use Mautic\LeadBundle\Field\FieldList;
use Mautic\LeadBundle\Field\FieldsWithUniqueIdentifier;
use Mautic\LeadBundle\Field\LeadFieldSaver;
use Mautic\LeadBundle\Field\SchemaDefinition;
use Mautic\LeadBundle\Form\Type\FieldType;
use Mautic\LeadBundle\Helper\FormFieldHelper;
use Mautic\LeadBundle\LeadEvents;
use Psr\Log\LoggerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Contracts\EventDispatcher\Event;
/**
* @extends FormModel<LeadField>
*/
class FieldModel extends FormModel
{
public static $coreFields = [
// Listed according to $order for installation
'title' => [
'type' => 'lookup',
'properties' => [
'list' => [
'Mr',
'Mrs',
'Miss',
],
],
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'firstname' => [
'fixed' => true,
'short' => true,
'listable' => true,
'object' => 'lead',
],
'lastname' => [
'fixed' => true,
'short' => true,
'listable' => true,
'object' => 'lead',
],
'company' => [
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'position' => [
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'email' => [
'type' => 'email',
'unique' => true,
'fixed' => true,
'short' => true,
'listable' => true,
'object' => 'lead',
],
'mobile' => [
'type' => 'tel',
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'phone' => [
'type' => 'tel',
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'points' => [
'type' => 'number',
'fixed' => true,
'listable' => true,
'object' => 'lead',
'default' => 0,
],
'fax' => [
'type' => 'tel',
'listable' => true,
'object' => 'lead',
],
'address1' => [
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'address2' => [
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'city' => [
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'state' => [
'type' => 'region',
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'zipcode' => [
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'country' => [
'type' => 'country',
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'preferred_locale' => [
'type' => 'locale',
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'timezone' => [
'type' => 'timezone',
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'last_active' => [
'type' => 'datetime',
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'attribution_date' => [
'type' => 'datetime',
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'attribution' => [
'type' => 'number',
'properties' => ['roundmode' => 4, 'scale' => 2],
'fixed' => true,
'listable' => true,
'object' => 'lead',
],
'website' => [
'type' => 'url',
'listable' => true,
'object' => 'lead',
],
'facebook' => [
'listable' => true,
'group' => 'social',
'object' => 'lead',
],
'foursquare' => [
'listable' => true,
'group' => 'social',
'object' => 'lead',
],
'instagram' => [
'listable' => true,
'group' => 'social',
'object' => 'lead',
],
'linkedin' => [
'listable' => true,
'group' => 'social',
'object' => 'lead',
],
'skype' => [
'listable' => true,
'group' => 'social',
'object' => 'lead',
],
'twitter' => [
'listable' => true,
'group' => 'social',
'object' => 'lead',
],
];
public static $coreCompanyFields = [
// Listed according to $order for installation
'companyaddress1' => [
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companyaddress2' => [
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companyemail' => [
'type' => 'email',
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companyphone' => [
'type' => 'tel',
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companycity' => [
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companystate' => [
'type' => 'region',
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companyzipcode' => [
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companycountry' => [
'type' => 'country',
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companyname' => [
'fixed' => true,
'required' => true,
'listable' => true,
'unique' => true,
'object' => 'company',
],
'companywebsite' => [
'fixed' => true,
'type' => 'url',
'listable' => true,
'object' => 'company',
],
'companynumber_of_employees' => [
'type' => 'number',
'properties' => ['roundmode' => 4, 'scale' => 0],
'group' => 'professional',
'listable' => true,
'object' => 'company',
],
'companyfax' => [
'type' => 'tel',
'listable' => true,
'group' => 'professional',
'object' => 'company',
],
'companyannual_revenue' => [
'type' => 'number',
'properties' => ['roundmode' => 4, 'scale' => 2],
'listable' => true,
'group' => 'professional',
'object' => 'company',
],
'companyindustry' => [
'type' => 'select',
'group' => 'professional',
'properties' => [
'list' => [
[
'label' => 'Aerospace & Defense',
'value' => 'Aerospace & Defense',
],
[
'label' => 'Agriculture',
'value' => 'Agriculture',
],
[
'label' => 'Apparel',
'value' => 'Apparel',
],
[
'label' => 'Automotive & Assembly',
'value' => 'Automotive & Assembly',
],
[
'label' => 'Banking',
'value' => 'Banking',
],
[
'label' => 'Biotechnology',
'value' => 'Biotechnology',
],
[
'label' => 'Chemicals',
'value' => 'Chemicals',
],
[
'label' => 'Communications',
'value' => 'Communications',
],
[
'label' => 'Construction',
'value' => 'Construction',
],
[
'label' => 'Consumer Packaged Goods',
'value' => 'Consumer Packaged Goods',
],
[
'label' => 'Education',
'value' => 'Education',
],
[
'label' => 'Electronics',
'value' => 'Electronics',
],
[
'label' => 'Energy',
'value' => 'Energy',
],
[
'label' => 'Engineering',
'value' => 'Engineering',
],
[
'label' => 'Entertainment',
'value' => 'Entertainment',
],
[
'label' => 'Environmental',
'value' => 'Environmental',
],
[
'label' => 'Finance',
'value' => 'Finance',
],
[
'label' => 'Food & Beverage',
'value' => 'Food & Beverage',
],
[
'label' => 'Government',
'value' => 'Government',
],
[
'label' => 'Healthcare',
'value' => 'Healthcare',
],
[
'label' => 'Hospitality',
'value' => 'Hospitality',
],
[
'label' => 'Insurance',
'value' => 'Insurance',
],
[
'label' => 'Machinery',
'value' => 'Machinery',
],
[
'label' => 'Manufacturing',
'value' => 'Manufacturing',
],
[
'label' => 'Media',
'value' => 'Media',
],
[
'label' => 'Metals & Mining',
'value' => 'Metals & Mining',
],
[
'label' => 'Not for Profit',
'value' => 'Not for Profit',
],
[
'label' => 'Oil & Gas',
'value' => 'Oil & Gas',
],
[
'label' => 'Packaging & Paper',
'value' => 'Packaging & Paper',
],
[
'label' => 'Private Equity & Principal Investors',
'value' => 'Private Equity & Principal Investors',
],
[
'label' => 'Recreation',
'value' => 'Recreation',
],
[
'label' => 'Real Estate',
'value' => 'Real Estate',
],
[
'label' => 'Retail',
'value' => 'Retail',
],
[
'label' => 'Semiconductors',
'value' => 'Semiconductors',
],
[
'label' => 'Shipping',
'value' => 'Shipping',
],
[
'label' => 'Social Sector',
'value' => 'Social Sector',
],
[
'label' => 'Technology',
'value' => 'Technology',
],
[
'label' => 'Telecommunications',
'value' => 'Telecommunications',
],
[
'label' => 'Transportation',
'value' => 'Transportation',
],
[
'label' => 'Utilities',
'value' => 'Utilities',
],
[
'label' => 'Other',
'value' => 'Other',
],
],
],
'fixed' => true,
'listable' => true,
'object' => 'company',
],
'companydescription' => [
'fixed' => true,
'group' => 'professional',
'listable' => true,
'object' => 'company',
],
];
public function __construct(
private ColumnSchemaHelper $columnSchemaHelper,
private ListModel $leadListModel,
private CustomFieldColumn $customFieldColumn,
private FieldSaveDispatcher $fieldSaveDispatcher,
private LeadFieldRepository $leadFieldRepository,
private FieldsWithUniqueIdentifier $fieldsWithUniqueIdentifier,
private FieldList $fieldList,
private LeadFieldSaver $leadFieldSaver,
EntityManagerInterface $em,
CorePermissions $security,
EventDispatcherInterface $dispatcher,
UrlGeneratorInterface $router,
Translator $translator,
UserHelper $userHelper,
LoggerInterface $mauticLogger,
CoreParametersHelper $coreParametersHelper
) {
parent::__construct($em, $security, $dispatcher, $router, $translator, $userHelper, $mauticLogger, $coreParametersHelper);
}
public function getRepository(): LeadFieldRepository
{
return $this->leadFieldRepository;
}
public function getPermissionBase(): string
{
return 'lead:fields';
}
/**
* Get a specific entity or generate a new one if id is empty.
*/
public function getEntity($id = null): ?LeadField
{
if (null === $id) {
return new LeadField();
}
return parent::getEntity($id);
}
/**
* @return LeadField[]|array<int,mixed>|iterable<LeadField>|\Doctrine\ORM\Internal\Hydration\IterableResult<LeadField>|Paginator<LeadField>|SimplePaginator<LeadField>
*/
public function getEntities(array $args = [])
{
$repository = $this->em->getRepository(LeadField::class);
\assert($repository instanceof LeadFieldRepository);
return $repository->getEntities($args);
}
/**
* @return array
*/
public function getLeadFields()
{
return $this->getEntities([
'filter' => [
'force' => [
[
'column' => 'f.object',
'expr' => 'like',
'value' => 'lead',
],
],
],
]);
}
/**
* @return LeadField[]
*/
public function getLeadFieldCustomFields(): array
{
$forceFilter = [
[
'column' => $this->getRepository()->getTableAlias().'.object',
'expr' => 'like',
'value' => 'lead',
],
[
'column' => $this->getRepository()->getTableAlias().'.dateAdded',
'expr' => 'isNotNull',
],
];
return $this->getEntities([
'filter' => [
'force' => $forceFilter,
],
'ignore_paginator' => true,
]);
}
/**
* @return mixed[]
*/
public function getLeadFieldCustomFieldSchemaDetails(): array
{
$fields = $this->getLeadFieldCustomFields();
$columns = $this->columnSchemaHelper->setName('leads')->getColumns();
$schemaDetails = [];
foreach ($fields as $value) {
if (!empty($columns[$value->getAlias()])) {
$schemaDetails[$value->getAlias()] = $columns[$value->getAlias()];
}
}
return $schemaDetails;
}
/**
* @return array
*/
public function getCompanyFields()
{
return $this->getEntities([
'filter' => [
'force' => [
[
'column' => 'f.object',
'expr' => 'like',
'value' => 'company',
],
],
],
]);
}
/**
* @param LeadField $entity
* @param bool $unlock
*
* @throws AbortColumnCreateException
* @throws AbortColumnUpdateException
* @throws \Doctrine\DBAL\Exception
* @throws DriverException
* @throws \Doctrine\DBAL\Schema\SchemaException
* @throws \Mautic\CoreBundle\Exception\SchemaException
*/
public function saveEntity($entity, $unlock = true): void
{
if (!$entity instanceof LeadField) {
throw new MethodNotAllowedHttpException(['LeadEntity']);
}
$this->setTimestamps($entity, $entity->isNew(), $unlock);
if ('time' === $entity->getType()) {
// time does not work well with list filters
$entity->setIsListable(false);
}
// Save the entity now if it's an existing entity
if (!$entity->isNew()) {
$this->leadFieldSaver->saveLeadFieldEntity($entity, false);
}
try {
$this->customFieldColumn->createLeadColumn($entity);
} catch (CustomFieldLimitException $e) {
// Convert to original Exception not to cause BC
throw new \Doctrine\DBAL\Exception($this->translator->trans($e->getMessage()));
}
// Update order of the other fields.
$this->reorderFieldsByEntity($entity);
}
/**
* Build schema for each entity.
*
* @param array $entities
* @param bool $unlock
*
* @throws AbortColumnCreateException
* @throws \Doctrine\DBAL\Exception
* @throws DriverException
* @throws \Doctrine\DBAL\Schema\SchemaException
* @throws \Mautic\CoreBundle\Exception\SchemaException
*/
public function saveEntities($entities, $unlock = true): void
{
foreach ($entities as $entity) {
$this->saveEntity($entity, $unlock);
}
}
/**
* @param object $entity
*
* @throws \Mautic\CoreBundle\Exception\SchemaException
*/
public function deleteEntity($entity): void
{
parent::deleteEntity($entity);
switch ($entity->getObject()) {
case 'lead':
$this->columnSchemaHelper->setName('leads')->dropColumn($entity->getAlias())->executeChanges();
break;
case 'company':
$this->columnSchemaHelper->setName('companies')->dropColumn($entity->getAlias())->executeChanges();
break;
}
}
/**
* Delete an array of entities.
*
* @param mixed[] $ids
*
* @return mixed[]
*
* @throws \Mautic\CoreBundle\Exception\SchemaException
*/
public function deleteEntities($ids): array
{
$entities = parent::deleteEntities($ids);
/** @var LeadField $entity */
foreach ($entities as $entity) {
switch ($entity->getObject()) {
case 'lead':
$this->columnSchemaHelper->setName('leads')->dropColumn($entity->getAlias())->executeChanges();
break;
case 'company':
$this->columnSchemaHelper->setName('companies')->dropColumn($entity->getAlias())->executeChanges();
break;
}
}
return $entities;
}
/**
* Is field used in segment filter?
*/
public function isUsedField(LeadField $field): bool
{
return $this->leadListModel->isFieldUsed($field);
}
/**
* Returns list of all segments that use $field.
*
* @return Paginator
*/
public function getFieldSegments(LeadField $field)
{
return $this->leadListModel->getFieldSegments($field);
}
/**
* Filter used field ids.
*/
public function filterUsedFieldIds(array $ids): array
{
return array_filter($ids, fn ($id): bool => false === $this->isUsedField($this->getEntity($id)));
}
/**
* Reorder fields based on passed entity position.
*/
public function reorderFieldsByEntity($entity): void
{
if (!$entity instanceof LeadField) {
throw new MethodNotAllowedHttpException(['LeadEntity']);
}
$fields = $this->getRepository()->findBy([], ['order' => 'ASC']);
$count = 1;
$order = $entity->getOrder();
$id = $entity->getId();
$hit = false;
foreach ($fields as $field) {
if ($id !== $field->getId()) {
if ($order === $field->getOrder()) {
if ($hit) {
$field->setOrder($count - 1);
} else {
$field->setOrder($count + 1);
}
} else {
$field->setOrder($count);
}
$this->em->persist($field);
} else {
$hit = true;
}
++$count;
}
$this->em->flush();
}
/**
* Reorders fields by a list of field ids.
*
* @param int $start Number to start the order by (used for paginated reordering)
*/
public function reorderFieldsByList(array $list, $start = 1): void
{
$fields = $this->getRepository()->findBy([], ['order' => 'ASC']);
foreach ($fields as $field) {
if (in_array($field->getId(), $list)) {
$order = ((int) array_search($field->getId(), $list) + $start);
$field->setOrder($order);
$this->em->persist($field);
}
}
$this->em->flush();
}
/**
* Get list of custom field values for autopopulate fields.
*
* @param string $type
* @param string $filter
* @param int $limit
*
* @return array
*/
public function getLookupResults($type, $filter = '', $limit = 10)
{
/** @var LeadRepository $contactRepository */
$contactRepository = $this->em->getRepository(Lead::class);
return $contactRepository->getValueList($type, $filter, $limit);
}
/**
* @param array $options
*
* @throws MethodNotAllowedHttpException
*/
public function createForm($entity, FormFactoryInterface $formFactory, $action = null, $options = []): FormInterface
{
if (!$entity instanceof LeadField) {
throw new MethodNotAllowedHttpException(['LeadField']);
}
if (!empty($action)) {
$options['action'] = $action;
}
return $formFactory->create(FieldType::class, $entity, $options);
}
/**
* @return string|true
*/
public function setFieldProperties(LeadField $entity, array $properties)
{
if (!empty($properties) && is_array($properties)) {
$properties = InputHelper::clean($properties);
} else {
$properties = [];
}
// validate properties
$type = $entity->getType();
$result = FormFieldHelper::validateProperties($type, $properties);
if ($result[0]) {
$entity->setProperties($properties);
return true;
}
return $result[1];
}
/**
* @throws MethodNotAllowedHttpException
*/
protected function dispatchEvent($action, &$entity, $isNew = false, ?Event $event = null): ?Event
{
switch ($action) {
case 'pre_save':
$action = LeadEvents::FIELD_PRE_SAVE;
break;
case 'post_save':
$action = LeadEvents::FIELD_POST_SAVE;
break;
case 'pre_delete':
$action = LeadEvents::FIELD_PRE_DELETE;
break;
case 'post_delete':
$action = LeadEvents::FIELD_POST_DELETE;
break;
}
if (!$entity instanceof LeadField) {
throw new MethodNotAllowedHttpException(['LeadField']);
}
if (null !== $event && !$event instanceof LeadFieldEvent) {
throw new \RuntimeException('Event should be LeadFieldEvent|null.');
}
try {
return $this->fieldSaveDispatcher->dispatchEvent($action, $entity, $isNew, $event);
} catch (NoListenerException) {
return $event;
}
}
/**
* @deprecated Use FieldList::getFieldList method instead
*
* @param bool|true $byGroup
* @param bool|true $alphabetical
* @param array $filters
*
* @return mixed[]
*/
public function getFieldList($byGroup = true, $alphabetical = true, $filters = ['isPublished' => true, 'object' => 'lead']): array
{
return $this->fieldList->getFieldList($byGroup, $alphabetical, $filters);
}
/**
* @param string $object
*
* @return array
*/
public function getPublishedFieldArrays($object = 'lead')
{
return $this->getEntities(
[
'filter' => [
'force' => [
[
'column' => 'f.isPublished',
'expr' => 'eq',
'value' => true,
],
[
'column' => 'f.object',
'expr' => 'eq',
'value' => $object,
],
],
],
'hydration_mode' => 'HYDRATE_ARRAY',
'result_cache' => new ResultCacheOptions(LeadField::CACHE_NAMESPACE),
]
);
}
/**
* @param string $object
*/
public function getFieldListWithProperties($object = 'lead'): array
{
$forceFilters[] = [
'column' => 'f.object',
'expr' => 'eq',
'value' => $object,
];
$contactFields = $this->getEntities(
[
'filter' => [
'force' => $forceFilters,
],
'ignore_paginator' => true,
'hydration_mode' => 'hydrate_array',
]
);
$fields = [];
foreach ($contactFields as $contactField) {
$fields[$contactField['alias']] = [
'label' => $contactField['label'],
'alias' => $contactField['alias'],
'type' => $contactField['type'],
'group' => $contactField['group'],
'group_label' => $this->translator->trans('mautic.lead.field.group.'.$contactField['group']),
'defaultValue' => $contactField['defaultValue'],
'properties' => $contactField['properties'],
'isPublished' => $contactField['isPublished'],
];
}
return $fields;
}
/**
* Get the fields for a specific group.
*
* @param array $filters
*/
public function getGroupFields($group, $filters = ['isPublished' => true]): array
{
$forceFilters = [
[
'column' => 'f.group',
'expr' => 'eq',
'value' => $group,
],
];
foreach ($filters as $col => $val) {
$forceFilters[] = [
'column' => "f.{$col}",
'expr' => 'eq',
'value' => $val,
];
}
// Get a list of custom form fields
$fields = $this->getEntities([
'filter' => [
'force' => $forceFilters,
],
'orderBy' => 'f.order',
'orderByDir' => 'asc',
]);
$leadFields = [];
foreach ($fields as $f) {
$leadFields[$f->getAlias()] = $f->getLabel();
}
return $leadFields;
}
/**
* Retrieves a list of published fields that are unique identifers.
*
* @deprecated to be removed in 3.0
*
* @return array<mixed>
*/
public function getUniqueIdentiferFields($filters = []): array
{
return $this->getUniqueIdentifierFields($filters);
}
/**
* Retrieves a list of published fields that are unique identifers.
*
* @deprecated Use FieldsWithUniqueIdentifier::getFieldsWithUniqueIdentifier method instead
*
* @param array<mixed> $filters
*
* @return array<mixed>
*/
public function getUniqueIdentifierFields(array $filters = []): array
{
return $this->fieldsWithUniqueIdentifier->getFieldsWithUniqueIdentifier($filters);
}
/**
* Get the MySQL database type based on the field type
* Use a static function so that it's accessible from DoctrineSubscriber
* without causing a circular service injection error.
*
* @deprecated Use SchemaDefinition::getSchemaDefinition method instead
*
* @param bool $isUnique
*/
public static function getSchemaDefinition($alias, $type, $isUnique = false): array
{
return SchemaDefinition::getSchemaDefinition($alias, $type, $isUnique);
}
public function getEntityByAlias($alias, $categoryAlias = null, $lang = null)
{
return $this->getRepository()->findOneByAlias($alias);
}
}
|