* SPDX-License-Identifier: AGPL-3.0-or-later */ namespace KTXM\PeopleManager\Controllers; use InvalidArgumentException; use KTXC\Http\Response\JsonResponse; use KTXC\Http\Response\Response; use KTXC\Http\Response\StreamedNdJsonResponse; use KTXC\SessionIdentity; use KTXC\SessionTenant; use KTXF\Controller\ControllerAbstract; use KTXF\Json\JsonSerializable; use KTXF\Resource\Identifier\CollectionIdentifier; use KTXF\Resource\Identifier\EntityIdentifier; use KTXF\Resource\Identifier\ResourceIdentifier; use KTXF\Resource\Identifier\ResourceIdentifiers; use KTXF\Resource\Identifier\ServiceIdentifier; use KTXF\Routing\Attributes\AuthenticatedRoute; use KTXM\PeopleManager\Import\ImportOptions; use KTXM\PeopleManager\Import\ImportService; use KTXM\PeopleManager\Manager; use KTXM\PeopleManager\Stream\ExpectedTotal; use Psr\Log\LoggerInterface; use Throwable; class DefaultController extends ControllerAbstract { private const ERR_MISSING_PROVIDER = 'Missing parameter: provider'; private const ERR_MISSING_IDENTIFIER = 'Missing parameter: identifier'; private const ERR_MISSING_SERVICE = 'Missing parameter: service'; private const ERR_MISSING_DATA = 'Missing parameter: data'; private const ERR_MISSING_SOURCES = 'Missing parameter: sources'; private const ERR_MISSING_TARGET = 'Missing parameter: target'; private const ERR_MISSING_TARGETS = 'Missing parameter: targets'; private const ERR_INVALID_OPERATION = 'Invalid operation: '; private const ERR_INVALID_PROVIDER = 'Invalid parameter: provider must be a string'; private const ERR_INVALID_SERVICE = 'Invalid parameter: service must be a string'; private const ERR_INVALID_COLLECTION = 'Invalid parameter: collection must be a string'; private const ERR_INVALID_IDENTIFIER = 'Invalid parameter: identifier must be a string'; private const ERR_INVALID_SOURCES = 'Invalid parameter: sources must be an array'; private const ERR_INVALID_TARGET = 'Invalid parameter: target must be an array'; private const ERR_INVALID_TARGETS = 'Invalid parameter: targets must be an array'; private const ERR_INVALID_DATA = 'Invalid parameter: data must be an array'; public function __construct( private readonly SessionTenant $tenantIdentity, private readonly SessionIdentity $userIdentity, private readonly Manager $manager, private readonly ImportService $importService, private readonly LoggerInterface $logger, ) {} /** * Main API endpoint for mail operations * * Single operation: * { * "version": 1, * "transaction": "tx-1", * "operation": "entity.create", * "data": {...} * } * * @return JsonResponse */ #[AuthenticatedRoute('/v1', name: 'people.manager.v1', methods: ['POST'])] public function index( int $version, string $transaction, string|null $operation = null, array|null $data = null, string|null $user = null ): Response { // authorize request $tenantId = $this->tenantIdentity->identifier(); $userId = $this->userIdentity->identifier(); try { if ($operation !== null) { $result = $this->processOperation($tenantId, $userId, $operation, $data ?? [], $version, $transaction); if ($result instanceof Response) { return $result; } return new JsonResponse([ 'version' => $version, 'transaction' => $transaction, 'operation' => $operation, 'status' => 'success', 'data' => $result ], JsonResponse::HTTP_OK); } throw new InvalidArgumentException('Operation must be provided'); } catch (Throwable $t) { $this->logger->error('Error processing request', ['exception' => $t]); return new JsonResponse([ 'version' => $version, 'transaction' => $transaction, 'operation' => $operation, 'status' => 'error', 'data' => [ 'code' => $t->getCode(), 'message' => $t->getMessage() ] ], JsonResponse::HTTP_INTERNAL_SERVER_ERROR); } } /** * Process a single operation */ private function processOperation(string $tenantId, string $userId, string $operation, array $data, int $version = 1, string $transaction = ''): mixed { return match ($operation) { // Provider operations 'provider.list' => $this->providerList($tenantId, $userId, $data), 'provider.fetch' => $this->providerFetch($tenantId, $userId, $data), 'provider.extant' => $this->providerExtant($tenantId, $userId, $data), // Service operations 'service.list' => $this->serviceList($tenantId, $userId, $data), 'service.fetch' => $this->serviceFetch($tenantId, $userId, $data), 'service.extant' => $this->serviceExtant($tenantId, $userId, $data), 'service.create' => $this->serviceCreate($tenantId, $userId, $data), 'service.update' => $this->serviceUpdate($tenantId, $userId, $data), 'service.delete' => $this->serviceDelete($tenantId, $userId, $data), 'service.test' => throw new InvalidArgumentException('Operation not implemented: ' . $operation), // Collection operations 'collection.list' => $this->collectionList($tenantId, $userId, $data), 'collection.fetch' => $this->collectionFetch($tenantId, $userId, $data), 'collection.extant' => $this->collectionExtant($tenantId, $userId, $data), 'collection.create' => $this->collectionCreate($tenantId, $userId, $data), 'collection.update' => $this->collectionUpdate($tenantId, $userId, $data), 'collection.delete' => $this->collectionDelete($tenantId, $userId, $data), // Entity operations 'entity.listBulk' => $this->entityListBulk($tenantId, $userId, $data), 'entity.listStream' => $this->entityListStream($tenantId, $userId, $data, $version, $transaction), 'entity.fetch' => $this->entityFetch($tenantId, $userId, $data), 'entity.extant' => $this->entityExtant($tenantId, $userId, $data), 'entity.delta' => $this->entityDelta($tenantId, $userId, $data), 'entity.create' => $this->entityCreate($tenantId, $userId, $data), 'entity.update' => $this->entityUpdate($tenantId, $userId, $data), 'entity.delete' => $this->entityDelete($tenantId, $userId, $data), 'entity.move' => $this->entityMove($tenantId, $userId, $data), 'entity.copy' => $this->entityCopy($tenantId, $userId, $data), 'entity.import' => $this->entityImport($tenantId, $userId, $data, $version, $transaction), default => throw new InvalidArgumentException(self::ERR_INVALID_OPERATION . $operation) }; } // ==================== Provider Operations ==================== private function providerList(string $tenantId, string $userId, array $data): mixed { if (isset($data['targets'])) { if (!is_array($data['targets'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } foreach ($data['targets'] as $target) { if (!is_string($target)) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } } } return $this->manager->providerList($tenantId, $userId, $data['targets'] ?? []); } private function providerFetch(string $tenantId, string $userId, array $data): mixed { if (!isset($data['target'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGET); } if (!is_string($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } return $this->manager->providerFetch($tenantId, $userId, $data['target']); } private function providerExtant(string $tenantId, string $userId, array $data): mixed { if (!isset($data['targets'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGETS); } foreach ($data['targets'] as $target) { if (!is_string($target)) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } } return $this->manager->providerExtant($tenantId, $userId, $data['targets']); } // ==================== Service Operations ===================== private function serviceList(string $tenantId, string $userId, array $data): mixed { $targets = null; if (isset($data['targets']) && is_array($data['targets'])) { $targets = ResourceIdentifiers::fromArray($data['targets']); foreach ($targets as $target) { if (!$target instanceof CollectionIdentifier && !$target instanceof ServiceIdentifier) { throw new InvalidArgumentException('Invalid parameter: targets must contain provider:service, provider:service:collection, or provider:service:collection:entity identifiers'); } } } return $this->manager->serviceList($tenantId, $userId, $targets); } private function serviceFetch(string $tenantId, string $userId, array $data): mixed { if (!isset($data['provider'])) { throw new InvalidArgumentException(self::ERR_MISSING_PROVIDER); } if (!is_string($data['provider'])) { throw new InvalidArgumentException(self::ERR_INVALID_PROVIDER); } if (!isset($data['identifier'])) { throw new InvalidArgumentException(self::ERR_MISSING_IDENTIFIER); } if (!is_string($data['identifier'])) { throw new InvalidArgumentException(self::ERR_INVALID_IDENTIFIER); } return $this->manager->serviceFetch($tenantId, $userId, $data['provider'], $data['identifier']); } private function serviceExtant(string $tenantId, string $userId, array $data): mixed { if (!isset($data['targets'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGETS); } if (!is_array($data['targets'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } $targets = ResourceIdentifiers::fromArray($data['targets']); foreach ($targets as $target) { if (!$target instanceof ServiceIdentifier) { throw new InvalidArgumentException('Invalid parameter: targets must contain provider:service identifiers'); } } return $this->manager->serviceExtant($tenantId, $userId, $targets); } private function serviceCreate(string $tenantId, string $userId, array $data): mixed { if (!isset($data['provider'])) { throw new InvalidArgumentException(self::ERR_MISSING_PROVIDER); } if (!is_string($data['provider'])) { throw new InvalidArgumentException(self::ERR_INVALID_PROVIDER); } if (!isset($data['data'])) { throw new InvalidArgumentException(self::ERR_MISSING_DATA); } if (!is_array($data['data'])) { throw new InvalidArgumentException(self::ERR_INVALID_DATA); } return $this->manager->serviceCreate( $tenantId, $userId, $data['provider'], $data['data'] ); } private function serviceUpdate(string $tenantId, string $userId, array $data): mixed { if (!isset($data['provider'])) { throw new InvalidArgumentException(self::ERR_MISSING_PROVIDER); } if (!is_string($data['provider'])) { throw new InvalidArgumentException(self::ERR_INVALID_PROVIDER); } if (!isset($data['identifier'])) { throw new InvalidArgumentException(self::ERR_MISSING_IDENTIFIER); } if (!is_string($data['identifier'])) { throw new InvalidArgumentException(self::ERR_INVALID_IDENTIFIER); } if (!isset($data['data'])) { throw new InvalidArgumentException(self::ERR_MISSING_DATA); } if (!is_array($data['data'])) { throw new InvalidArgumentException(self::ERR_INVALID_DATA); } if (isset($data['delta']) && !is_bool($data['delta'])) { throw new InvalidArgumentException('Invalid parameter: delta must be a boolean'); } return $this->manager->serviceUpdate( $tenantId, $userId, $data['provider'], $data['identifier'], $data['data'], $data['delta'] ?? false, ); } private function serviceDelete(string $tenantId, string $userId, array $data): mixed { if (!isset($data['provider'])) { throw new InvalidArgumentException(self::ERR_MISSING_PROVIDER); } if (!is_string($data['provider'])) { throw new InvalidArgumentException(self::ERR_INVALID_PROVIDER); } if (!isset($data['identifier'])) { throw new InvalidArgumentException(self::ERR_MISSING_IDENTIFIER); } if (!is_string($data['identifier'])) { throw new InvalidArgumentException(self::ERR_INVALID_IDENTIFIER); } return $this->manager->serviceDelete( $tenantId, $userId, $data['provider'], $data['identifier'] ); } // ==================== Collection Operations ==================== private function collectionList(string $tenantId, string $userId, array $data): mixed { $sources = null; if (isset($data['sources']) && is_array($data['sources'])) { $sources = ResourceIdentifiers::fromArray($data['sources']); foreach ($sources as $source) { if (!$source instanceof CollectionIdentifier && !$source instanceof ServiceIdentifier) { throw new InvalidArgumentException('Invalid parameter: sources must contain provider:service, provider:service:collection, or provider:service:collection:entity identifiers'); } } } $filter = $data['filter'] ?? null; $sort = $data['sort'] ?? null; return $this->manager->collectionList($tenantId, $userId, $sources, $filter, $sort); } private function collectionFetch(string $tenantId, string $userId, array $data): mixed { if (!isset($data['targets'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGETS); } if (!is_array($data['targets'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } $targetIdentifiers = ResourceIdentifiers::fromArray($data['targets']); foreach ($targetIdentifiers as $targetIdentifier) { if (!$targetIdentifier instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection'); } } $list = $this->manager->collectionFetch( $tenantId, $userId, $targetIdentifier ); return $list; } private function collectionExtant(string $tenantId, string $userId, array $data): mixed { if (!isset($data['targets'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGETS); } if (!is_array($data['targets'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } $sources = ResourceIdentifiers::fromArray($data['targets']); foreach ($sources as $source) { if (!$source instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: targets must contain provider:service, provider:service:collection, or provider:service:collection:entity identifiers'); } } return $this->manager->collectionExtant($tenantId, $userId, $sources); } private function collectionCreate(string $tenantId, string $userId, array $data): mixed { if (!isset($data['provider'])) { throw new InvalidArgumentException(self::ERR_MISSING_PROVIDER); } if (!is_string($data['provider'])) { throw new InvalidArgumentException(self::ERR_INVALID_PROVIDER); } if (!isset($data['service'])) { throw new InvalidArgumentException(self::ERR_MISSING_SERVICE); } if (!is_string($data['service'])) { throw new InvalidArgumentException(self::ERR_INVALID_SERVICE); } if (isset($data['target']) && !is_string($data['target']) && !is_int($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } if (!isset($data['properties'])) { throw new InvalidArgumentException(self::ERR_MISSING_DATA); } if (!is_array($data['properties'])) { throw new InvalidArgumentException(self::ERR_INVALID_DATA); } if (isset($data['target'])) { $targetIdentifier = ResourceIdentifier::fromString($data['target']); if (!$targetIdentifier instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection'); } } return $this->manager->collectionCreate( $tenantId, $userId, $data['provider'], $data['service'], $targetIdentifier ?? null, $data['properties'] ); } private function collectionUpdate(string $tenantId, string $userId, array $data): mixed { if (!isset($data['target'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGET); } if (!is_string($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } if (!isset($data['properties'])) { throw new InvalidArgumentException(self::ERR_MISSING_DATA); } if (!is_array($data['properties'])) { throw new InvalidArgumentException(self::ERR_INVALID_DATA); } $targetIdentifier = ResourceIdentifier::fromString($data['target']); if (!$targetIdentifier instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection'); } return $this->manager->collectionUpdate( $tenantId, $userId, $targetIdentifier, $data['properties'] ); } private function collectionDelete(string $tenantId, string $userId, array $data): mixed { if (!isset($data['target'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGET); } if (!is_string($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } $targetIdentifier = ResourceIdentifier::fromString($data['target']); if (!$targetIdentifier instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection'); } $result = $this->manager->collectionDelete($tenantId, $userId, $targetIdentifier, $data['options'] ?? [] ); if (is_bool($result)) { return [ 'disposition' => 'deleted' ]; } if ($result instanceof JsonSerializable) { return [ 'disposition' => 'moved', 'mutation' => $result ]; } return $result; } // ==================== Entity Operations ==================== private function entityListBulk(string $tenantId, string $userId, array $data): mixed { if (isset($data['sources'])) { if (!is_array($data['sources'])) { throw new InvalidArgumentException(self::ERR_INVALID_SOURCES); } $sources = ResourceIdentifiers::fromArray($data['sources']); foreach ($sources as $source) { if (!$source instanceof ServiceIdentifier && !$source instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: sources must contain provider:service or provider:service:collection identifiers'); } } } else { $sources = null; } $filter = $data['filter'] ?? null; $sort = $data['sort'] ?? null; $range = $data['range'] ?? null; return $this->manager->entityListBulk($tenantId, $userId, $sources, $filter, $sort, $range); } private function entityListStream(string $tenantId, string $userId, array $data, int $version, string $transaction): StreamedNdJsonResponse { if (isset($data['sources'])) { if (!is_array($data['sources'])) { throw new InvalidArgumentException(self::ERR_INVALID_SOURCES); } $sources = ResourceIdentifiers::fromArray($data['sources']); foreach ($sources as $source) { if (!$source instanceof ServiceIdentifier && !$source instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: sources must contain provider:service or provider:service:collection identifiers'); } } } else { $sources = null; } $filter = $data['filter'] ?? null; $sort = $data['sort'] ?? null; $range = $data['range'] ?? null; $entities = $this->manager->entityListStream($tenantId, $userId, $sources, $filter, $sort, $range); return new StreamedNdJsonResponse( $this->streamEnvelope($entities, $version, $transaction), 1, 200, ['Content-Type' => 'application/json'], ); } /** * Import vCards into a collection, streaming one NDJSON event per contact. * * Request data: { target: "provider:service:collection", data: "", options?: {...} } */ private function entityImport(string $tenantId, string $userId, array $data, int $version, string $transaction): StreamedNdJsonResponse { if (!isset($data['target'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGET); } if (!is_string($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } if (!isset($data['data']) || !is_string($data['data']) || trim($data['data']) === '') { throw new InvalidArgumentException('Invalid parameter: data must be a non-empty string'); } $target = ResourceIdentifier::fromString($data['target']); if (!$target instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection'); } $options = ImportOptions::fromArray($data['options'] ?? []); // Spill the payload to a temp file and release the in-memory copy before the // (potentially long) streaming parse, so peak memory stays at one contact object. $tempFile = tmpfile(); if ($tempFile === false) { throw new \RuntimeException('Unable to allocate temporary file for import'); } fwrite($tempFile, $data['data']); unset($data); rewind($tempFile); $events = $this->importService->import($tempFile, $target, $options, $tenantId, $userId); $frames = $this->streamEnvelope($events, $version, $transaction); // Stream the envelope, releasing the spilled temp file once it is fully // drained (or the client disconnects) so it never outlives its stream. $response = (function () use ($frames, $tempFile): \Generator { try { yield from $frames; } finally { fclose($tempFile); } })(); return new StreamedNdJsonResponse($response, 1, 200); } /** * Wrap a generator of JsonSerializable domain objects in the canonical NDJSON * stream envelope shared by every streaming operation: * * control:start {version, transaction, total?} — total? = expected count * data {data} — one per domain object * error {message} — on failure, then stop * control:end {total} — total = objects emitted * * If the generator leads with an {@see ExpectedTotal} event, its value is * folded into the start frame's `total` (the progress denominator) rather * than emitted as a data frame. * * @param \Generator<\JsonSerializable> $items */ private function streamEnvelope(\Generator $items, int $version, string $transaction): \Generator { // Peek the first event: an expected-total marker rides on the start frame. $expected = null; $items->rewind(); if ($items->valid() && $items->current() instanceof ExpectedTotal) { $expected = $items->current()->expectedTotal(); $items->next(); } $start = ['type' => 'control', 'status' => 'start', 'version' => $version, 'transaction' => $transaction]; if ($expected !== null) { $start['total'] = $expected; } yield $start; $total = 0; try { for (; $items->valid(); $items->next()) { $item = $items->current(); if (!$item instanceof \JsonSerializable) { continue; } yield ['type' => 'data', 'data' => $item->jsonSerialize()]; $total++; } } catch (\Throwable $t) { $this->logger->error('Error streaming response', ['exception' => $t]); yield ['type' => 'error', 'message' => $t->getMessage()]; return; } yield ['type' => 'control', 'status' => 'end', 'total' => $total]; } private function entityFetch(string $tenantId, string $userId, array $data): mixed { if (!isset($data['targets'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGETS); } if (!is_array($data['targets'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } $targets = ResourceIdentifiers::fromArray($data['targets']); foreach ($targets as $target) { if (!$target instanceof EntityIdentifier) { throw new InvalidArgumentException('Invalid parameter: targets must contain provider:service:collection:entity identifiers'); } } return $this->manager->entityFetchBulk( $tenantId, $userId, ...$targets->all() ); } private function entityExtant(string $tenantId, string $userId, array $data): mixed { if (!isset($data['targets'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGETS); } if (!is_array($data['targets'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } $targets = ResourceIdentifiers::fromArray($data['targets']); foreach ($targets as $target) { if (!$target instanceof CollectionIdentifier && !$target instanceof EntityIdentifier) { throw new InvalidArgumentException('Invalid parameter: targets must contain provider:service:collection or provider:service:collection:entity identifiers'); } } return $this->manager->entityExtant($tenantId, $userId, $targets); } private function entityDelta(string $tenantId, string $userId, array $data): mixed { if (!isset($data['targets'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGETS); } if (!is_array($data['targets'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } $targets = ResourceIdentifiers::fromArray($data['targets']); foreach ($targets as $target) { if (!$target instanceof CollectionIdentifier && !$target instanceof EntityIdentifier) { throw new InvalidArgumentException('Invalid parameter: targets must contain provider:service:collection or provider:service:collection:signature identifiers'); } } return $this->manager->entityDelta($tenantId, $userId, $targets); } private function entityCreate(string $tenantId, string $userId, array $data = []): mixed { if (!isset($data['target'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGET); } if (!is_string($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } if (!isset($data['properties'])) { throw new InvalidArgumentException(self::ERR_MISSING_DATA); } if (!is_array($data['properties'])) { throw new InvalidArgumentException(self::ERR_INVALID_DATA); } $target = ResourceIdentifier::fromString($data['target']); if (!$target instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection'); } $options = $data['options'] ?? []; return $this->manager->entityCreate($tenantId, $userId, $target, $data['properties'], $options); } private function entityUpdate(string $tenantId, string $userId, array $data = []): mixed { if (!isset($data['target'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGET); } if (!is_string($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } if (!isset($data['properties'])) { throw new InvalidArgumentException(self::ERR_MISSING_DATA); } if (!is_array($data['properties'])) { throw new InvalidArgumentException(self::ERR_INVALID_DATA); } $target = ResourceIdentifier::fromString($data['target']); if (!$target instanceof EntityIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection:entity'); } return $this->manager->entityModify($tenantId, $userId, $target, $data['properties']); } private function entityDelete(string $tenantId, string $userId, array $data): mixed { if (!isset($data['targets'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGETS); } if (!is_array($data['targets'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGETS); } $targets = ResourceIdentifiers::fromArray($data['targets']); foreach ($targets as $target) { if (!$target instanceof EntityIdentifier) { throw new InvalidArgumentException('Invalid parameter: targets must contain provider:service:collection:entity identifiers'); } } return $this->manager->entityDelete($tenantId, $userId, ...$targets->all()); } private function entityMove(string $tenantId, string $userId, array $data): mixed { if (!isset($data['target'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGET); } if (!is_string($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } if (!isset($data['sources'])) { throw new InvalidArgumentException(self::ERR_MISSING_SOURCES); } if (!is_array($data['sources'])) { throw new InvalidArgumentException(self::ERR_INVALID_SOURCES); } $target = ResourceIdentifier::fromString($data['target']); if (!$target instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection'); } $sources = ResourceIdentifiers::fromArray($data['sources']); foreach ($sources as $source) { if (!$source instanceof EntityIdentifier) { throw new InvalidArgumentException('Invalid parameter: sources must contain provider:service:collection:entity identifiers'); } } return $this->manager->entityMove($tenantId, $userId, $target, ...$sources->all()); } private function entityCopy(string $tenantId, string $userId, array $data): mixed { if (!isset($data['target'])) { throw new InvalidArgumentException(self::ERR_MISSING_TARGET); } if (!is_string($data['target'])) { throw new InvalidArgumentException(self::ERR_INVALID_TARGET); } if (!isset($data['sources'])) { throw new InvalidArgumentException(self::ERR_MISSING_SOURCES); } if (!is_array($data['sources'])) { throw new InvalidArgumentException(self::ERR_INVALID_SOURCES); } $target = ResourceIdentifier::fromString($data['target']); if (!$target instanceof CollectionIdentifier) { throw new InvalidArgumentException('Invalid parameter: target must be provider:service:collection'); } $sources = ResourceIdentifiers::fromArray($data['sources']); foreach ($sources as $source) { if (!$source instanceof EntityIdentifier) { throw new InvalidArgumentException('Invalid parameter: sources must contain provider:service:collection:entity identifiers'); } } return $this->manager->entityCopy($tenantId, $userId, $target, ...$sources->all()); } }