Your IP : 216.73.216.14


Current Path : /var/www/magento.test.indacotrentino.com/www/app/code/Amasty/Rewards/Cron/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/app/code/Amasty/Rewards/Cron/HappyBirthday.php

<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
 * @package Reward Points Base for Magento 2
 */

namespace Amasty\Rewards\Cron;

use Amasty\Rewards\Model\Config\Source\Actions;
use Amasty\Rewards\Model\Quote\EarningChecker;

class HappyBirthday
{
    /**
     * @var \Amasty\Rewards\Model\Date
     */
    private $date;

    /**
     * @var \Amasty\Rewards\Model\Config
     */
    private $rewardsConfig;

    /**
     * @var \Amasty\Rewards\Api\HistoryRepositoryInterface
     */
    private $historyRepository;

    /**
     * @var \Amasty\Rewards\Api\RewardsProviderInterface
     */
    private $rewardsProvider;

    /**
     * @var \Amasty\Rewards\Api\RuleRepositoryInterface
     */
    private $ruleRepository;

    /**
     * @var \Magento\Customer\Model\ResourceModel\Customer\CollectionFactory
     */
    private $customerCollectionFactory;

    /**
     * @var EarningChecker
     */
    private $earningChecker;

    public function __construct(
        \Amasty\Rewards\Model\Date $date,
        \Amasty\Rewards\Model\Config $rewardsConfig,
        \Amasty\Rewards\Api\HistoryRepositoryInterface $historyRepository,
        \Amasty\Rewards\Api\RewardsProviderInterface $rewardsProvider,
        \Amasty\Rewards\Api\RuleRepositoryInterface $ruleRepository,
        \Magento\Customer\Model\ResourceModel\Customer\CollectionFactory $customerCollectionFactory,
        EarningChecker $earningChecker
    ) {
        $this->date = $date;
        $this->rewardsConfig = $rewardsConfig;
        $this->historyRepository = $historyRepository;
        $this->rewardsProvider = $rewardsProvider;
        $this->ruleRepository = $ruleRepository;
        $this->customerCollectionFactory = $customerCollectionFactory;
        $this->earningChecker = $earningChecker;
    }

    /**
     * Clear expired persistent sessions
     *
     * @param \Magento\Cron\Model\Schedule $schedule
     *
     * @return $this
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function execute(\Magento\Cron\Model\Schedule $schedule)
    {
        $days = $this->rewardsConfig->getBirthdayOffset();

        $date = $this->date->getDateWithOffsetByDays($days * (-1));

        $collection = $this->getCollection($date);

        /** @var \Magento\Customer\Model\Customer $customer */
        foreach ($collection->getItems() as $customer) {
            $customerId = $customer->getEntityId();

            if ($this->earningChecker->isForbiddenEarningByCustomerStatus((int)$customerId)) {
                continue;
            }

            $appliedActions = $this->historyRepository->getLastYearActionsId($customerId, $date);

            $rules = $this->ruleRepository->getRulesByAction(
                Actions::BIRTHDAY_ACTION,
                $customer->getWebsiteId(),
                $customer->getGroupId()
            );

            /** @var \Amasty\Rewards\Model\Rule $rule */
            foreach ($rules as $rule) {
                if (!isset($appliedActions[$rule->getId()])) {
                    $this->rewardsProvider->addPointsByRule($rule, $customer->getEntityId(), $customer->getStoreId());
                }
            }
        }

        return $this;
    }

    /**
     * @param string $date
     *
     * @return \Magento\Customer\Model\ResourceModel\Customer\Collection
     */
    protected function getCollection($date)
    {
        /** @var $customerCollection \Magento\Customer\Model\ResourceModel\Customer\Collection */
        $customerCollection = $this->customerCollectionFactory->create();

        $collection = $customerCollection
            ->addNameToSelect()
            ->addAttributeToSelect('email');

        $collection->getSelect()->where(
            new \Zend_Db_Expr(
                "DATE_FORMAT(`e`.`dob`, '%m-%d') = '" . $this->date->date('m-d', $date) . "'"
            )
        );

        return $collection;
    }
}