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\Resolver\Products\Attributes;

use GraphQL\Language\AST\FieldNode;
use Magento\Catalog\Model\ResourceModel\Product\Attribute\CollectionFactory as AttributeCollectionFactory;
use Magento\Catalog\Model\ResourceModel\Product\Attribute\Collection as AttributeCollection;
use Magento\Eav\Model\Attribute;
use Magento\Framework\ObjectManager\ResetAfterRequestInterface;

/**
 * Gather all eav and custom attributes to use in a GraphQL schema for products
 */
class Collection implements ResetAfterRequestInterface
{
    /**
     * @var AttributeCollectionFactory
     */
    private $collectionFactory;

    /**
     * @var AttributeCollection
     */
    private $collection = null;

    /**
     * @param AttributeCollectionFactory $collectionFactory
     */
    public function __construct(AttributeCollectionFactory $collectionFactory)
    {
        $this->collectionFactory = $collectionFactory;
    }

    /**
     * Return all custom and eav attributes configured for products.
     *
     * @return AttributeCollection
     */
    public function getAttributes() : AttributeCollection
    {
        if (!$this->collection) {
            $this->collection = $this->collectionFactory->create();
            $this->collection->addFieldToFilter('is_user_defined', '1');
            $this->collection->addFieldToFilter('attribute_code', ['neq' => 'cost']);
            $this->collection->addFieldToFilter(
                [
                    'is_comparable',
                    'is_filterable',
                    'is_filterable_in_search',
                    'is_visible_on_front',
                    'used_in_product_listing',
                    'used_for_sort_by'
                ],
                [
                    ['eq' => '1'],
                    ['eq' => '1'],
                    ['eq' => '1'],
                    ['eq' => '1'],
                    ['eq' => '1'],
                    ['eq' => '1']
                ]
            );
        }

        return $this->collection->load();
    }

    /**
     * Find EAV names based on passed in field names from GraphQL request, match to all known EAV attribute codes.
     *
     * @param string[] $fieldNames
     * @return string[]
     */
    public function getRequestAttributes(array $fieldNames) : array
    {
        $attributes = $this->getAttributes();
        $attributeNames = [];
        /** @var Attribute $attribute */
        foreach ($attributes as $attribute) {
            $attributeNames[] = $attribute->getAttributeCode();
        }

        $matchedAttributes = [];
        foreach ($fieldNames as $name) {
            if (!in_array($name, $attributeNames)) {
                continue;
            }

            $matchedAttributes[] = $name;
        }

        return $matchedAttributes;
    }

    /**
     * @inheritDoc
     */
    public function _resetState(): void
    {
        $this->collection = null;
    }
}
 ?>

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\Resolver\Products\Attributes;

use GraphQL\Language\AST\FieldNode;
use Magento\Catalog\Model\ResourceModel\Product\Attribute\CollectionFactory as AttributeCollectionFactory;
use Magento\Catalog\Model\ResourceModel\Product\Attribute\Collection as AttributeCollection;
use Magento\Eav\Model\Attribute;
use Magento\Framework\ObjectManager\ResetAfterRequestInterface;

/**
 * Gather all eav and custom attributes to use in a GraphQL schema for products
 */
class Collection implements ResetAfterRequestInterface
{
    /**
     * @var AttributeCollectionFactory
     */
    private $collectionFactory;

    /**
     * @var AttributeCollection
     */
    private $collection = null;

    /**
     * @param AttributeCollectionFactory $collectionFactory
     */
    public function __construct(AttributeCollectionFactory $collectionFactory)
    {
        $this->collectionFactory = $collectionFactory;
    }

    /**
     * Return all custom and eav attributes configured for products.
     *
     * @return AttributeCollection
     */
    public function getAttributes() : AttributeCollection
    {
        if (!$this->collection) {
            $this->collection = $this->collectionFactory->create();
            $this->collection->addFieldToFilter('is_user_defined', '1');
            $this->collection->addFieldToFilter('attribute_code', ['neq' => 'cost']);
            $this->collection->addFieldToFilter(
                [
                    'is_comparable',
                    'is_filterable',
                    'is_filterable_in_search',
                    'is_visible_on_front',
                    'used_in_product_listing',
                    'used_for_sort_by'
                ],
                [
                    ['eq' => '1'],
                    ['eq' => '1'],
                    ['eq' => '1'],
                    ['eq' => '1'],
                    ['eq' => '1'],
                    ['eq' => '1']
                ]
            );
        }

        return $this->collection->load();
    }

    /**
     * Find EAV names based on passed in field names from GraphQL request, match to all known EAV attribute codes.
     *
     * @param string[] $fieldNames
     * @return string[]
     */
    public function getRequestAttributes(array $fieldNames) : array
    {
        $attributes = $this->getAttributes();
        $attributeNames = [];
        /** @var Attribute $attribute */
        foreach ($attributes as $attribute) {
            $attributeNames[] = $attribute->getAttributeCode();
        }

        $matchedAttributes = [];
        foreach ($fieldNames as $name) {
            if (!in_array($name, $attributeNames)) {
                continue;
            }

            $matchedAttributes[] = $name;
        }

        return $matchedAttributes;
    }

    /**
     * @inheritDoc
     */
    public function _resetState(): void
    {
        $this->collection = null;
    }
}

Function Calls

None

Variables

None

Stats

MD5 daefae6ba7bbb324d0fa4860ea883368
Eval Count 0
Decode Time 102 ms