|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Gaufrette; |
|
4
|
|
|
|
|
5
|
|
|
use Gaufrette\Adapter\MetadataSupporter; |
|
6
|
|
|
use Gaufrette\Exception\FileNotFound; |
|
7
|
|
|
|
|
8
|
|
|
/** |
|
9
|
|
|
* Points to a file in a filesystem. |
|
10
|
|
|
* |
|
11
|
|
|
* @author Antoine Hérault <[email protected]> |
|
12
|
|
|
*/ |
|
13
|
|
|
class File |
|
14
|
|
|
{ |
|
15
|
|
|
protected $key; |
|
16
|
|
|
protected $filesystem; |
|
17
|
|
|
|
|
18
|
|
|
/** |
|
19
|
|
|
* Content variable is lazy. It will not be read from filesystem until it's requested first time. |
|
20
|
|
|
* |
|
21
|
|
|
* @var mixed content |
|
22
|
|
|
*/ |
|
23
|
|
|
protected $content = null; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* @var array metadata in associative array. Only for adapters that support metadata |
|
27
|
|
|
*/ |
|
28
|
|
|
protected $metadata = null; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Human readable filename (usually the end of the key). |
|
32
|
|
|
* |
|
33
|
|
|
* @var string name |
|
34
|
|
|
*/ |
|
35
|
|
|
protected $name = null; |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* File size in bytes. |
|
39
|
|
|
* |
|
40
|
|
|
* @var int size |
|
41
|
|
|
*/ |
|
42
|
|
|
protected $size = 0; |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* File date modified. |
|
46
|
|
|
* |
|
47
|
|
|
* @var int mtime |
|
48
|
|
|
*/ |
|
49
|
|
|
protected $mtime = null; |
|
50
|
|
|
|
|
51
|
|
|
/** |
|
52
|
|
|
* @param string $key |
|
53
|
|
|
* @param Filesystem $filesystem |
|
54
|
|
|
*/ |
|
55
|
|
|
public function __construct($key, Filesystem $filesystem) |
|
56
|
|
|
{ |
|
57
|
|
|
$this->key = $key; |
|
58
|
|
|
$this->name = $key; |
|
59
|
|
|
$this->filesystem = $filesystem; |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* Returns the key. |
|
64
|
|
|
* |
|
65
|
|
|
* @return string |
|
66
|
|
|
*/ |
|
67
|
|
|
public function getKey() |
|
68
|
|
|
{ |
|
69
|
|
|
return $this->key; |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
|
/** |
|
73
|
|
|
* Returns the content. |
|
74
|
|
|
* |
|
75
|
|
|
* @throws FileNotFound |
|
76
|
|
|
* |
|
77
|
|
|
* @param array $metadata optional metadata which should be set when read |
|
78
|
|
|
* |
|
79
|
|
|
* @return string |
|
80
|
|
|
*/ |
|
81
|
|
|
public function getContent($metadata = array()) |
|
82
|
|
|
{ |
|
83
|
|
|
if (isset($this->content)) { |
|
84
|
|
|
return $this->content; |
|
85
|
|
|
} |
|
86
|
|
|
$this->setMetadata($metadata); |
|
87
|
|
|
|
|
88
|
|
|
return $this->content = $this->filesystem->read($this->key); |
|
|
|
|
|
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
|
|
/** |
|
92
|
|
|
* @return string name of the file |
|
93
|
|
|
*/ |
|
94
|
|
|
public function getName() |
|
95
|
|
|
{ |
|
96
|
|
|
return $this->name; |
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
|
|
/** |
|
100
|
|
|
* @return int size of the file |
|
101
|
|
|
*/ |
|
102
|
|
|
public function getSize() |
|
103
|
|
|
{ |
|
104
|
|
|
if ($this->size) { |
|
105
|
|
|
return $this->size; |
|
106
|
|
|
} |
|
107
|
|
|
|
|
108
|
|
|
try { |
|
109
|
|
|
return $this->size = $this->filesystem->size($this->getKey()); |
|
110
|
|
|
} catch (FileNotFound $exception) { |
|
|
|
|
|
|
111
|
|
|
} |
|
112
|
|
|
|
|
113
|
|
|
return 0; |
|
114
|
|
|
} |
|
115
|
|
|
|
|
116
|
|
|
/** |
|
117
|
|
|
* Returns the file modified time. |
|
118
|
|
|
* |
|
119
|
|
|
* @return int |
|
120
|
|
|
*/ |
|
121
|
|
|
public function getMtime() |
|
122
|
|
|
{ |
|
123
|
|
|
return $this->mtime = $this->filesystem->mtime($this->key); |
|
|
|
|
|
|
124
|
|
|
} |
|
125
|
|
|
|
|
126
|
|
|
/** |
|
127
|
|
|
* @param int $size size of the file |
|
128
|
|
|
*/ |
|
129
|
|
|
public function setSize($size) |
|
130
|
|
|
{ |
|
131
|
|
|
$this->size = $size; |
|
132
|
|
|
} |
|
133
|
|
|
|
|
134
|
|
|
/** |
|
135
|
|
|
* Sets the content. |
|
136
|
|
|
* |
|
137
|
|
|
* @param string $content |
|
138
|
|
|
* @param array $metadata optional metadata which should be send when write |
|
139
|
|
|
* |
|
140
|
|
|
* @return int The number of bytes that were written into the file, or |
|
141
|
|
|
* FALSE on failure |
|
142
|
|
|
*/ |
|
143
|
|
|
public function setContent($content, $metadata = array()) |
|
144
|
|
|
{ |
|
145
|
|
|
$this->content = $content; |
|
146
|
|
|
$this->setMetadata($metadata); |
|
147
|
|
|
|
|
148
|
|
|
return $this->size = $this->filesystem->write($this->key, $this->content, true); |
|
|
|
|
|
|
149
|
|
|
} |
|
150
|
|
|
|
|
151
|
|
|
/** |
|
152
|
|
|
* @param string $name name of the file |
|
153
|
|
|
*/ |
|
154
|
|
|
public function setName($name) |
|
155
|
|
|
{ |
|
156
|
|
|
$this->name = $name; |
|
157
|
|
|
} |
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* Indicates whether the file exists in the filesystem. |
|
161
|
|
|
* |
|
162
|
|
|
* @return bool |
|
163
|
|
|
*/ |
|
164
|
|
|
public function exists() |
|
165
|
|
|
{ |
|
166
|
|
|
return $this->filesystem->has($this->key); |
|
167
|
|
|
} |
|
168
|
|
|
|
|
169
|
|
|
/** |
|
170
|
|
|
* Deletes the file from the filesystem. |
|
171
|
|
|
* |
|
172
|
|
|
* @throws FileNotFound |
|
173
|
|
|
* @throws \RuntimeException when cannot delete file |
|
174
|
|
|
* |
|
175
|
|
|
* @param array $metadata optional metadata which should be send when write |
|
176
|
|
|
* |
|
177
|
|
|
* @return bool TRUE on success |
|
178
|
|
|
*/ |
|
179
|
|
|
public function delete($metadata = array()) |
|
180
|
|
|
{ |
|
181
|
|
|
$this->setMetadata($metadata); |
|
182
|
|
|
|
|
183
|
|
|
return $this->filesystem->delete($this->key); |
|
184
|
|
|
} |
|
185
|
|
|
|
|
186
|
|
|
/** |
|
187
|
|
|
* Creates a new file stream instance of the file. |
|
188
|
|
|
* |
|
189
|
|
|
* @return Stream |
|
190
|
|
|
*/ |
|
191
|
|
|
public function createStream() |
|
192
|
|
|
{ |
|
193
|
|
|
return $this->filesystem->createStream($this->key); |
|
194
|
|
|
} |
|
195
|
|
|
|
|
196
|
|
|
/** |
|
197
|
|
|
* @param string $newKey |
|
198
|
|
|
*/ |
|
199
|
|
|
public function rename($newKey) |
|
200
|
|
|
{ |
|
201
|
|
|
// Should be replaced by a try..finally block |
|
202
|
|
|
$this->filesystem->rename($this->key, $newKey); |
|
203
|
|
|
|
|
204
|
|
|
$this->key = $newKey; |
|
205
|
|
|
} |
|
206
|
|
|
|
|
207
|
|
|
/** |
|
208
|
|
|
* Sets the metadata array to be stored in adapters that can support it. |
|
209
|
|
|
* |
|
210
|
|
|
* @param array $metadata |
|
211
|
|
|
* |
|
212
|
|
|
* @return bool |
|
213
|
|
|
*/ |
|
214
|
|
|
protected function setMetadata(array $metadata) |
|
215
|
|
|
{ |
|
216
|
|
|
if ($metadata && $this->supportsMetadata()) { |
|
|
|
|
|
|
217
|
|
|
$this->filesystem->getAdapter()->setMetadata($this->key, $metadata); |
|
|
|
|
|
|
218
|
|
|
|
|
219
|
|
|
return true; |
|
220
|
|
|
} |
|
221
|
|
|
|
|
222
|
|
|
return false; |
|
223
|
|
|
} |
|
224
|
|
|
|
|
225
|
|
|
/** |
|
226
|
|
|
* @return bool |
|
227
|
|
|
*/ |
|
228
|
|
|
private function supportsMetadata() |
|
229
|
|
|
{ |
|
230
|
|
|
return $this->filesystem->getAdapter() instanceof MetadataSupporter; |
|
231
|
|
|
} |
|
232
|
|
|
} |
|
233
|
|
|
|