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\Analytics\Model;
use Magento\Analytics\Model\Config\Backend\Baseurl\SubscriptionUpdateHandler;
use Magento\Analytics\Model\Connector\OTPRequest;
use Magento\Analytics\Model\Exception\State\SubscriptionUpdateException;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\FlagManager;
/**
* Provide URL on resource with reports.
*/
class ReportUrlProvider
{
/**
* Resource for handling MBI token value.
*
* @var AnalyticsToken
*/
private $analyticsToken;
/**
* Resource which provide OTP.
*
* @var OTPRequest
*/
private $otpRequest;
/**
* @var ScopeConfigInterface
*/
private $config;
/**
* @var FlagManager
*/
private $flagManager;
/**
* Path to config value with URL which provide reports.
*
* @var string
*/
private $urlReportConfigPath = 'analytics/url/report';
/**
* Path to Advanced Reporting documentation URL.
*
* @var string
*/
private $urlReportDocConfigPath = 'analytics/url/documentation';
/**
* @param AnalyticsToken $analyticsToken
* @param OTPRequest $otpRequest
* @param ScopeConfigInterface $config
* @param FlagManager $flagManager
*/
public function __construct(
AnalyticsToken $analyticsToken,
OTPRequest $otpRequest,
ScopeConfigInterface $config,
FlagManager $flagManager
) {
$this->analyticsToken = $analyticsToken;
$this->otpRequest = $otpRequest;
$this->config = $config;
$this->flagManager = $flagManager;
}
/**
* Provide URL on resource with reports.
*
* @return string
* @throws SubscriptionUpdateException
*/
public function getUrl()
{
if ($this->flagManager->getFlagData(SubscriptionUpdateHandler::PREVIOUS_BASE_URL_FLAG_CODE)) {
throw new SubscriptionUpdateException(__(
'Your Base URL has been changed and your reports are being updated. '
. 'Advanced Reporting will be available once this change has been processed. Please try again later.'
));
}
if ($this->analyticsToken->isTokenExist()) {
$url = $this->config->getValue($this->urlReportConfigPath);
$otp = $this->otpRequest->call();
if ($otp) {
$query = http_build_query(['otp' => $otp], '', '&');
$url .= '?' . $query;
}
} else {
$url = $this->config->getValue($this->urlReportDocConfigPath);
}
return $url;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Analytics\Model;
use Magento\Analytics\Model\Config\Backend\Baseurl\SubscriptionUpdateHandler;
use Magento\Analytics\Model\Connector\OTPRequest;
use Magento\Analytics\Model\Exception\State\SubscriptionUpdateException;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\FlagManager;
/**
* Provide URL on resource with reports.
*/
class ReportUrlProvider
{
/**
* Resource for handling MBI token value.
*
* @var AnalyticsToken
*/
private $analyticsToken;
/**
* Resource which provide OTP.
*
* @var OTPRequest
*/
private $otpRequest;
/**
* @var ScopeConfigInterface
*/
private $config;
/**
* @var FlagManager
*/
private $flagManager;
/**
* Path to config value with URL which provide reports.
*
* @var string
*/
private $urlReportConfigPath = 'analytics/url/report';
/**
* Path to Advanced Reporting documentation URL.
*
* @var string
*/
private $urlReportDocConfigPath = 'analytics/url/documentation';
/**
* @param AnalyticsToken $analyticsToken
* @param OTPRequest $otpRequest
* @param ScopeConfigInterface $config
* @param FlagManager $flagManager
*/
public function __construct(
AnalyticsToken $analyticsToken,
OTPRequest $otpRequest,
ScopeConfigInterface $config,
FlagManager $flagManager
) {
$this->analyticsToken = $analyticsToken;
$this->otpRequest = $otpRequest;
$this->config = $config;
$this->flagManager = $flagManager;
}
/**
* Provide URL on resource with reports.
*
* @return string
* @throws SubscriptionUpdateException
*/
public function getUrl()
{
if ($this->flagManager->getFlagData(SubscriptionUpdateHandler::PREVIOUS_BASE_URL_FLAG_CODE)) {
throw new SubscriptionUpdateException(__(
'Your Base URL has been changed and your reports are being updated. '
. 'Advanced Reporting will be available once this change has been processed. Please try again later.'
));
}
if ($this->analyticsToken->isTokenExist()) {
$url = $this->config->getValue($this->urlReportConfigPath);
$otp = $this->otpRequest->call();
if ($otp) {
$query = http_build_query(['otp' => $otp], '', '&');
$url .= '?' . $query;
}
} else {
$url = $this->config->getValue($this->urlReportDocConfigPath);
}
return $url;
}
}
Function Calls
| None |
Stats
| MD5 | 41c2fef1798a6832fc2c53f524092250 |
| Eval Count | 0 |
| Decode Time | 119 ms |