oont-contents/plugins/mailpoet/lib/Statistics/Track/WooCommercePurchases.php
2025-02-08 15:10:23 +01:00

180 lines
5.7 KiB
PHP

<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
namespace MailPoet\Statistics\Track;
if (!defined('ABSPATH')) exit;
use MailPoet\Entities\NewsletterEntity;
use MailPoet\Entities\StatisticsClickEntity;
use MailPoet\Entities\SubscriberEntity;
use MailPoet\Statistics\StatisticsClicksRepository;
use MailPoet\Statistics\StatisticsWooCommercePurchasesRepository;
use MailPoet\Subscribers\SubscribersRepository;
use MailPoet\Util\Cookies;
use MailPoet\WooCommerce\Helper;
use WC_Order;
class WooCommercePurchases {
const USE_CLICKS_SINCE_DAYS_AGO = 14;
/** @var Helper */
private $woocommerceHelper;
/** @var Cookies */
private $cookies;
/** @var StatisticsWooCommercePurchasesRepository */
private $statisticsWooCommercePurchasesRepository;
/** @var StatisticsClicksRepository */
private $statisticsClicksRepository;
/** @var SubscribersRepository */
private $subscribersRepository;
/** @var SubscriberHandler */
private $subscriberHandler;
public function __construct(
Helper $woocommerceHelper,
StatisticsWooCommercePurchasesRepository $statisticsWooCommercePurchasesRepository,
StatisticsClicksRepository $statisticsClicksRepository,
SubscribersRepository $subscribersRepository,
Cookies $cookies,
SubscriberHandler $subscriberHandler
) {
$this->woocommerceHelper = $woocommerceHelper;
$this->cookies = $cookies;
$this->statisticsWooCommercePurchasesRepository = $statisticsWooCommercePurchasesRepository;
$this->statisticsClicksRepository = $statisticsClicksRepository;
$this->subscribersRepository = $subscribersRepository;
$this->subscriberHandler = $subscriberHandler;
}
public function trackPurchase($id, $useCookies = true) {
$order = $this->woocommerceHelper->wcGetOrder($id);
if (!$order instanceof WC_Order || $this->trackExistingStatistics($order)) {
return;
}
$from = $this->getFromDate($order);
$to = $order->get_date_created();
if (is_null($to) || is_null($from)) {
return;
}
// track purchases from all clicks matched by order email
$processedNewsletterIdsMap = [];
$orderEmailClicks = $this->getClicks($order->get_billing_email(), $from, $to);
foreach ($orderEmailClicks as $click) {
$this->statisticsWooCommercePurchasesRepository->createOrUpdateByClickDataAndOrder($click, $order);
$newsletter = $click->getNewsletter();
if (!$newsletter instanceof NewsletterEntity) continue;
$processedNewsletterIdsMap[$newsletter->getId()] = true;
}
// try to find a subscriber by order email and start tracking
$this->subscriberHandler->identifyByEmail($order->get_billing_email());
if (!$useCookies) {
return;
}
// track purchases from clicks matched by cookie email (only for newsletters not tracked by order)
$cookieEmailClicks = $this->getClicks($this->getSubscriberEmailFromCookie(), $from, $to);
foreach ($cookieEmailClicks as $click) {
$newsletter = $click->getNewsletter();
if (!$newsletter instanceof NewsletterEntity) continue;
if (isset($processedNewsletterIdsMap[$newsletter->getId()])) {
continue; // do not track click for newsletters that were already tracked by order email
}
$this->statisticsWooCommercePurchasesRepository->createOrUpdateByClickDataAndOrder($click, $order);
}
}
public function trackRefund($id) {
$order = $this->woocommerceHelper->wcGetOrder($id);
if (!$order instanceof WC_Order) {
return;
}
$this->trackExistingStatistics($order);
}
/**
* Returns true when valid purchase statistics for an order were found.
*
* @param WC_Order $order
* @return bool
*/
private function trackExistingStatistics(\WC_Order $order): bool {
$statistics = $this->statisticsWooCommercePurchasesRepository->findBy(['orderId' => $order->get_id()]);
if ($statistics) {
foreach ($statistics as $statistic) {
if (!$statistic->getClick()) {
continue;
}
$this->statisticsWooCommercePurchasesRepository->createOrUpdateByClickDataAndOrder(
$statistic->getClick(),
$order
);
}
return true;
}
return false;
}
/**
* Limit clicks to 'USE_CLICKS_SINCE_DAYS_AGO' range before order has been created.
*
* @param WC_Order $order
* @return \WC_DateTime|null
*/
private function getFromDate(\WC_Order $order) {
$fromDate = $order->get_date_created();
if (is_null($fromDate)) {
return null;
}
$from = clone $fromDate;
$from->modify(-self::USE_CLICKS_SINCE_DAYS_AGO . ' days');
return $from;
}
/**
* @param ?string $email
* @param \DateTimeInterface $from
* @param \DateTimeInterface $to
* @return StatisticsClickEntity[]
*/
private function getClicks(?string $email, \DateTimeInterface $from, \DateTimeInterface $to): array {
if (!$email) return [];
$subscriber = $this->subscribersRepository->findOneBy(['email' => $email]);
if (!$subscriber instanceof SubscriberEntity) {
return [];
}
return $this->statisticsClicksRepository->findLatestPerNewsletterBySubscriber($subscriber, $from, $to);
}
private function getSubscriberEmailFromCookie(): ?string {
$cookieData = $this->cookies->get(Clicks::REVENUE_TRACKING_COOKIE_NAME);
if (!$cookieData) {
return null;
}
try {
$click = $this->statisticsClicksRepository->findOneById($cookieData['statistics_clicks']);
} catch (\Exception $e) {
return null;
}
if (!$click instanceof StatisticsClickEntity) {
return null;
}
$subscriber = $click->getSubscriber();
if ($subscriber instanceof SubscriberEntity) {
return $subscriber->getEmail();
}
return null;
}
}