Capabilities.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christopher Schäpers <kondou@ts.unde.re>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Roeland Jago Douma <roeland@famdouma.nl>
  8. * @author Tom Needham <tom@owncloud.com>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  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, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OCA\Files_Versions;
  26. use OCP\App\IAppManager;
  27. use OCP\Capabilities\ICapability;
  28. use OCP\IConfig;
  29. class Capabilities implements ICapability {
  30. private IConfig $config;
  31. private IAppManager $appManager;
  32. public function __construct(
  33. IConfig $config,
  34. IAppManager $appManager
  35. ) {
  36. $this->config = $config;
  37. $this->appManager = $appManager;
  38. }
  39. /**
  40. * Return this classes capabilities
  41. *
  42. * @return array{files: array{versioning: bool, version_labeling: bool, version_deletion: bool}}
  43. */
  44. public function getCapabilities() {
  45. return [
  46. 'files' => [
  47. 'versioning' => true,
  48. 'version_labeling' => $this->config->getSystemValueBool('enable_version_labeling', true),
  49. 'version_deletion' => $this->config->getSystemValueBool('enable_version_deletion', true),
  50. ]
  51. ];
  52. }
  53. }