Spaces:
No application file
No application file
File size: 2,289 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 |
<?php
namespace Mautic\ChannelBundle\Model;
use Mautic\LeadBundle\Entity\DoNotContact as DNC;
use Mautic\LeadBundle\Entity\Lead;
use Mautic\LeadBundle\Model\DoNotContact;
use Mautic\LeadBundle\Model\LeadModel;
use Symfony\Contracts\Translation\TranslatorInterface;
class ChannelActionModel
{
public function __construct(
private LeadModel $contactModel,
private DoNotContact $doNotContact,
private TranslatorInterface $translator
) {
}
/**
* Update channels and frequency rules.
*/
public function update(array $contactIds, array $subscribedChannels): void
{
$contacts = $this->contactModel->getLeadsByIds($contactIds);
foreach ($contacts as $contact) {
if (!$this->contactModel->canEditContact($contact)) {
continue;
}
$this->addChannels($contact, $subscribedChannels);
$this->removeChannels($contact, $subscribedChannels);
}
}
/**
* Add contact's channels.
* Only resubscribe if the contact did not opt out themselves.
*/
private function addChannels(Lead $contact, array $subscribedChannels): void
{
$contactChannels = $this->contactModel->getContactChannels($contact);
foreach ($subscribedChannels as $subscribedChannel) {
if (!array_key_exists($subscribedChannel, $contactChannels)) {
$contactable = $this->doNotContact->isContactable($contact, $subscribedChannel);
if (DNC::UNSUBSCRIBED !== $contactable) {
$this->doNotContact->removeDncForContact($contact->getId(), $subscribedChannel);
}
}
}
}
/**
* Remove contact's channels.
*/
private function removeChannels(Lead $contact, array $subscribedChannels): void
{
$allChannels = $this->contactModel->getPreferenceChannels();
$dncChannels = array_diff($allChannels, $subscribedChannels);
foreach ($dncChannels as $channel) {
$this->doNotContact->addDncForContact(
$contact->getId(),
$channel,
DNC::MANUAL,
$this->translator->trans('mautic.lead.event.donotcontact_manual')
);
}
}
}
|