DataWizard/Application/Model/ExportRenderer/Json.php

55 lines
1.4 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
{
/**
2024-05-13 15:31:29 +02:00
* @param iterable $rows
* @param iterable $fieldNames
2021-10-29 11:39:56 +02:00
*
* @return string
* @throws RenderException
*/
2024-05-13 15:31:29 +02:00
public function getContent( iterable $rows, iterable $fieldNames): string
2021-10-29 11:39:56 +02:00
{
2021-11-10 13:52:26 +01:00
try {
2024-05-13 15:31:29 +02:00
$flags = JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES;
return json_encode($rows, $flags);
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
}