Part-DB-server/src/Services/ImportExportSystem/EntityExporter.php

276 lines
9.9 KiB
PHP
Raw Normal View History

<?php
2020-02-22 18:14:36 +01:00
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
2022-11-29 22:28:53 +01:00
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
2020-02-22 18:14:36 +01:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2020-01-05 15:46:58 +01:00
declare(strict_types=1);
2022-12-18 17:28:42 +01:00
namespace App\Services\ImportExportSystem;
use App\Entity\Base\AbstractNamedDBElement;
use App\Entity\Base\AbstractStructuralDBElement;
use App\Helpers\FilenameSanatizer;
use App\Serializer\APIPlatform\SkippableItemNormalizer;
2023-03-11 22:40:53 +01:00
use Symfony\Component\OptionsResolver\OptionsResolver;
2020-01-05 22:49:00 +01:00
use InvalidArgumentException;
use Symfony\Component\Serializer\Exception\CircularReferenceException;
use Symfony\Component\Serializer\Normalizer\AbstractNormalizer;
2020-01-05 22:49:00 +01:00
use function is_array;
use ReflectionClass;
use ReflectionException;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\ResponseHeaderBag;
use Symfony\Component\Serializer\SerializerInterface;
2023-03-11 22:40:53 +01:00
use function Symfony\Component\String\u;
2025-08-01 19:32:49 +02:00
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
use PhpOffice\PhpSpreadsheet\Writer\Xls;
/**
* Use this class to export an entity to multiple file formats.
2023-06-11 15:02:59 +02:00
* @see \App\Tests\Services\ImportExportSystem\EntityExporterTest
*/
class EntityExporter
{
public function __construct(protected SerializerInterface $serializer)
{
}
2023-03-11 22:40:53 +01:00
protected function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefault('format', 'csv');
2025-08-01 19:32:49 +02:00
$resolver->setAllowedValues('format', ['csv', 'json', 'xml', 'yaml', 'xlsx', 'xls']);
2023-03-11 22:40:53 +01:00
$resolver->setDefault('csv_delimiter', ';');
2023-03-11 22:40:53 +01:00
$resolver->setAllowedTypes('csv_delimiter', 'string');
$resolver->setDefault('level', 'extended');
$resolver->setAllowedValues('level', ['simple', 'extended', 'full']);
$resolver->setDefault('include_children', false);
$resolver->setAllowedTypes('include_children', 'bool');
}
/**
2023-03-11 22:40:53 +01:00
* Export the given entities using the given options.
* @param AbstractNamedDBElement|AbstractNamedDBElement[] $entities The data to export
* @param array $options The options to use for exporting
* @return string The serialized data
*/
2023-06-11 14:55:06 +02:00
public function exportEntities(AbstractNamedDBElement|array $entities, array $options): string
2023-03-11 22:40:53 +01:00
{
if (!is_array($entities)) {
$entities = [$entities];
}
//Ensure that all entities are of type AbstractNamedDBElement
foreach ($entities as $entity) {
if (!$entity instanceof AbstractNamedDBElement) {
throw new InvalidArgumentException('All entities must be of type AbstractNamedDBElement!');
}
}
$resolver = new OptionsResolver();
$this->configureOptions($resolver);
$options = $resolver->resolve($options);
2025-08-01 19:32:49 +02:00
//Handle Excel formats by converting from CSV
if (in_array($options['format'], ['xlsx', 'xls'], true)) {
2025-08-01 19:32:49 +02:00
return $this->exportToExcel($entities, $options);
}
2023-03-11 22:40:53 +01:00
//If include children is set, then we need to add the include_children group
$groups = [$options['level']];
if ($options['include_children']) {
$groups[] = 'include_children';
}
2025-08-02 10:00:04 +02:00
return $this->serializer->serialize(
$entities,
$options['format'],
2023-03-11 22:40:53 +01:00
[
'groups' => $groups,
'as_collection' => true,
'csv_delimiter' => $options['csv_delimiter'],
'xml_root_node_name' => 'PartDBExport',
'partdb_export' => true,
2025-08-02 10:00:04 +02:00
//Skip the item normalizer, so that we dont get IRIs in the output
SkippableItemNormalizer::DISABLE_ITEM_NORMALIZER => true,
2025-08-02 10:00:04 +02:00
//Handle circular references
AbstractNormalizer::CIRCULAR_REFERENCE_HANDLER => $this->handleCircularReference(...),
2023-03-11 22:40:53 +01:00
]
);
}
2025-08-02 10:00:04 +02:00
private function handleCircularReference(object $object): string
{
if ($object instanceof AbstractStructuralDBElement) {
return $object->getFullPath("->");
} elseif ($object instanceof AbstractNamedDBElement) {
return $object->getName();
} elseif ($object instanceof \Stringable) {
return $object->__toString();
}
2025-08-02 10:00:04 +02:00
throw new CircularReferenceException('Circular reference detected for object of type ' . get_class($object));
}
2025-08-01 19:32:49 +02:00
/**
* Exports entities to Excel format (xlsx or xls).
*
* @param AbstractNamedDBElement[] $entities The entities to export
* @param array $options The export options
*
* @return string The Excel file content as binary string
*/
protected function exportToExcel(array $entities, array $options): string
{
//First get CSV data using existing serializer
$groups = [$options['level']];
if ($options['include_children']) {
$groups[] = 'include_children';
}
2025-08-02 10:00:04 +02:00
$csvData = $this->serializer->serialize(
$entities,
'csv',
2025-08-01 19:32:49 +02:00
[
'groups' => $groups,
'as_collection' => true,
'csv_delimiter' => $options['csv_delimiter'],
'partdb_export' => true,
SkippableItemNormalizer::DISABLE_ITEM_NORMALIZER => true,
AbstractNormalizer::CIRCULAR_REFERENCE_HANDLER => $this->handleCircularReference(...),
]
);
//Convert CSV to Excel
$spreadsheet = new Spreadsheet();
$worksheet = $spreadsheet->getActiveSheet();
2025-08-02 10:00:04 +02:00
2025-08-01 19:32:49 +02:00
$rows = explode("\n", $csvData);
$rowIndex = 1;
2025-08-02 10:00:04 +02:00
2025-08-01 19:32:49 +02:00
foreach ($rows as $row) {
if (trim($row) === '') {
continue;
}
2025-08-02 10:00:04 +02:00
$columns = str_getcsv($row, $options['csv_delimiter'], '"', '\\');
2025-08-01 19:32:49 +02:00
$colIndex = 1;
2025-08-02 10:00:04 +02:00
2025-08-01 19:32:49 +02:00
foreach ($columns as $column) {
$cellCoordinate = \PhpOffice\PhpSpreadsheet\Cell\Coordinate::stringFromColumnIndex($colIndex) . $rowIndex;
$worksheet->setCellValue($cellCoordinate, $column);
$colIndex++;
}
$rowIndex++;
}
//Save to memory stream
2025-08-02 10:00:04 +02:00
$writer = $options['format'] === 'xlsx' ? new Xlsx($spreadsheet) : new Xls($spreadsheet);
2025-08-01 19:32:49 +02:00
ob_start();
$writer->save('php://output');
$content = ob_get_contents();
ob_end_clean();
2025-08-02 10:00:04 +02:00
2025-08-01 19:32:49 +02:00
return $content;
}
2023-03-11 22:40:53 +01:00
/**
* Exports an Entity or an array of entities to multiple file formats.
*
2020-04-10 13:05:08 +02:00
* @param Request $request the request that should be used for option resolving
2023-03-11 22:40:53 +01:00
* @param AbstractNamedDBElement|object[] $entities
*
2020-01-04 20:24:09 +01:00
* @return Response the generated response containing the exported data
*
2020-01-05 22:49:00 +01:00
* @throws ReflectionException
*/
2023-06-11 14:55:06 +02:00
public function exportEntityFromRequest(AbstractNamedDBElement|array $entities, Request $request): Response
{
2023-03-11 22:40:53 +01:00
$options = [
'format' => $request->get('format') ?? 'json',
'level' => $request->get('level') ?? 'extended',
2025-08-03 21:59:51 +02:00
'include_children' => $request->request->getBoolean('include_children'),
2023-03-11 22:40:53 +01:00
];
if (!is_array($entities)) {
$entities = [$entities];
}
2023-03-11 22:40:53 +01:00
//Do the serialization with the given options
$serialized_data = $this->exportEntities($entities, $options);
2023-03-11 22:40:53 +01:00
$response = new Response($serialized_data);
2023-03-11 22:40:53 +01:00
//Resolve the format
$optionsResolver = new OptionsResolver();
$this->configureOptions($optionsResolver);
$options = $optionsResolver->resolve($options);
//Determine the content type for the response
//Try to use better content types based on the format
2023-03-11 22:40:53 +01:00
$format = $options['format'];
2025-08-02 10:00:04 +02:00
$content_type = match ($format) {
'xml' => 'application/xml',
'json' => 'application/json',
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'xls' => 'application/vnd.ms-excel',
default => 'text/plain',
};
$response->headers->set('Content-Type', $content_type);
//If view option is not specified, then download the file.
2020-08-21 21:36:22 +02:00
if (!$request->get('view')) {
2023-03-11 22:40:53 +01:00
//Determine the filename
//When we only have one entity, then we can use the name of the entity
if (count($entities) === 1) {
$entity_name = $entities[0]->getName();
} else {
2023-03-11 22:40:53 +01:00
//Use the class name of the first element for the filename otherwise
$reflection = new ReflectionClass($entities[0]);
$entity_name = $reflection->getShortName();
}
2023-03-11 22:40:53 +01:00
$level = $options['level'];
2025-08-02 10:00:04 +02:00
$filename = "export_{$entity_name}_{$level}.{$format}";
//Sanitize the filename
$filename = FilenameSanatizer::sanitizeFilename($filename);
// Create the disposition of the file
$disposition = $response->headers->makeDisposition(
ResponseHeaderBag::DISPOSITION_ATTACHMENT,
$filename,
2023-03-11 22:40:53 +01:00
u($filename)->ascii()->toString(),
);
// Set the content disposition
$response->headers->set('Content-Disposition', $disposition);
}
return $response;
}
}