DataWizard/Application/Model/ExportRenderer/Json.php

56 lines
1.3 KiB
PHP
Raw Normal View History

2021-10-29 11:39:56 +02:00
<?php
/**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2022-01-17 10:59:18 +01:00
*
2021-10-29 11:39:56 +02:00
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
declare(strict_types=1);
namespace D3\DataWizard\Application\Model\ExportRenderer;
use D3\DataWizard\Application\Model\Exceptions\RenderException;
2021-11-10 13:52:26 +01:00
use JsonException;
2021-10-29 11:39:56 +02:00
class Json implements RendererInterface
{
/**
* @param $rows
* @param $fieldNames
*
* @return string
* @throws RenderException
*/
public function getContent($rows, $fieldNames): string
{
2021-11-10 13:52:26 +01:00
try {
$flags = JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR;
2022-01-17 10:59:18 +01:00
$json = json_encode($rows, $flags);
2021-11-10 13:52:26 +01:00
return $json;
2022-01-17 10:59:18 +01:00
} catch (JsonException $e) {
2021-11-10 13:52:26 +01:00
/** @var RenderException $newException */
2022-01-17 10:59:18 +01:00
$newException = oxNew(RenderException::class, $e->getMessage(), $e->getCode(), $e);
2021-11-10 13:52:26 +01:00
throw $newException;
2021-10-29 11:39:56 +02:00
}
}
public function getFileExtension(): string
{
return 'json';
}
/**
* @return string
*/
public function getTitleTranslationId(): string
{
return "D3_DATAWIZARD_EXPORT_FORMAT_JSON";
}
2022-01-17 10:59:18 +01:00
}