Spaces:
No application file
No application file
File size: 10,380 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 |
<?php
namespace Mautic\LeadBundle\Tracker;
use Mautic\CoreBundle\Entity\IpAddress;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\IpLookupHelper;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\LeadBundle\Entity\Lead;
use Mautic\LeadBundle\Entity\LeadRepository;
use Mautic\LeadBundle\Event\LeadChangeEvent;
use Mautic\LeadBundle\Event\LeadEvent;
use Mautic\LeadBundle\LeadEvents;
use Mautic\LeadBundle\Model\DefaultValueTrait;
use Mautic\LeadBundle\Model\FieldModel;
use Mautic\LeadBundle\Tracker\Service\ContactTrackingService\ContactTrackingServiceInterface;
use Psr\Log\LoggerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\HttpFoundation\RequestStack;
class ContactTracker
{
use DefaultValueTrait;
private ?Lead $systemContact = null;
/**
* @var Lead|null
*/
private $trackedContact;
/**
* @var FieldModel
*/
private $leadFieldModel;
public function __construct(
private LeadRepository $leadRepository,
private ContactTrackingServiceInterface $contactTrackingService,
private DeviceTracker $deviceTracker,
private CorePermissions $security,
private LoggerInterface $logger,
private IpLookupHelper $ipLookupHelper,
private RequestStack $requestStack,
private CoreParametersHelper $coreParametersHelper,
private EventDispatcherInterface $dispatcher,
FieldModel $leadFieldModel
) {
$this->leadFieldModel = $leadFieldModel;
}
/**
* @return Lead|null
*/
public function getContact()
{
$request = $this->requestStack->getCurrentRequest();
if ($systemContact = $this->getSystemContact()) {
return $systemContact;
} elseif ($this->isUserSession()) {
return null;
}
if (empty($this->trackedContact)) {
$this->trackedContact = $this->getCurrentContact();
$this->generateTrackingCookies();
}
if ($request) {
$this->logger->debug('CONTACT: Tracking session for contact ID# '.$this->trackedContact->getId().' through '.$request->getMethod().' '.$request->getRequestUri());
}
// Log last active for the tracked contact
if (!defined('MAUTIC_LEAD_LASTACTIVE_LOGGED')) {
$this->leadRepository->updateLastActive($this->trackedContact->getId());
define('MAUTIC_LEAD_LASTACTIVE_LOGGED', 1);
}
return $this->trackedContact;
}
/**
* Set the contact and generate cookies for future tracking.
*/
public function setTrackedContact(Lead $trackedContact): void
{
$this->logger->debug("CONTACT: {$trackedContact->getId()} set as current lead.");
if ($this->useSystemContact()) {
// Overwrite system current lead
$this->setSystemContact($trackedContact);
return;
}
// Take note of previously tracked in order to dispatched change event
$previouslyTrackedContact = (is_null($this->trackedContact)) ? null : $this->trackedContact;
$previouslyTrackedId = $this->getTrackingId();
// Set the newly tracked contact
$this->trackedContact = $trackedContact;
// Hydrate custom field data
$fields = $trackedContact->getFields();
if (empty($fields)) {
$this->hydrateCustomFieldData($trackedContact);
}
// Set last active
$this->trackedContact->setLastActive(new \DateTime());
// If for whatever reason this contact has not been saved yet, don't generate tracking cookies
if (!$trackedContact->getId()) {
// Delete existing cookies to prevent tracking as someone else
$this->deviceTracker->clearTrackingCookies();
return;
}
// Generate cookies for the newly tracked contact
$this->generateTrackingCookies();
if ($previouslyTrackedContact && $previouslyTrackedContact->getId() != $this->trackedContact->getId()) {
$this->dispatchContactChangeEvent($previouslyTrackedContact, $previouslyTrackedId);
}
}
/**
* System contact bypasses cookie tracking.
*/
public function setSystemContact(Lead $lead = null): void
{
if (null !== $lead) {
$this->logger->debug("LEAD: {$lead->getId()} set as system lead.");
$fields = $lead->getFields();
if (empty($fields)) {
$this->hydrateCustomFieldData($lead);
}
}
$this->systemContact = $lead;
}
/**
* @return string|null
*/
public function getTrackingId()
{
// Use the new method first
if ($trackedDevice = $this->deviceTracker->getTrackedDevice()) {
return $trackedDevice->getTrackingId();
}
// That failed, so look for the old cookies
return $this->contactTrackingService->getTrackedIdentifier();
}
/**
* @return Lead|null
*/
private function getSystemContact()
{
if ($this->useSystemContact() && $this->systemContact) {
$this->logger->debug('CONTACT: System lead is being used');
return $this->systemContact;
}
if ($this->isUserSession()) {
$this->logger->debug('CONTACT: In a Mautic user session');
}
return null;
}
/**
* @return Lead|null
*/
private function getCurrentContact()
{
if ($lead = $this->getContactByTrackedDevice()) {
return $lead;
}
return $this->getContactByIpAddress();
}
/**
* @return Lead|null
*/
public function getContactByTrackedDevice()
{
$lead = null;
// Return null for leads that are from a non-trackable IP, prevent anonymous lead with a non-trackable IP to be tracked
$ip = $this->ipLookupHelper->getIpAddress();
if ($ip && !$ip->isTrackable()) {
return $lead;
}
// Is there a device being tracked?
if ($trackedDevice = $this->deviceTracker->getTrackedDevice()) {
$lead = $trackedDevice->getLead();
// Lead associations are not hydrated with custom field values by default
$this->hydrateCustomFieldData($lead);
}
if (null === $lead) {
// Check to see if a contact is being tracked via the old cookie method in order to migrate them to the new
$lead = $this->contactTrackingService->getTrackedLead();
}
if ($lead) {
$this->logger->debug("CONTACT: Existing lead found with ID# {$lead->getId()}.");
}
return $lead;
}
/**
* @return Lead
*/
private function getContactByIpAddress()
{
$ip = $this->ipLookupHelper->getIpAddress();
// if no trackingId cookie set the lead is not tracked yet so create a new one
if ($ip && !$ip->isTrackable()) {
// Don't save leads that are from a non-trackable IP by default
return $this->createNewContact($ip, false);
}
if ($this->coreParametersHelper->get('track_contact_by_ip')) {
/** @var Lead[] $leads */
$leads = $this->leadRepository->getLeadsByIp($ip->getIpAddress());
if (count($leads)) {
$lead = $leads[0];
$this->logger->debug("CONTACT: Existing lead found with ID# {$lead->getId()}.");
return $lead;
}
}
return $this->createNewContact($ip);
}
/**
* @param bool $persist
*
* @return Lead
*/
private function createNewContact(IpAddress $ip = null, $persist = true)
{
// let's create a lead
$lead = new Lead();
$lead->setNewlyCreated(true);
if ($ip) {
$lead->addIpAddress($ip);
}
if ($persist && !defined('MAUTIC_NON_TRACKABLE_REQUEST')) {
// Dispatch events for new lead to write create log, ip address change, etc
$event = new LeadEvent($lead, true);
$this->dispatcher->dispatch($event, LeadEvents::LEAD_PRE_SAVE);
$this->setEntityDefaultValues($lead);
$this->leadRepository->saveEntity($lead);
$this->hydrateCustomFieldData($lead);
$this->dispatcher->dispatch($event, LeadEvents::LEAD_POST_SAVE);
$this->logger->debug("CONTACT: New lead created with ID# {$lead->getId()}.");
}
return $lead;
}
private function hydrateCustomFieldData(Lead $lead = null): void
{
if (null === $lead) {
return;
}
// Hydrate fields with custom field data
$fields = $this->leadRepository->getFieldValues($lead->getId());
$lead->setFields($fields);
}
private function useSystemContact(): bool
{
return $this->isUserSession() || $this->systemContact || defined('IN_MAUTIC_CONSOLE') || null === $this->requestStack->getCurrentRequest();
}
private function isUserSession(): bool
{
return !$this->security->isAnonymous();
}
private function dispatchContactChangeEvent(Lead $previouslyTrackedContact, $previouslyTrackedId): void
{
$newTrackingId = $this->getTrackingId();
$this->logger->debug(
"CONTACT: Tracking code changed from $previouslyTrackedId for contact ID# {$previouslyTrackedContact->getId()} to $newTrackingId for contact ID# {$this->trackedContact->getId()}"
);
if (null !== $previouslyTrackedId) {
if ($this->dispatcher->hasListeners(LeadEvents::CURRENT_LEAD_CHANGED)) {
$event = new LeadChangeEvent($previouslyTrackedContact, $previouslyTrackedId, $this->trackedContact, $newTrackingId);
$this->dispatcher->dispatch($event, LeadEvents::CURRENT_LEAD_CHANGED);
}
}
}
private function generateTrackingCookies(): void
{
$request = $this->requestStack->getCurrentRequest();
if ($leadId = $this->trackedContact->getId() && null !== $request) {
$this->deviceTracker->createDeviceFromUserAgent($this->trackedContact, $request->server->get('HTTP_USER_AGENT'));
}
}
}
|