LazyUserFolder.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2022 Robin Appelman <robin@icewind.nl>
  5. *
  6. * @license GNU AGPL version 3 or any later version
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License as
  10. * published by the Free Software Foundation, either version 3 of the
  11. * License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. namespace OC\Files\Node;
  23. use OCP\Files\FileInfo;
  24. use OCP\Constants;
  25. use OCP\Files\IRootFolder;
  26. use OCP\Files\NotFoundException;
  27. use OCP\IUser;
  28. class LazyUserFolder extends LazyFolder {
  29. private IRootFolder $root;
  30. private IUser $user;
  31. private string $path;
  32. public function __construct(IRootFolder $rootFolder, IUser $user) {
  33. $this->root = $rootFolder;
  34. $this->user = $user;
  35. $this->path = '/' . $user->getUID() . '/files';
  36. parent::__construct(function () use ($user) {
  37. try {
  38. return $this->root->get('/' . $user->getUID() . '/files');
  39. } catch (NotFoundException $e) {
  40. if (!$this->root->nodeExists('/' . $user->getUID())) {
  41. $this->root->newFolder('/' . $user->getUID());
  42. }
  43. return $this->root->newFolder('/' . $user->getUID() . '/files');
  44. }
  45. }, [
  46. 'path' => $this->path,
  47. 'permissions' => Constants::PERMISSION_ALL,
  48. 'type' => FileInfo::TYPE_FOLDER,
  49. 'mimetype' => FileInfo::MIMETYPE_FOLDER,
  50. ]);
  51. }
  52. public function get($path) {
  53. return $this->root->get('/' . $this->user->getUID() . '/files/' . ltrim($path, '/'));
  54. }
  55. /**
  56. * @param int $id
  57. * @return \OC\Files\Node\Node[]
  58. */
  59. public function getById($id) {
  60. return $this->root->getByIdInPath((int)$id, $this->getPath());
  61. }
  62. }