Blame view

sources/3rdparty/sabre/dav/lib/Sabre/DAV/Tree/Filesystem.php 3.01 KB
03e52840d   Kload   Init
1
  <?php
6d9380f96   Cédric Dupont   Update sources OC...
2
3
4
  namespace Sabre\DAV\Tree;
  
  use Sabre\DAV;
03e52840d   Kload   Init
5
  /**
6d9380f96   Cédric Dupont   Update sources OC...
6
7
8
9
10
   * FileSystem Tree
   *
   * This class is an alternative to the standard ObjectTree. This tree can only
   * use Sabre\DAV\FS\Directory and File classes, but as a result it allows for a few
   * optimizations that otherwise wouldn't be possible.
03e52840d   Kload   Init
11
   *
6d9380f96   Cédric Dupont   Update sources OC...
12
13
14
15
16
   * Specifically copying and moving are much, much faster.
   *
   * @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
   * @author Evert Pot (http://evertpot.com/)
   * @license http://sabre.io/license/ Modified BSD License
03e52840d   Kload   Init
17
   */
6d9380f96   Cédric Dupont   Update sources OC...
18
  class Filesystem extends DAV\Tree {
03e52840d   Kload   Init
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  
      /**
       * Base url on the filesystem.
       *
       * @var string
       */
      protected $basePath;
  
      /**
       * Creates this tree
       *
       * Supply the path you'd like to share.
       *
       * @param string $basePath
       */
      public function __construct($basePath) {
  
          $this->basePath = $basePath;
  
      }
  
      /**
       * Returns a new node for the given path
       *
       * @param string $path
6d9380f96   Cédric Dupont   Update sources OC...
44
       * @return DAV\FS\Node
03e52840d   Kload   Init
45
46
47
48
       */
      public function getNodeForPath($path) {
  
          $realPath = $this->getRealPath($path);
6d9380f96   Cédric Dupont   Update sources OC...
49
50
51
          if (!file_exists($realPath)) { 
              throw new DAV\Exception\NotFound('File at location ' . $realPath . ' not found');
          }
03e52840d   Kload   Init
52
          if (is_dir($realPath)) {
6d9380f96   Cédric Dupont   Update sources OC...
53
              return new DAV\FS\Directory($realPath);
03e52840d   Kload   Init
54
          } else {
6d9380f96   Cédric Dupont   Update sources OC...
55
              return new DAV\FS\File($realPath);
03e52840d   Kload   Init
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
          }
  
      }
  
      /**
       * Returns the real filesystem path for a webdav url.
       *
       * @param string $publicPath
       * @return string
       */
      protected function getRealPath($publicPath) {
  
          return rtrim($this->basePath,'/') . '/' . trim($publicPath,'/');
  
      }
  
      /**
       * Copies a file or directory.
       *
       * This method must work recursively and delete the destination
       * if it exists
       *
       * @param string $source
       * @param string $destination
       * @return void
       */
      public function copy($source,$destination) {
  
          $source = $this->getRealPath($source);
          $destination = $this->getRealPath($destination);
          $this->realCopy($source,$destination);
  
      }
  
      /**
       * Used by self::copy
       *
       * @param string $source
       * @param string $destination
       * @return void
       */
      protected function realCopy($source,$destination) {
  
          if (is_file($source)) {
              copy($source,$destination);
          } else {
              mkdir($destination);
              foreach(scandir($source) as $subnode) {
  
                  if ($subnode=='.' || $subnode=='..') continue;
                  $this->realCopy($source.'/'.$subnode,$destination.'/'.$subnode);
  
              }
          }
  
      }
  
      /**
       * Moves a file or directory recursively.
       *
       * If the destination exists, delete it first.
       *
       * @param string $source
       * @param string $destination
       * @return void
       */
      public function move($source,$destination) {
  
          $source = $this->getRealPath($source);
          $destination = $this->getRealPath($destination);
          rename($source,$destination);
  
      }
  
  }