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\Captcha\CustomerData;

use Magento\Customer\CustomerData\SectionSourceInterface;
use Magento\Customer\Model\Session as CustomerSession;
use Magento\Captcha\Model\DefaultModel;
use Magento\Captcha\Helper\Data as CaptchaHelper;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\DataObject;

/**
 * Captcha section.
 *
 * @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
 */
class Captcha extends DataObject implements SectionSourceInterface
{
    /**
     * @var array
     */
    private $formIds;

    /**
     * @var CaptchaHelper
     */
    private $helper;

    /**
     * @var CustomerSession
     */
    private $customerSession;

    /**
     * @param CaptchaHelper $helper
     * @param array $formIds
     * @param array $data
     * @param CustomerSession|null $customerSession
     */
    public function __construct(
        CaptchaHelper $helper,
        array $formIds,
        array $data = [],
        ?CustomerSession $customerSession = null
    ) {
        $this->helper = $helper;
        $this->formIds = $formIds;
        parent::__construct($data);
        $this->customerSession = $customerSession ?? ObjectManager::getInstance()->get(CustomerSession::class);
    }

    /**
     * @inheritdoc
     */
    public function getSectionData(): array
    {
        $data = [];

        foreach ($this->formIds as $formId) {
            /** @var DefaultModel $captchaModel */
            $captchaModel = $this->helper->getCaptcha($formId);
            $login = '';
            if ($this->customerSession->isLoggedIn()) {
                $login = $this->customerSession->getCustomerData()->getEmail();
            }
            $required =  $captchaModel->isRequired($login);
            $data[$formId] = [
                'isRequired' => $required,
                'timestamp' => time()
            ];
        }

        return $data;
    }
}
 ?>

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\Captcha\CustomerData;

use Magento\Customer\CustomerData\SectionSourceInterface;
use Magento\Customer\Model\Session as CustomerSession;
use Magento\Captcha\Model\DefaultModel;
use Magento\Captcha\Helper\Data as CaptchaHelper;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\DataObject;

/**
 * Captcha section.
 *
 * @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
 */
class Captcha extends DataObject implements SectionSourceInterface
{
    /**
     * @var array
     */
    private $formIds;

    /**
     * @var CaptchaHelper
     */
    private $helper;

    /**
     * @var CustomerSession
     */
    private $customerSession;

    /**
     * @param CaptchaHelper $helper
     * @param array $formIds
     * @param array $data
     * @param CustomerSession|null $customerSession
     */
    public function __construct(
        CaptchaHelper $helper,
        array $formIds,
        array $data = [],
        ?CustomerSession $customerSession = null
    ) {
        $this->helper = $helper;
        $this->formIds = $formIds;
        parent::__construct($data);
        $this->customerSession = $customerSession ?? ObjectManager::getInstance()->get(CustomerSession::class);
    }

    /**
     * @inheritdoc
     */
    public function getSectionData(): array
    {
        $data = [];

        foreach ($this->formIds as $formId) {
            /** @var DefaultModel $captchaModel */
            $captchaModel = $this->helper->getCaptcha($formId);
            $login = '';
            if ($this->customerSession->isLoggedIn()) {
                $login = $this->customerSession->getCustomerData()->getEmail();
            }
            $required =  $captchaModel->isRequired($login);
            $data[$formId] = [
                'isRequired' => $required,
                'timestamp' => time()
            ];
        }

        return $data;
    }
}

Function Calls

None

Variables

None

Stats

MD5 c2613ae7d981b724d2b52b469e388683
Eval Count 0
Decode Time 85 ms