Blame view

sources/3rdparty/sabre/dav/lib/Sabre/DAV/FSExt/File.php 3.33 KB
03e52840d   Kload   Init
1
  <?php
6d9380f96   Cédric Dupont   Update sources OC...
2
3
  namespace Sabre\DAV\FSExt;
  use Sabre\DAV;
03e52840d   Kload   Init
4
5
6
  /**
   * File class
   *
6d9380f96   Cédric Dupont   Update sources OC...
7
8
9
   * @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
10
   */
6d9380f96   Cédric Dupont   Update sources OC...
11
  class File extends Node implements DAV\PartialUpdate\IPatchSupport {
03e52840d   Kload   Init
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  
      /**
       * Updates the data
       *
       * data is a readable stream resource.
       *
       * @param resource|string $data
       * @return string
       */
      public function put($data) {
  
          file_put_contents($this->path,$data);
          return '"' . md5_file($this->path) . '"';
  
      }
  
      /**
6d9380f96   Cédric Dupont   Update sources OC...
29
30
31
32
33
34
35
36
37
38
39
40
       * Updates the file based on a range specification.
       *
       * The first argument is the data, which is either a readable stream
       * resource or a string.
       *
       * The second argument is the type of update we're doing.
       * This is either:
       * * 1. append
       * * 2. update based on a start byte
       * * 3. update based on an end byte
       *;
       * The third argument is the start or end byte.
03e52840d   Kload   Init
41
       *
6d9380f96   Cédric Dupont   Update sources OC...
42
43
44
       * After a successful put operation, you may choose to return an ETag. The
       * etag must always be surrounded by double-quotes. These quotes must
       * appear in the actual string you're returning.
03e52840d   Kload   Init
45
       *
6d9380f96   Cédric Dupont   Update sources OC...
46
47
48
49
50
51
52
53
       * Clients may use the ETag from a PUT request to later on make sure that
       * when they update the file, the contents haven't changed in the mean
       * time.
       *
       * @param resource|string $data
       * @param int $rangeType
       * @param int $offset
       * @return string|null
03e52840d   Kload   Init
54
       */
6d9380f96   Cédric Dupont   Update sources OC...
55
      public function patch($data, $rangeType, $offset = null) {
03e52840d   Kload   Init
56

6d9380f96   Cédric Dupont   Update sources OC...
57
58
59
60
61
62
63
64
65
66
67
68
69
          switch($rangeType) {
              case 1 :
                  $f = fopen($this->path, 'a');
                  break;
              case 2 :
                  $f = fopen($this->path, 'c');
                  fseek($f,$offset);
                  break;
              case 3 :
                  $f = fopen($this->path, 'c');
                  fseek($f, $offset, SEEK_END);
                  break;
          }
03e52840d   Kload   Init
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
131
132
133
134
135
136
137
138
139
140
141
142
143
          if (is_string($data)) {
              fwrite($f, $data);
          } else {
              stream_copy_to_stream($data,$f);
          }
          fclose($f);
          return '"' . md5_file($this->path) . '"';
  
      }
  
      /**
       * Returns the data
       *
       * @return resource
       */
      public function get() {
  
          return fopen($this->path,'r');
  
      }
  
      /**
       * Delete the current file
       *
       * @return bool
       */
      public function delete() {
  
          unlink($this->path);
          return parent::delete();
  
      }
  
      /**
       * Returns the ETag for a file
       *
       * An ETag is a unique identifier representing the current version of the file. If the file changes, the ETag MUST change.
       * The ETag is an arbitrary string, but MUST be surrounded by double-quotes.
       *
       * Return null if the ETag can not effectively be determined
       *
       * @return string|null
       */
      public function getETag() {
  
          return '"' . md5_file($this->path). '"';
  
      }
  
      /**
       * Returns the mime-type for a file
       *
       * If null is returned, we'll assume application/octet-stream
       *
       * @return string|null
       */
      public function getContentType() {
  
          return null;
  
      }
  
      /**
       * Returns the size of the file, in bytes
       *
       * @return int
       */
      public function getSize() {
  
          return filesize($this->path);
  
      }
  
  }