Files
2019-11-17 19:14:07 +01:00

194 lines
4.4 KiB
PHP

<?php
/*
* 2007-2018 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2018 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
namespace PrestaShop\Module\AutoUpgrade;
use PrestaShop\Module\AutoUpgrade\Log\Logger;
use PrestaShop\Module\AutoUpgrade\Parameters\UpgradeConfiguration;
/**
* Class creating the content to return at an ajax call.
*/
class AjaxResponse
{
/**
* Used during upgrade.
*
* @var bool Supposed to store a boolean in case of error
*/
private $error = false;
/**
* Used during upgrade.
*
* @var bool Inform when the step is completed
*/
private $stepDone = true;
/**
* Used during upgrade. "N/A" as value otherwise.
*
* @var string Next step to call (can be the same as the previous one)
*/
private $next = 'N/A';
/**
* @var array Params to send (upgrade conf, details on the work to do ...)
*/
private $nextParams = array();
/**
* Request format of the data to return.
* Seems to be never modified. Converted as const.
*/
const RESPONSE_FORMAT = 'json';
/**
* @var UpgradeConfiguration
*/
private $upgradeConfiguration;
/**
* @var Logger
*/
private $logger;
/**
* @var State
*/
private $state;
public function __construct(State $state, Logger $logger)
{
$this->state = $state;
$this->logger = $logger;
}
/**
* @return array of data to ready to be returned to caller
*/
public function getResponse()
{
$return = array(
'error' => $this->error,
'stepDone' => $this->stepDone,
'next' => $this->next,
'status' => $this->getStatus(),
'next_desc' => $this->logger->getLastInfo(),
'nextQuickInfo' => $this->logger->getInfos(),
'nextErrors' => $this->logger->getErrors(),
'nextParams' => array_merge(
$this->nextParams,
$this->state->export(),
array(
'typeResult' => self::RESPONSE_FORMAT,
'config' => $this->upgradeConfiguration->toArray(),
)
),
);
return $return;
}
/**
* @return string Json encoded response from $this->getResponse()
*/
public function getJson()
{
return json_encode($this->getResponse());
}
// GETTERS
public function getError()
{
return $this->error;
}
public function getStepDone()
{
return $this->stepDone;
}
public function getNext()
{
return $this->next;
}
public function getStatus()
{
return $this->getNext() == 'error' ? 'error' : 'ok';
}
public function getNextParams()
{
return $this->nextParams;
}
public function getUpgradeConfiguration()
{
return $this->upgradeConfiguration;
}
// SETTERS
public function setError($error)
{
$this->error = (bool) $error;
return $this;
}
public function setStepDone($stepDone)
{
$this->stepDone = $stepDone;
return $this;
}
public function setNext($next)
{
$this->next = $next;
return $this;
}
public function setNextParams($nextParams)
{
$this->nextParams = $nextParams;
return $this;
}
public function setUpgradeConfiguration(UpgradeConfiguration $upgradeConfiguration)
{
$this->upgradeConfiguration = $upgradeConfiguration;
return $this;
}
}