Spaces:
No application file
No application file
File size: 4,578 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 |
<?php
namespace Mautic\LeadBundle\Tracker\Service\DeviceTrackingService;
use Doctrine\ORM\EntityManagerInterface;
use Mautic\CoreBundle\Helper\CookieHelper;
use Mautic\CoreBundle\Helper\RandomHelper\RandomHelperInterface;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\LeadBundle\Entity\LeadDevice;
use Mautic\LeadBundle\Entity\LeadDeviceRepository;
use Symfony\Component\HttpFoundation\Cookie;
use Symfony\Component\HttpFoundation\RequestStack;
final class DeviceTrackingService implements DeviceTrackingServiceInterface
{
/**
* @var LeadDevice
*/
private $trackedDevice;
public function __construct(
private CookieHelper $cookieHelper,
private EntityManagerInterface $entityManager,
private LeadDeviceRepository $leadDeviceRepository,
private RandomHelperInterface $randomHelper,
private RequestStack $requestStack,
private CorePermissions $security
) {
}
public function isTracked(): bool
{
return null !== $this->getTrackedDevice();
}
/**
* @return LeadDevice
*/
public function getTrackedDevice()
{
if (!$this->security->isAnonymous()) {
// Do not track Mautic users
return;
}
if ($this->trackedDevice) {
return $this->trackedDevice;
}
$trackingId = $this->getTrackedIdentifier();
if (null === $trackingId) {
return null;
}
return $this->leadDeviceRepository->getByTrackingId($trackingId);
}
/**
* @param bool $replaceExistingTracking
*
* @return LeadDevice
*/
public function trackCurrentDevice(LeadDevice $device, $replaceExistingTracking = false)
{
$trackedDevice = $this->getTrackedDevice();
if (null !== $trackedDevice && false === $replaceExistingTracking) {
return $trackedDevice;
}
// Check for an existing device for this contact to prevent blowing up the devices table
$existingDevice = $this->leadDeviceRepository->findOneBy(
[
'lead' => $device->getLead(),
'device' => $device->getDevice(),
'deviceBrand' => $device->getDeviceBrand(),
'deviceModel' => $device->getDeviceModel(),
]
);
if (null !== $existingDevice) {
$device = $existingDevice;
}
if (null === $device->getTrackingId()) {
// Ensure all devices have a tracking ID (new devices will not and pre 2.13.0 devices may not)
$device->setTrackingId($this->getUniqueTrackingIdentifier());
$this->entityManager->persist($device);
$this->entityManager->flush();
}
$this->createTrackingCookies($device);
// Store the device in case a service uses this within the same session
$this->trackedDevice = $device;
return $device;
}
public function clearTrackingCookies(): void
{
$this->cookieHelper->deleteCookie('mautic_device_id');
$this->cookieHelper->deleteCookie('mtc_id');
}
private function getTrackedIdentifier(): ?string
{
$request = $this->requestStack->getCurrentRequest();
if (null === $request) {
return null;
}
if ($this->trackedDevice) {
// Use the device tracked in case the cookies were just created
return $this->trackedDevice->getTrackingId();
}
$deviceTrackingId = $this->cookieHelper->getCookie('mautic_device_id', null);
if (null === $deviceTrackingId) {
$deviceTrackingId = $request->get('mautic_device_id', null);
}
return $deviceTrackingId;
}
private function getUniqueTrackingIdentifier(): string
{
do {
$generatedIdentifier = $this->randomHelper->generate(23);
$device = $this->leadDeviceRepository->getByTrackingId($generatedIdentifier);
} while (null !== $device);
return $generatedIdentifier;
}
private function createTrackingCookies(LeadDevice $device): void
{
// Device cookie
$this->cookieHelper->setCookie('mautic_device_id', $device->getTrackingId(), 31_536_000, sameSite: Cookie::SAMESITE_NONE);
// Mainly for landing pages so that JS has the same access as 3rd party tracking code
$this->cookieHelper->setCookie('mtc_id', $device->getLead()->getId(), null, sameSite: Cookie::SAMESITE_NONE);
}
}
|