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.
*/
namespace Magento\Captcha\Model\Checkout;
/**
* Configuration provider for Captcha rendering.
*/
class ConfigProvider implements \Magento\Checkout\Model\ConfigProviderInterface
{
/**
* @var \Magento\Store\Model\StoreManagerInterface
*/
protected $storeManager;
/**
* @var \Magento\Captcha\Helper\Data
*/
protected $captchaData;
/**
* @var array
*/
protected $formIds;
/**
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Magento\Captcha\Helper\Data $captchaData
* @param array $formIds
*/
public function __construct(
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Captcha\Helper\Data $captchaData,
array $formIds
) {
$this->storeManager = $storeManager;
$this->captchaData = $captchaData;
$this->formIds = $formIds;
}
/**
* @inheritdoc
*/
public function getConfig()
{
$config = [];
foreach ($this->formIds as $formId) {
$config['captcha'][$formId] = [
'isCaseSensitive' => $this->isCaseSensitive($formId),
'imageHeight' => $this->getImageHeight($formId),
'imageSrc' => $this->getImageSrc($formId),
'refreshUrl' => $this->getRefreshUrl(),
'isRequired' => $this->isRequired($formId),
'timestamp' => time()
];
}
return $config;
}
/**
* Returns is captcha case sensitive
*
* @param string $formId
* @return bool
*/
protected function isCaseSensitive($formId)
{
return (boolean)$this->getCaptchaModel($formId)->isCaseSensitive();
}
/**
* Returns captcha image height
*
* @param string $formId
* @return int
*/
protected function getImageHeight($formId)
{
return $this->getCaptchaModel($formId)->getHeight();
}
/**
* Returns captcha image source path
*
* @param string $formId
* @return string
*/
protected function getImageSrc($formId)
{
if ($this->isRequired($formId)) {
$captcha = $this->getCaptchaModel($formId);
$captcha->generate();
return $captcha->getImgSrc();
}
return '';
}
/**
* Returns URL to controller action which returns new captcha image
*
* @return string
*/
protected function getRefreshUrl()
{
$store = $this->storeManager->getStore();
return $store->getUrl('captcha/refresh', ['_secure' => $store->isCurrentlySecure()]);
}
/**
* Whether captcha is required to be inserted to this form
*
* @param string $formId
* @return bool
*/
protected function isRequired($formId)
{
return (boolean)$this->getCaptchaModel($formId)->isRequired();
}
/**
* Return captcha model for specified form
*
* @param string $formId
* @return \Magento\Captcha\Model\CaptchaInterface
*/
protected function getCaptchaModel($formId)
{
return $this->captchaData->getCaptcha($formId);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Captcha\Model\Checkout;
/**
* Configuration provider for Captcha rendering.
*/
class ConfigProvider implements \Magento\Checkout\Model\ConfigProviderInterface
{
/**
* @var \Magento\Store\Model\StoreManagerInterface
*/
protected $storeManager;
/**
* @var \Magento\Captcha\Helper\Data
*/
protected $captchaData;
/**
* @var array
*/
protected $formIds;
/**
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Magento\Captcha\Helper\Data $captchaData
* @param array $formIds
*/
public function __construct(
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Captcha\Helper\Data $captchaData,
array $formIds
) {
$this->storeManager = $storeManager;
$this->captchaData = $captchaData;
$this->formIds = $formIds;
}
/**
* @inheritdoc
*/
public function getConfig()
{
$config = [];
foreach ($this->formIds as $formId) {
$config['captcha'][$formId] = [
'isCaseSensitive' => $this->isCaseSensitive($formId),
'imageHeight' => $this->getImageHeight($formId),
'imageSrc' => $this->getImageSrc($formId),
'refreshUrl' => $this->getRefreshUrl(),
'isRequired' => $this->isRequired($formId),
'timestamp' => time()
];
}
return $config;
}
/**
* Returns is captcha case sensitive
*
* @param string $formId
* @return bool
*/
protected function isCaseSensitive($formId)
{
return (boolean)$this->getCaptchaModel($formId)->isCaseSensitive();
}
/**
* Returns captcha image height
*
* @param string $formId
* @return int
*/
protected function getImageHeight($formId)
{
return $this->getCaptchaModel($formId)->getHeight();
}
/**
* Returns captcha image source path
*
* @param string $formId
* @return string
*/
protected function getImageSrc($formId)
{
if ($this->isRequired($formId)) {
$captcha = $this->getCaptchaModel($formId);
$captcha->generate();
return $captcha->getImgSrc();
}
return '';
}
/**
* Returns URL to controller action which returns new captcha image
*
* @return string
*/
protected function getRefreshUrl()
{
$store = $this->storeManager->getStore();
return $store->getUrl('captcha/refresh', ['_secure' => $store->isCurrentlySecure()]);
}
/**
* Whether captcha is required to be inserted to this form
*
* @param string $formId
* @return bool
*/
protected function isRequired($formId)
{
return (boolean)$this->getCaptchaModel($formId)->isRequired();
}
/**
* Return captcha model for specified form
*
* @param string $formId
* @return \Magento\Captcha\Model\CaptchaInterface
*/
protected function getCaptchaModel($formId)
{
return $this->captchaData->getCaptcha($formId);
}
}
Function Calls
None |
Stats
MD5 | 2fdf9f7ed55f8f9f47c82cfcb6e706ca |
Eval Count | 0 |
Decode Time | 86 ms |