From fdfeb7f265bfaef46bab8f3b506df6f69807d435 Mon Sep 17 00:00:00 2001 From: Elizabeth Danzberger Date: Wed, 18 Dec 2024 16:42:16 -0500 Subject: feat(api): File conversion API Signed-off-by: Elizabeth Danzberger --- .../lib/Controller/ConversionApiController.php | 95 ++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 apps/files/lib/Controller/ConversionApiController.php (limited to 'apps/files/lib/Controller/ConversionApiController.php') diff --git a/apps/files/lib/Controller/ConversionApiController.php b/apps/files/lib/Controller/ConversionApiController.php new file mode 100644 index 00000000000..1a1b7da1787 --- /dev/null +++ b/apps/files/lib/Controller/ConversionApiController.php @@ -0,0 +1,95 @@ + + * + * 201: File was converted and written to the destination or temporary file + * + * @throws OCSException The file was unable to be converted + * @throws OCSNotFoundException The file to be converted was not found + */ + #[NoAdminRequired] + #[UserRateLimit(limit: 25, period: 120)] + #[ApiRoute(verb: 'POST', url: '/api/v1/convert')] + public function convert(int $fileId, string $targetMimeType, ?string $destination = null): DataResponse { + $userFolder = $this->rootFolder->getUserFolder($this->userId); + $file = $userFolder->getFirstNodeById($fileId); + + if (!($file instanceof File)) { + throw new OCSNotFoundException($this->l10n->t('The file cannot be found')); + } + + if ($destination !== null) { + $destination = PathHelper::normalizePath($destination); + $parentDir = dirname($destination); + + if (!$userFolder->nodeExists($parentDir)) { + throw new OCSNotFoundException($this->l10n->t('The destination path does not exist: %1$s', [$parentDir])); + } + + if (!$userFolder->get($parentDir)->isCreatable()) { + throw new OCSForbiddenException(); + } + + $destination = $userFolder->getFullPath($destination); + } + + try { + $convertedFile = $this->fileConversionManager->convert($file, $targetMimeType, $destination); + } catch (\Exception $e) { + throw new OCSException($e->getMessage()); + } + + $convertedFileRelativePath = $userFolder->getRelativePath($convertedFile); + if ($convertedFileRelativePath === null) { + throw new OCSNotFoundException($this->l10n->t('Could not get relative path to converted file')); + } + + return new DataResponse([ + 'path' => $convertedFileRelativePath, + ], Http::STATUS_CREATED); + } +} -- cgit v1.2.3