Spaces:
No application file
No application file
File size: 31,996 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 |
<?php
namespace Mautic\LeadBundle\Model;
use Doctrine\DBAL\Query\Expression\ExpressionBuilder;
use Doctrine\ORM\EntityManager;
use Mautic\CoreBundle\Cache\ResultCacheOptions;
use Mautic\CoreBundle\Form\RequestTrait;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\DateTimeHelper;
use Mautic\CoreBundle\Helper\InputHelper;
use Mautic\CoreBundle\Helper\UserHelper;
use Mautic\CoreBundle\Model\AjaxLookupModelInterface;
use Mautic\CoreBundle\Model\FormModel as CommonFormModel;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\CoreBundle\Translation\Translator;
use Mautic\EmailBundle\Helper\EmailValidator;
use Mautic\LeadBundle\Deduplicate\CompanyDeduper;
use Mautic\LeadBundle\Entity\Company;
use Mautic\LeadBundle\Entity\CompanyLead;
use Mautic\LeadBundle\Entity\CompanyRepository;
use Mautic\LeadBundle\Entity\Lead;
use Mautic\LeadBundle\Entity\LeadField;
use Mautic\LeadBundle\Entity\LeadRepository;
use Mautic\LeadBundle\Event\CompanyEvent;
use Mautic\LeadBundle\Event\CompanyMergeEvent;
use Mautic\LeadBundle\Event\LeadChangeCompanyEvent;
use Mautic\LeadBundle\Exception\UniqueFieldNotFoundException;
use Mautic\LeadBundle\Form\Type\CompanyType;
use Mautic\LeadBundle\LeadEvents;
use Psr\Log\LoggerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Contracts\EventDispatcher\Event;
/**
* @extends CommonFormModel<Company>
*
* @implements AjaxLookupModelInterface<Company>
*/
class CompanyModel extends CommonFormModel implements AjaxLookupModelInterface
{
use DefaultValueTrait;
use RequestTrait;
/**
* @var FieldModel
*/
protected $leadFieldModel;
/**
* @var array
*/
protected $companyFields;
/**
* @var array
*/
private $fields = [];
private bool $repoSetup = false;
public function __construct(
FieldModel $leadFieldModel,
protected EmailValidator $emailValidator,
protected CompanyDeduper $companyDeduper,
EntityManager $em,
CorePermissions $security,
EventDispatcherInterface $dispatcher,
UrlGeneratorInterface $router,
Translator $translator,
UserHelper $userHelper,
LoggerInterface $mauticLogger,
CoreParametersHelper $coreParametersHelper
) {
$this->leadFieldModel = $leadFieldModel;
parent::__construct($em, $security, $dispatcher, $router, $translator, $userHelper, $mauticLogger, $coreParametersHelper);
}
/**
* @param Company $entity
* @param bool $unlock
*/
public function saveEntity($entity, $unlock = true): void
{
// Update leads primary company name
$this->setEntityDefaultValues($entity, 'company');
$this->getCompanyLeadRepository()->updateLeadsPrimaryCompanyName($entity);
parent::saveEntity($entity, $unlock);
}
/**
* Save an array of entities.
*
* @param array $entities
* @param bool $unlock
*/
public function saveEntities($entities, $unlock = true): void
{
// Update leads primary company name
foreach ($entities as $entity) {
$this->setEntityDefaultValues($entity, 'company');
$this->getCompanyLeadRepository()->updateLeadsPrimaryCompanyName($entity);
}
parent::saveEntities($entities, $unlock);
}
public function getRepository(): CompanyRepository
{
$repo = $this->em->getRepository(Company::class);
if (!$this->repoSetup) {
$this->repoSetup = true;
$repo->setDispatcher($this->dispatcher);
// set the point trigger model in order to get the color code for the lead
$fields = $this->leadFieldModel->getFieldList(true, true, ['isPublished' => true, 'object' => 'company']);
$searchFields = [];
foreach ($fields as $groupFields) {
$searchFields = array_merge($searchFields, array_keys($groupFields));
}
$repo->setAvailableSearchFields($searchFields);
}
return $repo;
}
/**
* @return \Mautic\LeadBundle\Entity\CompanyLeadRepository
*/
public function getCompanyLeadRepository()
{
return $this->em->getRepository(CompanyLead::class);
}
public function getPermissionBase(): string
{
// We are using lead:leads in the CompanyController so this should match to prevent a BC break
return 'lead:leads';
}
public function getNameGetter(): string
{
return 'getPrimaryIdentifier';
}
/**
* @throws MethodNotAllowedHttpException
*/
public function createForm($entity, FormFactoryInterface $formFactory, $action = null, $options = []): \Symfony\Component\Form\FormInterface
{
if (!$entity instanceof Company) {
throw new MethodNotAllowedHttpException(['Company']);
}
if (!empty($action)) {
$options['action'] = $action;
}
return $formFactory->create(CompanyType::class, $entity, $options);
}
public function getEntity($id = null): ?Company
{
if (null === $id) {
return new Company();
}
return parent::getEntity($id);
}
/**
* @return mixed
*/
public function getUserCompanies()
{
$user = (!$this->security->isGranted('lead:leads:viewother')) ?
$this->userHelper->getUser() : false;
return $this->em->getRepository(Company::class)->getCompanies($user);
}
/**
* Reorganizes a field list to be keyed by field's group then alias.
*/
public function organizeFieldsByGroup($fields): array
{
$array = [];
foreach ($fields as $field) {
if ($field instanceof LeadField) {
$alias = $field->getAlias();
if ('company' === $field->getObject()) {
$group = $field->getGroup();
$array[$group][$alias]['id'] = $field->getId();
$array[$group][$alias]['group'] = $group;
$array[$group][$alias]['label'] = $field->getLabel();
$array[$group][$alias]['alias'] = $alias;
$array[$group][$alias]['type'] = $field->getType();
}
} else {
$alias = $field['alias'];
$field[] = $alias;
if ('company' === $field['object']) {
$group = $field['group'];
$array[$group][$alias]['id'] = $field['id'];
$array[$group][$alias]['group'] = $group;
$array[$group][$alias]['label'] = $field['label'];
$array[$group][$alias]['alias'] = $alias;
$array[$group][$alias]['type'] = $field['type'];
}
}
}
// make sure each group key is present
$groups = ['core', 'social', 'personal', 'professional'];
foreach ($groups as $g) {
if (!isset($array[$g])) {
$array[$g] = [];
}
}
return $array;
}
/**
* Populates custom field values for updating the company.
*
* @param bool|false $overwriteWithBlank
*/
public function setFieldValues(Company $company, array $data, $overwriteWithBlank = false): void
{
// save the field values
$fieldValues = $company->getFields();
if (empty($fieldValues)) {
// Lead is new or they haven't been populated so let's build the fields now
if (empty($this->fields)) {
$this->fields = $this->leadFieldModel->getEntities(
[
'filter' => ['object' => 'company'],
'hydration_mode' => 'HYDRATE_ARRAY',
'result_cache' => new ResultCacheOptions(LeadField::CACHE_NAMESPACE),
]
);
$this->fields = $this->organizeFieldsByGroup($this->fields);
}
$fieldValues = $this->fields;
}
// update existing values
foreach ($fieldValues as &$groupFields) {
foreach ($groupFields as $alias => &$field) {
if (!isset($field['value'])) {
$field['value'] = null;
}
// Only update fields that are part of the passed $data array
if (array_key_exists($alias, $data)) {
$curValue = $field['value'];
$newValue = $data[$alias];
if (is_array($newValue)) {
$newValue = implode('|', $newValue);
}
if ($curValue !== $newValue && (strlen($newValue) > 0 || (0 === strlen($newValue) && $overwriteWithBlank))) {
$field['value'] = $newValue;
$company->addUpdatedField($alias, $newValue, $curValue);
}
}
}
}
$company->setFields($fieldValues);
}
/**
* Add lead to company.
*
* @param array|Company $companies
* @param array|Lead $lead
*
* @throws \Doctrine\ORM\ORMException
*/
public function addLeadToCompany($companies, $lead): bool
{
// Primary company name to be persisted to the lead's contact company field
$companyName = '';
$companyLeadAdd = [];
$searchForCompanies = [];
$dateManipulated = new \DateTime();
if (!$lead instanceof Lead) {
$leadId = (is_array($lead) && isset($lead['id'])) ? $lead['id'] : $lead;
$lead = $this->em->getReference(Lead::class, $leadId);
}
if ($companies instanceof Company) {
$companyLeadAdd[$companies->getId()] = $companies;
$companies = [$companies->getId()];
} elseif (!is_array($companies)) {
$companies = [$companies];
}
// make sure they are ints
foreach ($companies as &$l) {
$l = (int) $l;
if (!isset($companyLeadAdd[$l])) {
$searchForCompanies[] = $l;
}
}
if (!empty($searchForCompanies)) {
$companyEntities = $this->getEntities([
'filter' => [
'force' => [
[
'column' => 'comp.id',
'expr' => 'in',
'value' => $searchForCompanies,
],
],
],
]);
foreach ($companyEntities as $company) {
$companyLeadAdd[$company->getId()] = $company;
}
}
unset($companyEntities, $searchForCompanies);
$persistCompany = [];
$dispatchEvents = [];
$contactAdded = false;
foreach ($companies as $companyId) {
if (!isset($companyLeadAdd[$companyId])) {
// List no longer exists in the DB so continue to the next
continue;
}
$companyLead = $this->getCompanyLeadRepository()->findOneBy(
[
'lead' => $lead,
'company' => $companyLeadAdd[$companyId],
]
);
if (null != $companyLead) {
// Detach from Doctrine
$this->em->detach($companyLead);
continue;
} else {
$companyLead = new CompanyLead();
$companyLead->setCompany($companyLeadAdd[$companyId]);
$companyLead->setLead($lead);
$companyLead->setDateAdded($dateManipulated);
$contactAdded = true;
$persistCompany[] = $companyLead;
$dispatchEvents[] = $companyId;
if (!$companyName) {
// CompanyLeadRepository::saveEntities will set the first company of the batch as primary so
// use the first company name to ensure they match
$companyName = $companyLeadAdd[$companyId]->getName();
}
}
}
if (!empty($persistCompany)) {
$this->getCompanyLeadRepository()->saveEntities($persistCompany);
}
if (!empty($companyName)) {
// Set the contact's primary company to the first company added in the batch
// This must happen before LeadEvents::LEAD_COMPANY_CHANGE to ensure the Lead::getCompany has the correct value
$currentCompanyName = $lead->getCompany();
if ($currentCompanyName !== $companyName) {
$lead->addUpdatedField('company', $companyName)
->setDateModified(new \DateTime());
/** @var LeadRepository $leadRepository */
$leadRepository = $this->em->getRepository(Lead::class);
$leadRepository->saveEntity($lead);
}
}
if (!empty($dispatchEvents) && $this->dispatcher->hasListeners(LeadEvents::LEAD_COMPANY_CHANGE)) {
foreach ($dispatchEvents as $companyId) {
$event = new LeadChangeCompanyEvent($lead, $companyLeadAdd[$companyId]);
$this->dispatcher->dispatch($event, LeadEvents::LEAD_COMPANY_CHANGE);
unset($event);
}
}
// Clear CompanyLead entities from Doctrine memory
$this->getCompanyLeadRepository()->detachEntities($persistCompany);
return $contactAdded;
}
/**
* Remove a lead from company.
*
* @throws \Doctrine\ORM\ORMException
*/
public function removeLeadFromCompany($companies, $lead): void
{
if (!$lead instanceof Lead) {
$leadId = (is_array($lead) && isset($lead['id'])) ? $lead['id'] : $lead;
$lead = $this->em->getReference(Lead::class, $leadId);
}
$companyLeadRemove = [];
if (!$companies instanceof Company) {
// make sure they are ints
$searchForCompanies = [];
foreach ($companies as &$l) {
$l = (int) $l;
$searchForCompanies[] = $l;
}
if (!empty($searchForCompanies)) {
$companyEntities = $this->getEntities(
[
'filter' => [
'force' => [
[
'column' => 'comp.id',
'expr' => 'in',
'value' => $searchForCompanies,
],
],
],
]
);
foreach ($companyEntities as $company) {
$companyLeadRemove[$company->getId()] = $company;
}
}
unset($companyEntities, $searchForCompanies);
} else {
$companyLeadRemove[$companies->getId()] = $companies;
$companies = [$companies->getId()];
}
if (!is_array($companies)) {
$companies = [$companies];
}
$deleteCompany = [];
$dispatchEvents = [];
$deleteCompanyLead = [];
$primaryRemoved = false;
foreach ($companies as $companyId) {
if (!isset($companyLeadRemove[$companyId])) {
continue;
}
/** @var CompanyLead $companyLead */
$companyLead = $this->getCompanyLeadRepository()->findOneBy(
[
'lead' => $lead,
'company' => $companyLeadRemove[$companyId],
]
);
if (null == $companyLead) {
// Lead is not part of this list
continue;
}
// Lead was manually added and now manually removed or was not manually added and now being removed
$deleteCompanyLead[] = $companyLead;
$dispatchEvents[] = $companyId;
// Update the Lead's primary company name if removed from the primary company
if (!$primaryRemoved) {
$primaryRemoved = $companyLead->getPrimary();
}
unset($companyLead);
}
if (!empty($deleteCompanyLead)) {
$this->getCompanyLeadRepository()->deleteEntities($deleteCompanyLead);
}
if ($primaryRemoved) {
// Set the contact's primary company to a remaining company or empty it out if none are left
// This must happen before LeadEvents::LEAD_COMPANY_CHANGE to ensure the Lead::getCompany has the correct value
$this->updateContactAfterPrimaryCompanyWasRemoved($lead);
}
// Clear CompanyLead entities from Doctrine memory
$this->getCompanyLeadRepository()->detachEntities($deleteCompanyLead);
if (!empty($dispatchEvents) && $this->dispatcher->hasListeners(LeadEvents::LEAD_COMPANY_CHANGE)) {
foreach ($dispatchEvents as $companyId) {
$event = new LeadChangeCompanyEvent($lead, $companyLeadRemove[$companyId], false);
$this->dispatcher->dispatch($event, LeadEvents::LEAD_COMPANY_CHANGE);
unset($event);
}
}
unset($lead, $deleteCompany, $companies);
}
/**
* Get list of entities for autopopulate fields.
*
* @param string $type
* @param mixed[]|string $filter
* @param int $limit
* @param int $start
*/
public function getLookupResults($type, $filter = '', $limit = 10, $start = 0): array
{
$results = [];
switch ($type) {
case 'companyfield':
case 'lead.company':
if ('lead.company' === $type) {
$column = 'companyname';
$filterVal = $filter;
} else {
if (is_array($filter)) {
$column = $filter[0];
$filterVal = $filter[1];
} else {
$column = $filter;
}
}
$expr = new ExpressionBuilder($this->em->getConnection());
$composite = $expr->and($expr->like("comp.$column", ':filterVar'));
// Validate owner permissions
if (!$this->security->isGranted('lead:leads:viewother')) {
$composite->with(
$expr->or(
$expr->and(
$expr->isNull('comp.owner_id'),
$expr->eq('comp.created_by', (int) $this->userHelper->getUser()->getId())
),
$expr->eq('comp.owner_id', (int) $this->userHelper->getUser()->getId())
)
);
}
$results = $this->getRepository()->getAjaxSimpleList($composite, ['filterVar' => $filterVal.'%'], $column);
break;
}
return $results;
}
/**
* @throws MethodNotAllowedHttpException
*/
protected function dispatchEvent($action, &$entity, $isNew = false, Event $event = null): ?Event
{
if (!$entity instanceof Company) {
throw new MethodNotAllowedHttpException(['Email']);
}
switch ($action) {
case 'pre_save':
$name = LeadEvents::COMPANY_PRE_SAVE;
break;
case 'post_save':
$name = LeadEvents::COMPANY_POST_SAVE;
break;
case 'pre_delete':
$name = LeadEvents::COMPANY_PRE_DELETE;
break;
case 'post_delete':
$name = LeadEvents::COMPANY_POST_DELETE;
break;
default:
return null;
}
if ($this->dispatcher->hasListeners($name)) {
if (empty($event)) {
$event = new CompanyEvent($entity, $isNew);
$event->setEntityManager($this->em);
}
$this->dispatcher->dispatch($event, $name);
return $event;
} else {
return null;
}
}
/**
* Company Merge function, will merge $mainCompany with $secCompany - empty records from main company will be
* filled with secondary then secondary will be deleted.
*
* @return mixed
*/
public function companyMerge($mainCompany, $secCompany)
{
$this->logger->debug('COMPANY: Merging companies');
$mainCompanyId = $mainCompany->getId();
$secCompanyId = $secCompany->getId();
// if they are the same lead, then just return one
if ($mainCompanyId === $secCompanyId) {
return $mainCompany;
}
// merge fields
$mergeSecFields = $secCompany->getFields();
$mainCompanyFields = $mainCompany->getFields();
foreach ($mergeSecFields as $group => $groupFields) {
foreach ($groupFields as $alias => $details) {
// fill in empty main company fields with secondary company fields
if (empty($mainCompanyFields[$group][$alias]['value']) && !empty($details['value'])) {
$mainCompany->addUpdatedField($alias, $details['value']);
$this->logger->debug('Company: Updated '.$alias.' = '.$details['value']);
}
}
}
// merge owner
$mainCompanyOwner = $mainCompany->getOwner();
$secCompanyOwner = $secCompany->getOwner();
if (null === $mainCompanyOwner && null !== $secCompanyOwner) {
$mainCompany->setOwner($secCompanyOwner);
}
// move all leads from secondary company to main company
$companyLeadRepo = $this->getCompanyLeadRepository();
$secCompanyLeads = $companyLeadRepo->getCompanyLeads($secCompanyId);
foreach ($secCompanyLeads as $lead) {
$this->addLeadToCompany($mainCompany->getId(), $lead['lead_id']);
}
$event = new CompanyMergeEvent($mainCompany, $secCompany);
$this->dispatcher->dispatch($event, LeadEvents::COMPANY_PRE_MERGE);
// save the updated company
$this->saveEntity($mainCompany, false);
$this->dispatcher->dispatch($event, LeadEvents::COMPANY_POST_MERGE);
// delete the old company
$this->deleteEntity($secCompany);
// return the merged company
return $mainCompany;
}
/**
* @return array
*/
public function fetchCompanyFields()
{
if (empty($this->companyFields)) {
$this->companyFields = $this->leadFieldModel->getEntities(
[
'filter' => [
'force' => [
[
'column' => 'f.isPublished',
'expr' => 'eq',
'value' => true,
],
[
'column' => 'f.object',
'expr' => 'eq',
'value' => 'company',
],
],
],
'hydration_mode' => 'HYDRATE_ARRAY',
'result_cache' => new ResultCacheOptions(LeadField::CACHE_NAMESPACE),
]
);
}
return $this->companyFields;
}
public function extractCompanyDataFromImport(array &$mappedFields, array &$data): array
{
$companyData = [];
$companyFields = [];
$internalFields = $this->fetchCompanyFields();
if (!isset($mappedFields['companyname']) && isset($mappedFields['company'])) {
$mappedFields['companyname'] = $mappedFields['company'];
unset($mappedFields['company']);
}
foreach ($mappedFields as $mauticField => $importField) {
foreach ($internalFields as $entityField) {
if ($entityField['alias'] === $mauticField) {
$companyData[$importField] = $data[$importField];
$companyFields[$mauticField] = $importField;
unset($data[$importField]);
unset($mappedFields[$mauticField]);
break;
}
}
}
return [$companyFields, $companyData];
}
/**
* @param mixed[] $fields
* @param mixed[] $data
* @param bool $skipIfExists
*
* @throws \Exception
*/
public function import($fields, $data, $owner = null, $skipIfExists = false): bool
{
$company = $this->importCompany($fields, $data, $owner, false, $skipIfExists);
if (null === $company) {
throw new \Exception($this->translator->trans('mautic.lead.import.unique_field_not_exist', [], 'flashes'));
}
$merged = !$company->isNew();
$this->saveEntity($company);
return $merged;
}
/**
* @param array $fields
* @param array $data
*
* @return Company|null
*
* @throws \Exception
*/
public function importCompany($fields, $data, $owner = null, $persist = true, $skipIfExists = false)
{
try {
$duplicateCompanies = $this->companyDeduper->checkForDuplicateCompanies($this->getFieldData($fields, $data));
} catch (UniqueFieldNotFoundException) {
return null;
}
$company = !empty($duplicateCompanies) ? $duplicateCompanies[0] : new Company();
if (!empty($fields['dateAdded']) && !empty($data[$fields['dateAdded']])) {
$dateAdded = new DateTimeHelper($data[$fields['dateAdded']]);
$company->setDateAdded($dateAdded->getUtcDateTime());
}
unset($fields['dateAdded']);
if (!empty($fields['dateModified']) && !empty($data[$fields['dateModified']])) {
$dateModified = new DateTimeHelper($data[$fields['dateModified']]);
$company->setDateModified($dateModified->getUtcDateTime());
}
unset($fields['dateModified']);
if (!empty($fields['createdByUser']) && !empty($data[$fields['createdByUser']])) {
$userRepo = $this->em->getRepository(\Mautic\UserBundle\Entity\User::class);
$createdByUser = $userRepo->findByIdentifier($data[$fields['createdByUser']]);
if (null !== $createdByUser) {
$company->setCreatedBy($createdByUser);
}
}
unset($fields['createdByUser']);
if (!empty($fields['modifiedByUser']) && !empty($data[$fields['modifiedByUser']])) {
$userRepo = $this->em->getRepository(\Mautic\UserBundle\Entity\User::class);
$modifiedByUser = $userRepo->findByIdentifier($data[$fields['modifiedByUser']]);
if (null !== $modifiedByUser) {
$company->setModifiedBy($modifiedByUser);
}
}
unset($fields['modifiedByUser']);
if (null !== $owner) {
$company->setOwner($this->em->getReference(\Mautic\UserBundle\Entity\User::class, $owner));
}
$fieldData = $this->getFieldData($fields, $data);
$fieldErrors = [];
foreach ($this->fetchCompanyFields() as $entityField) {
// Skip If value already exists
if ($skipIfExists && !$company->isNew() && !empty($company->getProfileFields()[$entityField['alias']])) {
unset($fieldData[$entityField['alias']]);
continue;
}
if (isset($fieldData[$entityField['alias']])) {
$fieldData[$entityField['alias']] = InputHelper::_($fieldData[$entityField['alias']], 'string');
if ('NULL' === $fieldData[$entityField['alias']]) {
$fieldData[$entityField['alias']] = null;
continue;
}
try {
$this->cleanFields($fieldData, $entityField);
} catch (\Exception $exception) {
$fieldErrors[] = $entityField['alias'].': '.$exception->getMessage();
}
// Skip if the value is in the CSV row
continue;
} elseif ($company->isNew() && $entityField['defaultValue']) {
// Fill in the default value if any
$fieldData[$entityField['alias']] = ('multiselect' === $entityField['type']) ? [$entityField['defaultValue']] : $entityField['defaultValue'];
}
}
if ($fieldErrors) {
$fieldErrors = implode("\n", $fieldErrors);
throw new \Exception($fieldErrors);
}
// All clear
foreach ($fieldData as $field => $value) {
$company->addUpdatedField($field, $value);
}
if ($persist) {
$this->saveEntity($company);
}
return $company;
}
/**
* @return mixed[]
*/
public function checkForDuplicateCompanies(array $queryFields): array
{
return $this->companyDeduper->checkForDuplicateCompanies($queryFields);
}
/**
* @param array $fields
* @param array $data
*/
protected function getFieldData($fields, $data): array
{
// Set profile data using the form so that values are validated
$fieldData = [];
foreach ($fields as $importField => $entityField) {
// Prevent overwriting existing data with empty data
if (array_key_exists($importField, $data) && !is_null($data[$importField]) && '' != $data[$importField]) {
$fieldData[$entityField] = $data[$importField];
}
}
return $fieldData;
}
private function updateContactAfterPrimaryCompanyWasRemoved(Lead $lead): void
{
$primaryCompanyName = '';
$companyLead = null;
$newPrimaryCompany = null;
// Find another company to make primary if applicable
$leadCompanies = $this->getCompanyLeadRepository()->getCompaniesByLeadId($lead->getId());
if (count($leadCompanies)) {
$newPrimaryArray = reset($leadCompanies);
$newPrimaryCompany = $this->em->getReference(Company::class, $newPrimaryArray['company_id']);
/** @var CompanyLead $companyLead */
$companyLead = $this->getCompanyLeadRepository()->findOneBy(
[
'lead' => $lead,
'company' => $newPrimaryCompany,
]
);
$companyLead->setPrimary(true);
$this->getCompanyLeadRepository()->saveEntity($companyLead);
$primaryCompanyName = $newPrimaryArray['companyname'];
}
$lead->addUpdatedField('company', $primaryCompanyName)
->setDateModified(new \DateTime());
$this->em->getRepository(Lead::class)->saveEntity($lead);
if (null !== $newPrimaryCompany) {
$this->getCompanyLeadRepository()->detachEntity($newPrimaryCompany);
}
if (null !== $companyLead) {
$this->getCompanyLeadRepository()->detachEntity($companyLead);
}
}
}
|