Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/cartforge.co/app/code/Amasty/Base/ViewModel/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/cartforge.co/app/code/Amasty/Base/ViewModel/LicenseRegistration.php
<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Magento 2 Base Package
 */

namespace Amasty\Base\ViewModel;

use Amasty\Base\Block\Adminhtml\InstanceRegistrationMessages;
use Amasty\Base\Model\Config;
use Amasty\Base\Model\SysInfo\Command\LicenceService\GetCurrentLicenseValidation;
use Amasty\Base\Model\SysInfo\Data\LicenseValidation;
use Amasty\Base\Model\SysInfo\Data\LicenseValidation\Message as ValidationMessage;
use Amasty\Base\Model\SysInfo\Data\LicenseValidation\MessageFactory;
use Amasty\Base\Model\SysInfo\Data\LicenseValidation\Module\Message as ModuleMessage;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\App\RequestInterface;
use Magento\Framework\UrlInterface;
use Magento\Framework\View\Element\Block\ArgumentInterface;

class LicenseRegistration implements ArgumentInterface
{
    /**
     * @var GetCurrentLicenseValidation
     */
    private $getCurrentLicenseValidation;

    /**
     * @var UrlInterface
     */
    private $url;

    /**
     * @var MessageFactory
     */
    private $messageFactory;

    /**
     * @var RequestInterface
     */
    private $request;

    /**
     * @var Config
     */
    private $configProvider;

    public function __construct(
        GetCurrentLicenseValidation $getCurrentLicenseValidation,
        UrlInterface $url,
        MessageFactory $messageFactory,
        RequestInterface $request,
        Config $configProvider = null
    ) {
        $this->getCurrentLicenseValidation = $getCurrentLicenseValidation;
        $this->url = $url;
        $this->messageFactory = $messageFactory;
        $this->request = $request;
        $this->configProvider = $configProvider
            ?: ObjectManager::getInstance()->get(Config::class);
    }

    public function getMessage(): ?ValidationMessage
    {
        $errorMessage = $this->getErrorMessage();
        if ($errorMessage) {
            $validationMessage = $this->messageFactory->create();
            $validationMessage->setType(ValidationMessage::WARNING);
            $validationMessage->setContent($errorMessage);
        }

        return $validationMessage ?? null;
    }

    private function getErrorMessage(): ?string
    {
        $licenseValidation = $this->getCurrentLicenseValidation->get();
        $isLicenseValid = $this->isLicenseValid($licenseValidation);
        if ($this->request->getParam('section') === InstanceRegistrationMessages::SECTION_NAME
            || $licenseValidation->isNeedCheckLicense() !== true
            || ($licenseValidation->isNeedCheckLicense() === true && $isLicenseValid)
        ) {
            return null;
        }

        $moduleMessageType = $this->getModulesMessagesError($licenseValidation);
        if ($moduleMessageType === ModuleMessage::ERROR) {
            return __(
                'Amasty notice: Some Amasty extensions are being used without a valid license. To resolve this '
                . 'issue, please visit <a href="%1">Configuration</a> and review the details '
                . 'in the License Status column.',
                $this->getConfigSectionUrl()
            )->render();
        }
        if ($moduleMessageType === ModuleMessage::WARNING) {
            if ($this->configProvider->isLicenseNotificationsEnabled()) {
                return __(
                    'Amasty notice: Some Amasty subscriptions can be renewed due to inactive statuses. '
                    . 'For more information, please refer to the License Status column in '
                    . 'the <a href="%1">Configuration</a> section.',
                    $this->getConfigSectionUrl()
                )->render();
            }

            return null;
        }
        if (!$isLicenseValid || $moduleMessageType === null) {
            return __(
                'Amasty notice: Please go to <a href="%1">Configuration</a> and register your '
                . 'instance to avoid unlicensed product usage.',
                $this->getConfigSectionUrl()
            )->render();
        }

        return null;
    }

    private function isLicenseValid(LicenseValidation $license): bool
    {
        $messages = $license->getMessages();
        if (!$messages) {
            return false; //we must have success message on validation
        }
        foreach ($messages as $message) {
            if ($message->getType() !== ValidationMessage::SUCCESS) {
                return false;
            }
        }

        return true;
    }

    /**
     * Checking for module validation error or warning
     */
    private function getModulesMessagesError(LicenseValidation $license): ?string
    {
        $errorsTypes = [];
        $modules = $license->getModules();
        if (!$modules) {
            return null; //no module messages - no validation status
        }

        foreach ($modules as $module) {
            foreach ($module->getMessages() as $message) {
                $type = $message->getType();
                if ($type) {
                    switch ($type) {
                        case ModuleMessage::SUCCESS:
                            break;
                        case ModuleMessage::ERROR:
                            array_unshift($errorsTypes, $type);
                            break;
                        case ModuleMessage::WARNING:
                        default:
                            $errorsTypes[] = $type;
                    }
                }
            }
        }

        $errorsTypes = array_unique($errorsTypes);
        if (!empty($errorsTypes)) {
            return (string)array_values($errorsTypes)[0];
        }

        return '';
    }

    private function getConfigSectionUrl(): string
    {
        return $this->url->getUrl(
            'adminhtml/system_config/edit/',
            ['section' => 'amasty_products']
        );
    }
}

Spamworldpro Mini