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/old/vendor/mirasvit/module-core/src/Core/Service/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/mirasvit/module-core/src/Core/Service/AbstractValidator.php
<?php
/**
 * Mirasvit
 *
 * This source file is subject to the Mirasvit Software License, which is available at https://mirasvit.com/license/.
 * Do not edit or add to this file if you wish to upgrade the to newer versions in the future.
 * If you wish to customize this module for your needs.
 * Please refer to http://www.magentocommerce.com for more information.
 *
 * @category  Mirasvit
 * @package   mirasvit/module-core
 * @version   1.4.31
 * @copyright Copyright (C) 2023 Mirasvit (https://mirasvit.com/)
 */



namespace Mirasvit\Core\Service;

use Mirasvit\Core\Api\Service\ValidatorInterface;

abstract class AbstractValidator implements ValidatorInterface
{
    /**
     * @var array
     */
    private $results = [];

    /**
     * @var string
     */
    private $currentTest = null;

    /**
     * Keyword used for validation methods.
     */
    const TEST_METHOD_KEY = 'test';

    /**
     * Executes every method beginning with the 'test' keyword.
     *
     * {@inheritdoc}
     */
    public function validate()
    {
        foreach (get_class_methods($this) as $method) {
            $this->currentTest = ucfirst(preg_replace('/\B([A-Z])/', ' $1', $method));

            if (substr($method, 0, strlen(self::TEST_METHOD_KEY)) === self::TEST_METHOD_KEY) {
                try {
                    $nResult = count($this->results);
                    $result = call_user_func([$this, $method]);

                    if (is_array($result) && count($result) == 3) {
                        // returned array (old way)
                        if (!is_array($result[2])) {
                            $result[2] = [$result[2]];
                        }
                        if (count($result[2]) === 0) {
                            $result[2][] = '';
                        }

                        foreach ($result[2] as $message) {
                            $this->results[] = [
                                self::STATUS_CODE => $result[0],
                                self::MODULE_NAME => $this->getModuleName(),
                                self::TEST_NAME   => $this->currentTest,
                                self::MESSAGE     => $message,
                            ];
                        }
                    } elseif ($nResult === count($this->results)) {
                        //empty result + nothing were added. Add success.
                        $this->addSuccess('');
                    }
                } catch (\Exception $e) {
                    $this->addError($e->getMessage());
                }
            }
        }

        return $this->results;
    }

    /**
     * @param string $message
     * @param array $args
     * @return $this
     */
    public function addSuccess($message, array $args = [])
    {
        $this->results[] = [
            self::STATUS_CODE => self::SUCCESS,
            self::MODULE_NAME => $this->getModuleName(),
            self::TEST_NAME   => $this->currentTest,
            self::MESSAGE     => $this->formatMessage($message, $args),
        ];

        return $this;
    }

    /**
     * @param string $message
     * @param array $args
     * @return $this
     */
    public function addError($message, array $args = [])
    {
        $this->results[] = [
            self::STATUS_CODE => self::FAILED,
            self::MODULE_NAME => $this->getModuleName(),
            self::TEST_NAME   => $this->currentTest,
            self::MESSAGE     => $this->formatMessage($message, $args),
        ];

        return $this;
    }

    /**
     * @param string $message
     * @param array $args
     * @return $this
     */
    public function addWarning($message, array $args = [])
    {
        $this->results[] = [
            self::STATUS_CODE => self::WARNING,
            self::MODULE_NAME => $this->getModuleName(),
            self::TEST_NAME   => $this->currentTest,
            self::MESSAGE     => $this->formatMessage($message, $args),
        ];

        return $this;
    }

    /**
     * @param string $message
     * @param array $args
     * @return $this
     */
    public function addInfo($message, array $args = [])
    {
        $this->results[] = [
            self::STATUS_CODE => self::INFO,
            self::MODULE_NAME => $this->getModuleName(),
            self::TEST_NAME   => $this->currentTest,
            self::MESSAGE     => $this->formatMessage($message, $args),
        ];

        return $this;
    }

    /**
     * @param string $message
     * @param array $args
     * @return string
     */
    private function formatMessage($message, array $args)
    {
        $search = [];
        $replace = [];
        foreach ($args as $index => $value) {
            $search[] = '{' . $index . '}';
            $replace[] = $value;
        }

        return str_replace($search, $replace, $message);
    }

    /**
     * {@inheritdoc}
     */
    public function getModuleName()
    {
        $classArray = explode('\\', get_class($this));

        return $classArray[0] . '_' . $classArray[1];
    }
}

Spamworldpro Mini