feat: add CategoryImportController for bulk JSON import and export of categories

- Implemented export functionality to retrieve all rows from specified category tables.
- Developed import functionality with strict validation and referential integrity checks.
- Added error handling for various import scenarios including invalid formats and duplicate entries.
- Introduced tests for import functionality to ensure correct behavior and validation.
This commit is contained in:
hamed
2026-06-30 21:51:06 +03:30
parent 803196108c
commit 22937dfa56
22 changed files with 2473 additions and 835 deletions
@@ -0,0 +1,326 @@
<?php
namespace App\Category\Controller;
use App\Shared\Controller\BaseController;
use Doctrine\DBAL\Connection;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Attribute\Route;
use Symfony\Component\Security\Http\Attribute\IsGranted;
use Symfony\Component\Uid\Uuid;
use OpenApi\Attributes as OA;
/**
* Bulk JSON import for the admin "دسته‌بندی‌ها" page (all six tabs).
*
* Consumes the exact JSON produced by each tab's "خروجی JSON" export
* (an array of objects shaped like the entity's toArray()).
*
* Behaviour:
* - Strict two-phase validation: the WHOLE file is validated first; if any
* row is invalid, nothing is written and every error is returned (HTTP 422).
* - Wipe + full replace: on success the target table is emptied and rebuilt
* from the file, preserving the raw `id` of each row so relations
* (parent_id / province_id / specialty_id) stay intact.
* - The whole replace runs inside one transaction with FK checks disabled.
*/
#[OA\Tag(name: 'Categories')]
#[IsGranted('ROLE_ADMIN')]
class CategoryImportController extends BaseController
{
/** bundle => table name */
private const TABLES = [
'provinces' => 'provinces',
'cities' => 'cities',
'specialties' => 'specialties',
'doctor_services' => 'doctor_services',
'insurances' => 'insurances',
'tags' => 'tags',
];
public function __construct(
private readonly Connection $db,
) {}
/**
* Complete export of a bundle — EVERY row, no pagination cap.
*
* The page's old "خروجی JSON" button pointed at the admin list endpoint,
* which silently caps at 100 rows. Feeding that truncated file back into the
* wipe+replace import deletes the tail. This endpoint returns the full table
* so the export/import round-trip is lossless.
*/
#[Route('/api/v1/admin/categories/{bundle}/export', methods: ['GET'])]
public function export(string $bundle): JsonResponse
{
$table = self::TABLES[$bundle] ?? null;
if ($table === null) {
return $this->error('ERR_BUNDLE_UNKNOWN', 'نوع دسته‌بندی نامعتبر است', 404, 'bundle');
}
$rows = $this->db->fetchAllAssociative('SELECT * FROM ' . $table . ' ORDER BY id ASC');
// normalize numeric columns so the JSON matches the entity shape
foreach ($rows as &$r) {
foreach (['id', 'status', 'weight', 'parent_id', 'specialty_id', 'province_id', 'representation_id'] as $intCol) {
if (array_key_exists($intCol, $r) && $r[$intCol] !== null) {
$r[$intCol] = (int) $r[$intCol];
}
}
}
unset($r);
return $this->success($rows);
}
#[Route('/api/v1/admin/categories/{bundle}/import', methods: ['POST'])]
public function import(string $bundle, Request $request): JsonResponse
{
$table = self::TABLES[$bundle] ?? null;
if ($table === null) {
return $this->error('ERR_BUNDLE_UNKNOWN', 'نوع دسته‌بندی نامعتبر است', 404, 'bundle');
}
$payload = json_decode($request->getContent(), true);
// accept both a raw array and { "items": [...] }
if (is_array($payload) && isset($payload['items']) && is_array($payload['items'])) {
$payload = $payload['items'];
}
if (!is_array($payload) || $payload === [] || array_keys($payload) !== range(0, count($payload) - 1)) {
return $this->error('ERR_IMPORT_FORMAT', 'فایل باید یک آرایه‌ی غیرخالی از رکوردها باشد', 422, 'file');
}
if (count($payload) > 5000) {
return $this->error('ERR_IMPORT_TOO_LARGE', 'حداکثر ۵۰۰۰ رکورد در هر import مجاز است', 422, 'file');
}
// ── Phase 1: strict validation ───────────────────────────────────────
$errors = [];
$rows = []; // normalized, ready-to-insert column maps
$seenId = []; // id => row index (uniqueness within file)
$seenSlug = []; // slug => row index
foreach ($payload as $i => $raw) {
$rowNo = $i + 1;
$add = function (string $field, string $message) use (&$errors, $rowNo): void {
$errors[] = ['row' => $rowNo, 'field' => $field, 'message' => "ردیف {$rowNo}: {$message}"];
};
if (!is_array($raw) || array_keys($raw) === range(0, count($raw) - 1)) {
$add('-', 'ساختار رکورد نامعتبر است');
continue;
}
// id — required, positive int, unique in file (relations rely on it)
$id = $raw['id'] ?? null;
if (!self::isPositiveInt($id)) {
$add('id', 'شناسه (id) باید عدد صحیح مثبت باشد');
} elseif (isset($seenId[(int) $id])) {
$add('id', "شناسه {$id} تکراری است (ردیف {$seenId[(int) $id]})");
} else {
$seenId[(int) $id] = $rowNo;
}
// name — required non-empty string ≤255
$name = $raw['name'] ?? null;
if (!is_string($name) || trim($name) === '') {
$add('name', 'نام الزامی است');
} elseif (mb_strlen($name) > 255) {
$add('name', 'نام نباید بیش از ۲۵۵ نویسه باشد');
}
// status — 0 or 1
$status = self::normInt($raw['status'] ?? 1);
if ($status === null || !in_array($status, [0, 1], true)) {
$add('status', 'وضعیت باید ۰ یا ۱ باشد');
}
$row = [
'id' => self::isPositiveInt($id) ? (int) $id : null,
'uuid' => (is_string($raw['uuid'] ?? null) && $raw['uuid'] !== '') ? mb_substr($raw['uuid'], 0, 36) : Uuid::v4()->toRfc4122(),
'name' => is_string($name) ? trim($name) : '',
'status' => $status ?? 1,
];
// weight — int ≥0 (only bundles whose table has a weight column)
if (in_array($bundle, ['provinces', 'cities', 'specialties', 'doctor_services'], true)) {
$weight = self::normInt($raw['weight'] ?? 0);
if ($weight === null || $weight < 0) {
$add('weight', 'ترتیب نمایش باید عدد صحیح نامنفی باشد');
}
$row['weight'] = $weight ?? 0;
}
// slug — required for bundles that have it, unique in file
if (in_array($bundle, ['specialties', 'doctor_services', 'tags'], true)) {
$slug = $raw['slug'] ?? null;
if (!is_string($slug) || trim($slug) === '') {
$add('slug', 'slug الزامی است');
} elseif (mb_strlen($slug) > 255) {
$add('slug', 'slug نباید بیش از ۲۵۵ نویسه باشد');
} else {
$slug = trim($slug);
if (isset($seenSlug[$slug])) {
$add('slug', "slug «{$slug}» تکراری است (ردیف {$seenSlug[$slug]})");
} else {
$seenSlug[$slug] = $rowNo;
}
$row['slug'] = $slug;
}
}
// bundle-specific columns
switch ($bundle) {
case 'specialties':
$row['parent_id'] = self::nullableId($raw['parent_id'] ?? null, $add, 'parent_id');
break;
case 'doctor_services':
$row['specialty_id'] = self::nullableId($raw['specialty_id'] ?? null, $add, 'specialty_id');
break;
case 'insurances':
$type = $raw['type'] ?? null;
if (!in_array($type, ['basic', 'supplementary'], true)) {
$add('type', 'نوع بیمه باید basic یا supplementary باشد');
}
$row['type'] = is_string($type) ? $type : 'basic';
$row['logo_url'] = self::optStr($raw['logo_url'] ?? null);
break;
case 'cities':
$row['province_id'] = self::nullableId($raw['province_id'] ?? null, $add, 'province_id');
$row['representation_id'] = self::nullableId($raw['representation_id'] ?? null, $add, 'representation_id');
$row['contact_phone'] = self::optStr($raw['contact_phone'] ?? null);
$row['email'] = self::optStr($raw['email'] ?? null);
$row['description'] = self::optStr($raw['description'] ?? null);
$row['slogan'] = self::optStr($raw['slogan'] ?? null);
$row['domain'] = self::optStr($raw['domain'] ?? null);
$row['keywords'] = self::optStr($raw['keywords'] ?? null);
$row['footer_description'] = self::optStr($raw['footer_description'] ?? null);
$row['logo_url'] = self::optStr($raw['logo_url'] ?? null);
$sm = $raw['social_media'] ?? null;
$row['social_media'] = ($sm === null || $sm === '') ? null : (is_string($sm) ? $sm : json_encode($sm, JSON_UNESCAPED_UNICODE));
break;
}
$rows[] = $row;
}
// referential integrity (only meaningful once ids are collected)
$this->validateReferences($bundle, $rows, $seenId, $errors);
if ($errors !== []) {
return new JsonResponse(['success' => false, 'data' => null, 'errors' => $errors], 422);
}
// ── Phase 2: wipe + replace inside a transaction ─────────────────────
$this->db->beginTransaction();
try {
$this->db->executeStatement('SET FOREIGN_KEY_CHECKS = 0');
$this->db->executeStatement('DELETE FROM ' . $table);
foreach ($rows as $row) {
$this->db->insert($table, $row);
}
$this->db->executeStatement('SET FOREIGN_KEY_CHECKS = 1');
$this->db->commit();
} catch (\Throwable $e) {
$this->db->rollBack();
try { $this->db->executeStatement('SET FOREIGN_KEY_CHECKS = 1'); } catch (\Throwable) {}
return $this->error('ERR_IMPORT_FAILED', 'خطا در ذخیره‌سازی: ' . $e->getMessage(), 500);
}
return $this->success(['imported' => count($rows)]);
}
/**
* Cross-row / cross-table reference checks.
* - specialties.parent_id must point to an id present in the same file.
* - cities.province_id / cities.representation_id / doctor_services.specialty_id
* must exist in their (un-wiped) reference tables.
*/
private function validateReferences(string $bundle, array $rows, array $seenId, array &$errors): void
{
$err = function (int $rowNo, string $field, string $message) use (&$errors): void {
$errors[] = ['row' => $rowNo, 'field' => $field, 'message' => "ردیف {$rowNo}: {$message}"];
};
if ($bundle === 'specialties') {
foreach ($rows as $idx => $r) {
$p = $r['parent_id'] ?? null;
if ($p !== null && !isset($seenId[$p])) {
$err($idx + 1, 'parent_id', "والد با شناسه {$p} در همین فایل وجود ندارد");
}
}
return;
}
if ($bundle === 'doctor_services') {
$valid = $this->existingIds('specialties');
foreach ($rows as $idx => $r) {
$s = $r['specialty_id'] ?? null;
if ($s !== null && !isset($valid[$s])) {
$err($idx + 1, 'specialty_id', "تخصص با شناسه {$s} در سیستم وجود ندارد");
}
}
return;
}
if ($bundle === 'cities') {
$validProv = $this->existingIds('provinces');
$validRep = $this->existingIds('representations');
foreach ($rows as $idx => $r) {
$pv = $r['province_id'] ?? null;
if ($pv !== null && !isset($validProv[$pv])) {
$err($idx + 1, 'province_id', "استان با شناسه {$pv} وجود ندارد");
}
$rp = $r['representation_id'] ?? null;
if ($rp !== null && !isset($validRep[$rp])) {
$err($idx + 1, 'representation_id', "نماینده با شناسه {$rp} وجود ندارد");
}
}
}
}
/** @return array<int,true> set of existing ids in a table */
private function existingIds(string $table): array
{
$ids = $this->db->fetchFirstColumn('SELECT id FROM ' . $table);
$set = [];
foreach ($ids as $id) {
$set[(int) $id] = true;
}
return $set;
}
private static function isPositiveInt(mixed $v): bool
{
return (is_int($v) || (is_string($v) && ctype_digit($v))) && (int) $v > 0;
}
private static function normInt(mixed $v): ?int
{
if (is_int($v)) return $v;
if (is_string($v) && preg_match('/^-?\d+$/', $v)) return (int) $v;
return null;
}
/** Validate an optional FK-style id: null stays null, otherwise must be positive int. */
private static function nullableId(mixed $v, callable $add, string $field): ?int
{
if ($v === null || $v === '' || $v === 0 || $v === '0') return null;
if (!self::isPositiveInt($v)) {
$add($field, "{$field} باید عدد صحیح مثبت یا خالی باشد");
return null;
}
return (int) $v;
}
private static function optStr(mixed $v): ?string
{
if ($v === null) return null;
if (!is_string($v)) return null;
$v = trim($v);
return $v === '' ? null : $v;
}
}