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\Category;
use Magento\Framework\GraphQl\Exception\GraphQlInputException;
use Magento\Framework\GraphQl\Query\Uid;
use Magento\Framework\GraphQl\Query\Resolver\ArgumentsProcessorInterface;
/**
* Category UID processor class for category uid and category id arguments
*/
class CategoryUidsArgsProcessor implements ArgumentsProcessorInterface
{
private const ID = 'ids';
private const UID = 'category_uid';
/** @var Uid */
private $uidEncoder;
/**
* @param Uid $uidEncoder
*/
public function __construct(Uid $uidEncoder)
{
$this->uidEncoder = $uidEncoder;
}
/**
* Composite processor that loops through available processors for arguments that come from graphql input
*
* @param string $fieldName,
* @param array $args
* @return array
* @throws GraphQlInputException
*/
public function process(
string $fieldName,
array $args
): array {
$filterKey = 'filters';
$idFilter = $args[$filterKey][self::ID] ?? [];
$uidFilter = $args[$filterKey][self::UID] ?? [];
if (!empty($idFilter)
&& !empty($uidFilter)
&& ($fieldName === 'categories' || $fieldName === 'categoryList')) {
throw new GraphQlInputException(
__('`%1` and `%2` can\'t be used at the same time.', [self::ID, self::UID])
);
} elseif (!empty($uidFilter)) {
if (isset($uidFilter['eq'])) {
$args[$filterKey][self::ID]['eq'] = $this->uidEncoder->decode(
$uidFilter['eq']
);
} elseif (!empty($uidFilter['in'])) {
foreach ($uidFilter['in'] as $uids) {
$args[$filterKey][self::ID]['in'][] = $this->uidEncoder->decode($uids);
}
}
unset($args[$filterKey][self::UID]);
}
return $args;
}
}
?>
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\Category;
use Magento\Framework\GraphQl\Exception\GraphQlInputException;
use Magento\Framework\GraphQl\Query\Uid;
use Magento\Framework\GraphQl\Query\Resolver\ArgumentsProcessorInterface;
/**
* Category UID processor class for category uid and category id arguments
*/
class CategoryUidsArgsProcessor implements ArgumentsProcessorInterface
{
private const ID = 'ids';
private const UID = 'category_uid';
/** @var Uid */
private $uidEncoder;
/**
* @param Uid $uidEncoder
*/
public function __construct(Uid $uidEncoder)
{
$this->uidEncoder = $uidEncoder;
}
/**
* Composite processor that loops through available processors for arguments that come from graphql input
*
* @param string $fieldName,
* @param array $args
* @return array
* @throws GraphQlInputException
*/
public function process(
string $fieldName,
array $args
): array {
$filterKey = 'filters';
$idFilter = $args[$filterKey][self::ID] ?? [];
$uidFilter = $args[$filterKey][self::UID] ?? [];
if (!empty($idFilter)
&& !empty($uidFilter)
&& ($fieldName === 'categories' || $fieldName === 'categoryList')) {
throw new GraphQlInputException(
__('`%1` and `%2` can\'t be used at the same time.', [self::ID, self::UID])
);
} elseif (!empty($uidFilter)) {
if (isset($uidFilter['eq'])) {
$args[$filterKey][self::ID]['eq'] = $this->uidEncoder->decode(
$uidFilter['eq']
);
} elseif (!empty($uidFilter['in'])) {
foreach ($uidFilter['in'] as $uids) {
$args[$filterKey][self::ID]['in'][] = $this->uidEncoder->decode($uids);
}
}
unset($args[$filterKey][self::UID]);
}
return $args;
}
}
Function Calls
None |
Stats
MD5 | f8dee0c5d768778371d0b3f9c9ed9534 |
Eval Count | 0 |
Decode Time | 102 ms |