Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

RestoreFolder.php 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright 2018, Roeland Jago Douma <roeland@famdouma.nl>
  5. *
  6. * @author Robin Appelman <robin@icewind.nl>
  7. * @author Roeland Jago Douma <roeland@famdouma.nl>
  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_Versions\Sabre;
  26. use Sabre\DAV\Exception\Forbidden;
  27. use Sabre\DAV\ICollection;
  28. use Sabre\DAV\IMoveTarget;
  29. use Sabre\DAV\INode;
  30. class RestoreFolder implements ICollection, IMoveTarget {
  31. public function createFile($name, $data = null) {
  32. throw new Forbidden();
  33. }
  34. public function createDirectory($name) {
  35. throw new Forbidden();
  36. }
  37. public function getChild($name) {
  38. return null;
  39. }
  40. public function delete() {
  41. throw new Forbidden();
  42. }
  43. public function getName() {
  44. return 'restore';
  45. }
  46. public function setName($name) {
  47. throw new Forbidden();
  48. }
  49. public function getLastModified(): int {
  50. return 0;
  51. }
  52. public function getChildren(): array {
  53. return [];
  54. }
  55. public function childExists($name): bool {
  56. return false;
  57. }
  58. public function moveInto($targetName, $sourcePath, INode $sourceNode): bool {
  59. if (!($sourceNode instanceof VersionFile)) {
  60. return false;
  61. }
  62. $sourceNode->rollBack();
  63. return true;
  64. }
  65. }