1
0

SimpleFolder.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /**
  3. * @copyright 2016 Roeland Jago Douma <roeland@famdouma.nl>
  4. *
  5. * @author Roeland Jago Douma <roeland@famdouma.nl>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OC\Files\SimpleFS;
  24. use OCP\Files\File;
  25. use OCP\Files\Folder;
  26. use OCP\Files\Node;
  27. use OCP\Files\NotFoundException;
  28. use OCP\Files\SimpleFS\ISimpleFolder;
  29. class SimpleFolder implements ISimpleFolder {
  30. /** @var Folder */
  31. private $folder;
  32. /**
  33. * Folder constructor.
  34. *
  35. * @param Folder $folder
  36. */
  37. public function __construct(Folder $folder) {
  38. $this->folder = $folder;
  39. }
  40. public function getName() {
  41. return $this->folder->getName();
  42. }
  43. public function getDirectoryListing() {
  44. $listing = $this->folder->getDirectoryListing();
  45. $fileListing = array_map(function(Node $file) {
  46. if ($file instanceof File) {
  47. return new SimpleFile($file);
  48. }
  49. return null;
  50. }, $listing);
  51. $fileListing = array_filter($fileListing);
  52. return array_values($fileListing);
  53. }
  54. public function delete() {
  55. $this->folder->delete();
  56. }
  57. public function fileExists($name) {
  58. return $this->folder->nodeExists($name);
  59. }
  60. public function getFile($name) {
  61. $file = $this->folder->get($name);
  62. if (!($file instanceof File)) {
  63. throw new NotFoundException();
  64. }
  65. return new SimpleFile($file);
  66. }
  67. public function newFile($name) {
  68. $file = $this->folder->newFile($name);
  69. return new SimpleFile($file);
  70. }
  71. }