You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TemplateController.php 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2021 Julius Härtl <jus@bitgrid.net>
  5. *
  6. * @author John Molakvoæ <skjnldsv@protonmail.com>
  7. * @author Julius Härtl <jus@bitgrid.net>
  8. *
  9. * @license GNU AGPL version 3 or any later version
  10. *
  11. * This program is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License as
  13. * published by the Free Software Foundation, either version 3 of the
  14. * License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. *
  24. */
  25. namespace OCA\Files\Controller;
  26. use OCP\AppFramework\Http\DataResponse;
  27. use OCP\AppFramework\OCS\OCSForbiddenException;
  28. use OCP\AppFramework\OCSController;
  29. use OCP\Files\GenericFileException;
  30. use OCP\Files\Template\ITemplateManager;
  31. use OCP\IRequest;
  32. class TemplateController extends OCSController {
  33. protected $templateManager;
  34. public function __construct($appName, IRequest $request, ITemplateManager $templateManager) {
  35. parent::__construct($appName, $request);
  36. $this->templateManager = $templateManager;
  37. }
  38. /**
  39. * @NoAdminRequired
  40. */
  41. public function list(): DataResponse {
  42. return new DataResponse($this->templateManager->listTemplates());
  43. }
  44. /**
  45. * @NoAdminRequired
  46. * @throws OCSForbiddenException
  47. */
  48. public function create(string $filePath, string $templatePath = '', string $templateType = 'user'): DataResponse {
  49. try {
  50. return new DataResponse($this->templateManager->createFromTemplate($filePath, $templatePath, $templateType));
  51. } catch (GenericFileException $e) {
  52. throw new OCSForbiddenException($e->getMessage());
  53. }
  54. }
  55. /**
  56. * @NoAdminRequired
  57. */
  58. public function path(string $templatePath = '', bool $copySystemTemplates = false) {
  59. try {
  60. $templatePath = $this->templateManager->initializeTemplateDirectory($templatePath, null, $copySystemTemplates);
  61. return new DataResponse([
  62. 'template_path' => $templatePath,
  63. 'templates' => $this->templateManager->listCreators()
  64. ]);
  65. } catch (\Exception $e) {
  66. throw new OCSForbiddenException($e->getMessage());
  67. }
  68. }
  69. }