Browse Source
files: Create files from template API
files: Create files from template API
Signed-off-by: Julius Härtl <jus@bitgrid.net>pull/25090/head
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
16 changed files with 721 additions and 1 deletions
-
15apps/files/appinfo/routes.php
-
1apps/files/composer/composer/autoload_classmap.php
-
1apps/files/composer/composer/autoload_static.php
-
76apps/files/lib/Controller/TemplateController.php
-
14apps/files/lib/Controller/ViewController.php
-
10apps/files/tests/Controller/ViewControllerTest.php
-
6lib/composer/composer/autoload_classmap.php
-
6lib/composer/composer/autoload_static.php
-
237lib/private/Files/Template/TemplateManager.php
-
3lib/private/Server.php
-
3lib/private/legacy/OC_Util.php
-
64lib/public/Files/Template/CreatedFromTemplateEvent.php
-
51lib/public/Files/Template/ICustomTemplateProvider.php
-
94lib/public/Files/Template/ITemplateManager.php
-
68lib/public/Files/Template/Template.php
-
73lib/public/Files/Template/TemplateFileCreator.php
@ -0,0 +1,76 @@ |
|||||
|
<?php |
||||
|
/* |
||||
|
* @copyright Copyright (c) 2021 Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @author Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @license GNU AGPL version 3 or any later version |
||||
|
* |
||||
|
* 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 <http://www.gnu.org/licenses/>. |
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
declare(strict_types=1); |
||||
|
|
||||
|
namespace OCA\Files\Controller; |
||||
|
|
||||
|
use OCP\AppFramework\Http\DataResponse; |
||||
|
use OCP\AppFramework\OCS\OCSForbiddenException; |
||||
|
use OCP\AppFramework\OCSController; |
||||
|
use OCP\Files\GenericFileException; |
||||
|
use OCP\Files\Template\ITemplateManager; |
||||
|
use OCP\IRequest; |
||||
|
|
||||
|
class TemplateController extends OCSController { |
||||
|
protected $templateManager; |
||||
|
|
||||
|
public function __construct($appName, IRequest $request, ITemplateManager $templateManager) { |
||||
|
parent::__construct($appName, $request); |
||||
|
$this->templateManager = $templateManager; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* @NoAdminRequired |
||||
|
*/ |
||||
|
public function list(): DataResponse { |
||||
|
return new DataResponse($this->templateManager->listCreators()); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* @NoAdminRequired |
||||
|
* @throws OCSForbiddenException |
||||
|
*/ |
||||
|
public function create(string $filePath, string $templatePath = '', string $templateType = 'user'): DataResponse { |
||||
|
try { |
||||
|
return new DataResponse($this->templateManager->createFromTemplate($filePath, $templatePath, $templateType)); |
||||
|
} catch (GenericFileException $e) { |
||||
|
throw new OCSForbiddenException($e->getMessage()); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* @NoAdminRequired |
||||
|
*/ |
||||
|
public function path(string $templatePath = '', bool $copySystemTemplates = false) { |
||||
|
try { |
||||
|
$this->templateManager->setTemplatePath($templatePath); |
||||
|
if ($copySystemTemplates) { |
||||
|
$this->templateManager->initializeTemplateDirectory($templatePath); |
||||
|
} |
||||
|
return new DataResponse(); |
||||
|
} catch (GenericFileException $e) { |
||||
|
throw new OCSForbiddenException($e->getMessage()); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,237 @@ |
|||||
|
<?php |
||||
|
/* |
||||
|
* @copyright Copyright (c) 2021 Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @author Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @license GNU AGPL version 3 or any later version |
||||
|
* |
||||
|
* 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 <http://www.gnu.org/licenses/>. |
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
declare(strict_types=1); |
||||
|
|
||||
|
|
||||
|
namespace OC\Files\Template; |
||||
|
|
||||
|
use OCP\EventDispatcher\IEventDispatcher; |
||||
|
use OCP\Files\Folder; |
||||
|
use OCP\Files\File; |
||||
|
use OCP\Files\GenericFileException; |
||||
|
use OCP\Files\IRootFolder; |
||||
|
use OCP\Files\Node; |
||||
|
use OCP\Files\NotFoundException; |
||||
|
use OCP\Files\Template\CreatedFromTemplateEvent; |
||||
|
use OCP\Files\Template\ICustomTemplateProvider; |
||||
|
use OCP\Files\Template\ITemplateManager; |
||||
|
use OCP\Files\Template\Template; |
||||
|
use OCP\Files\Template\TemplateFileCreator; |
||||
|
use OCP\IConfig; |
||||
|
use OCP\IPreview; |
||||
|
use OCP\IServerContainer; |
||||
|
use OCP\IUserSession; |
||||
|
use OCP\L10N\IFactory; |
||||
|
use Psr\Log\LoggerInterface; |
||||
|
|
||||
|
class TemplateManager implements ITemplateManager { |
||||
|
private $types = []; |
||||
|
|
||||
|
private $registeredProviders = []; |
||||
|
private $providers; |
||||
|
|
||||
|
private $serverContainer; |
||||
|
private $eventDispatcher; |
||||
|
private $rootFolder; |
||||
|
private $previewManager; |
||||
|
private $config; |
||||
|
private $l10n; |
||||
|
private $logger; |
||||
|
private $userId; |
||||
|
|
||||
|
public function __construct( |
||||
|
IServerContainer $serverContainer, |
||||
|
IEventDispatcher $eventDispatcher, |
||||
|
IRootFolder $rootFolder, |
||||
|
IUserSession $userSession, |
||||
|
IPreview $previewManager, |
||||
|
IConfig $config, |
||||
|
IFactory $l10n, |
||||
|
LoggerInterface $logger |
||||
|
) { |
||||
|
$this->serverContainer = $serverContainer; |
||||
|
$this->eventDispatcher = $eventDispatcher; |
||||
|
$this->rootFolder = $rootFolder; |
||||
|
$this->previewManager = $previewManager; |
||||
|
$this->config = $config; |
||||
|
$this->l10n = $l10n->get('lib'); |
||||
|
$this->logger = $logger; |
||||
|
$user = $userSession->getUser(); |
||||
|
$this->userId = $user ? $user->getUID() : null; |
||||
|
} |
||||
|
|
||||
|
public function registerTemplateFileCreator(TemplateFileCreator $templateType): void { |
||||
|
$this->types[] = $templateType; |
||||
|
} |
||||
|
|
||||
|
public function registerTemplateProvider(string $providerClass): void { |
||||
|
$this->registeredProviders[] = $providerClass; |
||||
|
} |
||||
|
|
||||
|
public function getRegisteredProviders(): array { |
||||
|
if ($this->providers !== null) { |
||||
|
return $this->providers; |
||||
|
} |
||||
|
$this->providers = []; |
||||
|
foreach ($this->registeredProviders as $providerClass) { |
||||
|
$this->providers[$providerClass] = $this->serverContainer->get($providerClass); |
||||
|
} |
||||
|
return $this->providers; |
||||
|
} |
||||
|
|
||||
|
public function listCreators(): array { |
||||
|
return array_map(function (TemplateFileCreator $entry) { |
||||
|
return array_merge($entry->jsonSerialize(), [ |
||||
|
'templates' => $this->getTemplateFiles($entry) |
||||
|
]); |
||||
|
}, $this->types); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* @param string $filePath |
||||
|
* @param string $templateId |
||||
|
* @return array |
||||
|
* @throws GenericFileException |
||||
|
*/ |
||||
|
public function createFromTemplate(string $filePath, string $templateId = '', string $templateType = 'user'): array { |
||||
|
$userFolder = $this->rootFolder->getUserFolder($this->userId); |
||||
|
try { |
||||
|
$userFolder->get($filePath); |
||||
|
throw new GenericFileException($this->l10n->t('File already exists')); |
||||
|
} catch (NotFoundException $e) { |
||||
|
} |
||||
|
try { |
||||
|
$targetFile = $userFolder->newFile($filePath); |
||||
|
if ($templateType === 'user' && $templateId !== '') { |
||||
|
$template = $userFolder->get($templateId); |
||||
|
$template->copy($targetFile->getPath()); |
||||
|
} else { |
||||
|
$matchingProvider = array_filter($this->getRegisteredProviders(), function (ICustomTemplateProvider $provider) use ($templateType) { |
||||
|
return $templateType === get_class($provider); |
||||
|
}); |
||||
|
$provider = array_shift($matchingProvider); |
||||
|
if ($provider) { |
||||
|
$template = $provider->getCustomTemplate($templateId); |
||||
|
$template->copy($targetFile->getPath()); |
||||
|
} |
||||
|
} |
||||
|
$this->eventDispatcher->dispatchTyped(new CreatedFromTemplateEvent($template, $targetFile)); |
||||
|
return $this->formatFile($userFolder->get($filePath)); |
||||
|
} catch (\Exception $e) { |
||||
|
$this->logger->error($e->getMessage(), ['exception' => $e]); |
||||
|
throw new GenericFileException($this->l10n->t('Failed to create file from template')); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* @return Folder |
||||
|
* @throws \OCP\Files\NotFoundException |
||||
|
* @throws \OCP\Files\NotPermittedException |
||||
|
* @throws \OC\User\NoUserException |
||||
|
*/ |
||||
|
private function getTemplateFolder(): Node { |
||||
|
return $this->rootFolder->getUserFolder($this->userId)->get($this->getTemplatePath()); |
||||
|
} |
||||
|
|
||||
|
private function getTemplateFiles(TemplateFileCreator $type): array { |
||||
|
$templates = []; |
||||
|
foreach ($this->getRegisteredProviders() as $provider) { |
||||
|
foreach ($type->getMimetypes() as $mimetype) { |
||||
|
foreach ($provider->getCustomTemplates($mimetype) as $template) { |
||||
|
$templates[] = $template; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
try { |
||||
|
$userTemplateFolder = $this->getTemplateFolder(); |
||||
|
} catch (\Exception $e) { |
||||
|
return $templates; |
||||
|
} |
||||
|
foreach ($type->getMimetypes() as $mimetype) { |
||||
|
foreach ($userTemplateFolder->searchByMime($mimetype) as $templateFile) { |
||||
|
$template = new Template( |
||||
|
'user', |
||||
|
$this->rootFolder->getUserFolder($this->userId)->getRelativePath($templateFile->getPath()), |
||||
|
$templateFile |
||||
|
); |
||||
|
$template->setHasPreview($this->previewManager->isAvailable($templateFile)); |
||||
|
$templates[] = $template; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
return $templates; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* @param Node|File $file |
||||
|
* @return array |
||||
|
* @throws NotFoundException |
||||
|
* @throws \OCP\Files\InvalidPathException |
||||
|
*/ |
||||
|
private function formatFile(Node $file): array { |
||||
|
return [ |
||||
|
'basename' => $file->getName(), |
||||
|
'etag' => $file->getEtag(), |
||||
|
'fileid' => $file->getId(), |
||||
|
'filename' => $this->rootFolder->getUserFolder($this->userId)->getRelativePath($file->getPath()), |
||||
|
'lastmod' => $file->getMTime(), |
||||
|
'mime' => $file->getMimetype(), |
||||
|
'size' => $file->getSize(), |
||||
|
'type' => $file->getType(), |
||||
|
'hasPreview' => $this->previewManager->isAvailable($file) |
||||
|
]; |
||||
|
} |
||||
|
|
||||
|
public function hasTemplateDirectory(): bool { |
||||
|
try { |
||||
|
$this->getTemplateFolder(); |
||||
|
return true; |
||||
|
} catch (\Exception $e) { |
||||
|
} |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
public function setTemplatePath(string $path): void { |
||||
|
$this->config->setUserValue($this->userId, 'core', 'templateDirectory', $path); |
||||
|
} |
||||
|
|
||||
|
public function getTemplatePath(): string { |
||||
|
return $this->config->getUserValue($this->userId, 'core', 'templateDirectory', $this->l10n->t('Templates') . '/'); |
||||
|
} |
||||
|
|
||||
|
public function initializeTemplateDirectory(string $path = null, string $userId = null): void { |
||||
|
if ($userId !== null) { |
||||
|
$this->userId = $userId; |
||||
|
} |
||||
|
$userFolder = $this->rootFolder->getUserFolder($this->userId); |
||||
|
$templateDirectoryPath = $path ?? $this->l10n->t('Templates') . '/'; |
||||
|
try { |
||||
|
$userFolder->get($templateDirectoryPath); |
||||
|
} catch (NotFoundException $e) { |
||||
|
$folder = $userFolder->newFolder($templateDirectoryPath); |
||||
|
$folder->newFile('Testtemplate.txt'); |
||||
|
} |
||||
|
$this->setTemplatePath($templateDirectoryPath); |
||||
|
} |
||||
|
} |
@ -0,0 +1,64 @@ |
|||||
|
<?php |
||||
|
/* |
||||
|
* @copyright Copyright (c) 2021 Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @author Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @license GNU AGPL version 3 or any later version |
||||
|
* |
||||
|
* 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 <http://www.gnu.org/licenses/>. |
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
declare(strict_types=1); |
||||
|
|
||||
|
|
||||
|
namespace OCP\Files\Template; |
||||
|
|
||||
|
use OCP\EventDispatcher\Event; |
||||
|
use OCP\Files\File; |
||||
|
|
||||
|
/** |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
class CreatedFromTemplateEvent extends Event { |
||||
|
private $template; |
||||
|
private $target; |
||||
|
|
||||
|
/** |
||||
|
* @param File|null $template |
||||
|
* @param File $target |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function __construct(?File $template, File $target) { |
||||
|
$this->template = $template; |
||||
|
$this->target = $target; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* @return File|null |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function getTemplate(): ?File { |
||||
|
return $this->template; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* @return File |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function getTarget(): File { |
||||
|
return $this->target; |
||||
|
} |
||||
|
} |
@ -0,0 +1,51 @@ |
|||||
|
<?php |
||||
|
/* |
||||
|
* @copyright Copyright (c) 2021 Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @author Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @license GNU AGPL version 3 or any later version |
||||
|
* |
||||
|
* 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 <http://www.gnu.org/licenses/>. |
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
declare(strict_types=1); |
||||
|
|
||||
|
|
||||
|
namespace OCP\Files\Template; |
||||
|
|
||||
|
use OCP\Files\File; |
||||
|
|
||||
|
/** |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
interface ICustomTemplateProvider { |
||||
|
/** |
||||
|
* Return a list of additional templates that the template provider is offering |
||||
|
* |
||||
|
* @return File[] |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function getCustomTemplates(string $mimetype): array; |
||||
|
|
||||
|
/** |
||||
|
* Return the file for a given template id |
||||
|
* |
||||
|
* @param string $template identifier of the template |
||||
|
* @return File |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function getCustomTemplate(string $template): File; |
||||
|
} |
@ -0,0 +1,94 @@ |
|||||
|
<?php |
||||
|
/* |
||||
|
* @copyright Copyright (c) 2021 Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @author Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @license GNU AGPL version 3 or any later version |
||||
|
* |
||||
|
* 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 <http://www.gnu.org/licenses/>. |
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
declare(strict_types=1); |
||||
|
|
||||
|
|
||||
|
namespace OCP\Files\Template; |
||||
|
|
||||
|
use OCP\Files\GenericFileException; |
||||
|
|
||||
|
/** |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
interface ITemplateManager { |
||||
|
|
||||
|
/** |
||||
|
* Register a template type support |
||||
|
* |
||||
|
* @param TemplateFileCreator $templateType |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function registerTemplateFileCreator(TemplateFileCreator $templateType): void; |
||||
|
|
||||
|
/** |
||||
|
* Register a custom template provider class that is able to inject custom templates |
||||
|
* in addition to the user defined ones |
||||
|
* |
||||
|
* @param string $providerClass |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function registerTemplateProvider(string $providerClass): void; |
||||
|
|
||||
|
/** |
||||
|
* Get a list of available file creators and their offered templates |
||||
|
* |
||||
|
* @return array |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function listCreators(): array; |
||||
|
|
||||
|
/** |
||||
|
* @return bool |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function hasTemplateDirectory(): bool; |
||||
|
|
||||
|
/** |
||||
|
* @param string $path |
||||
|
* @return void |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function setTemplatePath(string $path): void; |
||||
|
|
||||
|
/** |
||||
|
* @return string |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function getTemplatePath(): string; |
||||
|
|
||||
|
/** |
||||
|
* @param string $path |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function initializeTemplateDirectory(string $path): void; |
||||
|
|
||||
|
/** |
||||
|
* @param string $filePath |
||||
|
* @param string $templateId |
||||
|
* @return array |
||||
|
* @throws GenericFileException |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
public function createFromTemplate(string $filePath, string $templateId = '', string $templateType = 'user'): array; |
||||
|
} |
@ -0,0 +1,68 @@ |
|||||
|
<?php |
||||
|
/* |
||||
|
* @copyright Copyright (c) 2021 Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @author Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @license GNU AGPL version 3 or any later version |
||||
|
* |
||||
|
* 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 <http://www.gnu.org/licenses/>. |
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
declare(strict_types=1); |
||||
|
|
||||
|
|
||||
|
namespace OCP\Files\Template; |
||||
|
|
||||
|
use OCP\Files\File; |
||||
|
|
||||
|
class Template implements \JsonSerializable { |
||||
|
protected $templateType; |
||||
|
protected $templateId; |
||||
|
protected $file; |
||||
|
protected $hasPreview = false; |
||||
|
protected $previewUrl; |
||||
|
|
||||
|
final public function __construct(string $templateType, string $templateId, File $file) { |
||||
|
$this->templateType = $templateType; |
||||
|
$this->templateId = $templateId; |
||||
|
$this->file = $file; |
||||
|
} |
||||
|
|
||||
|
final public function setCustomPreviewUrl(string $previewUrl): void { |
||||
|
$this->previewUrl = $previewUrl; |
||||
|
} |
||||
|
|
||||
|
final public function setHasPreview(bool $hasPreview): void { |
||||
|
$this->hasPreview = $hasPreview; |
||||
|
} |
||||
|
|
||||
|
final public function jsonSerialize() { |
||||
|
return [ |
||||
|
'templateType' => $this->templateType, |
||||
|
'templateId' => $this->templateId, |
||||
|
'basename' => $this->file->getName(), |
||||
|
'etag' => $this->file->getEtag(), |
||||
|
'fileid' => $this->file->getId(), |
||||
|
'filename' => $this->templateId, |
||||
|
'lastmod' => $this->file->getMTime(), |
||||
|
'mime' => $this->file->getMimetype(), |
||||
|
'size' => $this->file->getSize(), |
||||
|
'type' => $this->file->getType(), |
||||
|
'hasPreview' => $this->hasPreview, |
||||
|
'previewUrl' => $this->previewUrl |
||||
|
]; |
||||
|
} |
||||
|
} |
@ -0,0 +1,73 @@ |
|||||
|
<?php |
||||
|
/* |
||||
|
* @copyright Copyright (c) 2021 Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @author Julius Härtl <jus@bitgrid.net> |
||||
|
* |
||||
|
* @license GNU AGPL version 3 or any later version |
||||
|
* |
||||
|
* 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 <http://www.gnu.org/licenses/>. |
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
declare(strict_types=1); |
||||
|
|
||||
|
namespace OCP\Files\Template; |
||||
|
|
||||
|
/** |
||||
|
* @since 21.0.0 |
||||
|
*/ |
||||
|
final class TemplateFileCreator implements \JsonSerializable { |
||||
|
protected $appId; |
||||
|
protected $mimetypes = []; |
||||
|
protected $actionName; |
||||
|
protected $fileExtension; |
||||
|
protected $iconClass; |
||||
|
|
||||
|
public function __construct( |
||||
|
string $appId, string $actionName, string $fileExtension |
||||
|
) { |
||||
|
$this->appId = $appId; |
||||
|
$this->actionName = $actionName; |
||||
|
$this->fileExtension = $fileExtension; |
||||
|
} |
||||
|
|
||||
|
public function getAppId(): string { |
||||
|
return $this->appId; |
||||
|
} |
||||
|
|
||||
|
public function setIconClass(string $iconClass): TemplateFileCreator { |
||||
|
$this->iconClass = $iconClass; |
||||
|
return $this; |
||||
|
} |
||||
|
|
||||
|
public function addMimetype(string $mimetype): TemplateFileCreator { |
||||
|
$this->mimetypes[] = $mimetype; |
||||
|
return $this; |
||||
|
} |
||||
|
|
||||
|
public function getMimetypes(): array { |
||||
|
return $this->mimetypes; |
||||
|
} |
||||
|
|
||||
|
public function jsonSerialize() { |
||||
|
return [ |
||||
|
'app' => $this->appId, |
||||
|
'label' => $this->actionName, |
||||
|
'extension' => $this->fileExtension, |
||||
|
'iconClass' => $this->iconClass, |
||||
|
'mimetypes' => $this->mimetypes |
||||
|
]; |
||||
|
} |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue