Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..

Decoded Output download

<?php
/**
 * Copyright  Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\CatalogGraphQl\Model\Config;

use Magento\Catalog\Model\ResourceModel\Category\Attribute\CollectionFactory;
use Magento\Catalog\Model\ResourceModel\Category\Attribute\Collection;
use Magento\Framework\Config\ReaderInterface;
use Magento\Framework\GraphQl\Exception\GraphQlInputException;
use Magento\Framework\Reflection\TypeProcessor;
use Magento\EavGraphQl\Model\Resolver\Query\Type;

/**
 * Adds custom/eav attribute to Catalog category types in the GraphQL config.
 */
class CategoryAttributeReader implements ReaderInterface
{
    /**
     * In database data type is differ to graphql type, but eventually type for this attributes
     * will be casted without problems
     *
     * @var array
     */
    private static $bannedSystemAttributes = [
        'position',
        'is_active',
        'children',
        'level',
        'default_sort_by',
        'all_children',
        'page_layout',
        'custom_design',
        'custom_design_from',
        'custom_design_to',
        'custom_layout_update',
        'custom_use_parent_settings',
        'custom_apply_to_products',
    ];

    /**
     * @var Type
     */
    private $typeLocator;

    /**
     * @var CollectionFactory
     */
    private $collectionFactory;

    /**
     * @var array
     */
    private $categoryAttributeResolvers;

    /**
     * @param Type $typeLocator
     * @param CollectionFactory $collectionFactory
     * @param array $categoryAttributeResolvers
     */
    public function __construct(
        Type $typeLocator,
        CollectionFactory $collectionFactory,
        array $categoryAttributeResolvers = []
    ) {
        $this->typeLocator = $typeLocator;
        $this->collectionFactory = $collectionFactory;
        $this->categoryAttributeResolvers = $categoryAttributeResolvers;
    }

    /**
     * Read configuration scope
     *
     * @param string|null $scope
     * @return array
     * @throws GraphQlInputException
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function read($scope = null) : array
    {
        $config =[];
        $data = [];
        /** @var Collection $collection */
        $collection = $this->collectionFactory->create();
        /** @var \Magento\Catalog\Model\ResourceModel\Eav\Attribute $attribute */
        foreach ($collection as $attribute) {
            $attributeCode = $attribute->getAttributeCode();

            if (in_array($attributeCode, self::$bannedSystemAttributes)) {
                continue;
            }

            $locatedType = $this->typeLocator->getType(
                $attributeCode,
                'catalog_category'
            ) ?: 'String';
            $locatedType = $locatedType === TypeProcessor::NORMALIZED_ANY_TYPE ? 'String' : ucfirst($locatedType);
            $data['fields'][$attributeCode]['name'] = $attributeCode;
            $data['fields'][$attributeCode]['type'] = $locatedType;
            $data['fields'][$attributeCode]['arguments'] = [];
            if (isset($this->categoryAttributeResolvers[$attributeCode])) {
                $data['fields'][$attributeCode]['resolver'] = $this->categoryAttributeResolvers[$attributeCode];
            }
        }

        $config['CategoryInterface'] = $data;
        $config['CategoryTree'] = $data;

        return $config;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Copyright  Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\CatalogGraphQl\Model\Config;

use Magento\Catalog\Model\ResourceModel\Category\Attribute\CollectionFactory;
use Magento\Catalog\Model\ResourceModel\Category\Attribute\Collection;
use Magento\Framework\Config\ReaderInterface;
use Magento\Framework\GraphQl\Exception\GraphQlInputException;
use Magento\Framework\Reflection\TypeProcessor;
use Magento\EavGraphQl\Model\Resolver\Query\Type;

/**
 * Adds custom/eav attribute to Catalog category types in the GraphQL config.
 */
class CategoryAttributeReader implements ReaderInterface
{
    /**
     * In database data type is differ to graphql type, but eventually type for this attributes
     * will be casted without problems
     *
     * @var array
     */
    private static $bannedSystemAttributes = [
        'position',
        'is_active',
        'children',
        'level',
        'default_sort_by',
        'all_children',
        'page_layout',
        'custom_design',
        'custom_design_from',
        'custom_design_to',
        'custom_layout_update',
        'custom_use_parent_settings',
        'custom_apply_to_products',
    ];

    /**
     * @var Type
     */
    private $typeLocator;

    /**
     * @var CollectionFactory
     */
    private $collectionFactory;

    /**
     * @var array
     */
    private $categoryAttributeResolvers;

    /**
     * @param Type $typeLocator
     * @param CollectionFactory $collectionFactory
     * @param array $categoryAttributeResolvers
     */
    public function __construct(
        Type $typeLocator,
        CollectionFactory $collectionFactory,
        array $categoryAttributeResolvers = []
    ) {
        $this->typeLocator = $typeLocator;
        $this->collectionFactory = $collectionFactory;
        $this->categoryAttributeResolvers = $categoryAttributeResolvers;
    }

    /**
     * Read configuration scope
     *
     * @param string|null $scope
     * @return array
     * @throws GraphQlInputException
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function read($scope = null) : array
    {
        $config =[];
        $data = [];
        /** @var Collection $collection */
        $collection = $this->collectionFactory->create();
        /** @var \Magento\Catalog\Model\ResourceModel\Eav\Attribute $attribute */
        foreach ($collection as $attribute) {
            $attributeCode = $attribute->getAttributeCode();

            if (in_array($attributeCode, self::$bannedSystemAttributes)) {
                continue;
            }

            $locatedType = $this->typeLocator->getType(
                $attributeCode,
                'catalog_category'
            ) ?: 'String';
            $locatedType = $locatedType === TypeProcessor::NORMALIZED_ANY_TYPE ? 'String' : ucfirst($locatedType);
            $data['fields'][$attributeCode]['name'] = $attributeCode;
            $data['fields'][$attributeCode]['type'] = $locatedType;
            $data['fields'][$attributeCode]['arguments'] = [];
            if (isset($this->categoryAttributeResolvers[$attributeCode])) {
                $data['fields'][$attributeCode]['resolver'] = $this->categoryAttributeResolvers[$attributeCode];
            }
        }

        $config['CategoryInterface'] = $data;
        $config['CategoryTree'] = $data;

        return $config;
    }
}

Function Calls

None

Variables

None

Stats

MD5 a2d721922f68ed7af8304623a09585d9
Eval Count 0
Decode Time 88 ms