45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
|
|
use PrestaShop\Module\PsEventbus\Controller\AbstractApiController;
|
|
use PrestaShop\Module\PsEventbus\Exception\EnvVarException;
|
|
use PrestaShop\Module\PsEventbus\Repository\ServerInformationRepository;
|
|
|
|
class ps_EventbusApiInfoModuleFrontController extends AbstractApiController
|
|
{
|
|
public $type = 'shops';
|
|
|
|
/**
|
|
* @throws PrestaShopException
|
|
*
|
|
* @return void
|
|
*/
|
|
public function postProcess()
|
|
{
|
|
$response = [];
|
|
|
|
$jobId = Tools::getValue('job_id');
|
|
|
|
$serverInformationRepository = $this->module->getService(ServerInformationRepository::class);
|
|
|
|
$serverInfo = $serverInformationRepository->getServerInformation(Tools::getValue('lang_iso', null));
|
|
|
|
try {
|
|
$response = $this->proxyService->upload($jobId, $serverInfo, $this->startTime);
|
|
} catch (EnvVarException $exception) {
|
|
$this->exitWithExceptionMessage($exception);
|
|
} catch (Exception $exception) {
|
|
$this->exitWithExceptionMessage($exception);
|
|
}
|
|
|
|
$this->exitWithResponse(
|
|
array_merge(
|
|
[
|
|
'remaining_objects' => 0,
|
|
'total_objects' => 1,
|
|
],
|
|
$response
|
|
)
|
|
);
|
|
}
|
|
}
|