@@ -48,606 +48,606 @@ |
||
48 | 48 | |
49 | 49 | class Swift extends \OC\Files\Storage\Common { |
50 | 50 | |
51 | - /** |
|
52 | - * @var \OpenCloud\ObjectStore\Service |
|
53 | - */ |
|
54 | - private $connection; |
|
55 | - /** |
|
56 | - * @var \OpenCloud\ObjectStore\Resource\Container |
|
57 | - */ |
|
58 | - private $container; |
|
59 | - /** |
|
60 | - * @var \OpenCloud\OpenStack |
|
61 | - */ |
|
62 | - private $anchor; |
|
63 | - /** |
|
64 | - * @var string |
|
65 | - */ |
|
66 | - private $bucket; |
|
67 | - /** |
|
68 | - * Connection parameters |
|
69 | - * |
|
70 | - * @var array |
|
71 | - */ |
|
72 | - private $params; |
|
73 | - |
|
74 | - /** @var string */ |
|
75 | - private $id; |
|
76 | - |
|
77 | - /** |
|
78 | - * @var array |
|
79 | - */ |
|
80 | - private static $tmpFiles = array(); |
|
81 | - |
|
82 | - /** |
|
83 | - * Key value cache mapping path to data object. Maps path to |
|
84 | - * \OpenCloud\OpenStack\ObjectStorage\Resource\DataObject for existing |
|
85 | - * paths and path to false for not existing paths. |
|
86 | - * @var \OCP\ICache |
|
87 | - */ |
|
88 | - private $objectCache; |
|
89 | - |
|
90 | - /** |
|
91 | - * @param string $path |
|
92 | - */ |
|
93 | - private function normalizePath($path) { |
|
94 | - $path = trim($path, '/'); |
|
95 | - |
|
96 | - if (!$path) { |
|
97 | - $path = '.'; |
|
98 | - } |
|
99 | - |
|
100 | - $path = str_replace('#', '%23', $path); |
|
101 | - |
|
102 | - return $path; |
|
103 | - } |
|
104 | - |
|
105 | - const SUBCONTAINER_FILE = '.subcontainers'; |
|
106 | - |
|
107 | - /** |
|
108 | - * translate directory path to container name |
|
109 | - * |
|
110 | - * @param string $path |
|
111 | - * @return string |
|
112 | - */ |
|
113 | - |
|
114 | - /** |
|
115 | - * Fetches an object from the API. |
|
116 | - * If the object is cached already or a |
|
117 | - * failed "doesn't exist" response was cached, |
|
118 | - * that one will be returned. |
|
119 | - * |
|
120 | - * @param string $path |
|
121 | - * @return \OpenCloud\OpenStack\ObjectStorage\Resource\DataObject|bool object |
|
122 | - * or false if the object did not exist |
|
123 | - */ |
|
124 | - private function fetchObject($path) { |
|
125 | - if ($this->objectCache->hasKey($path)) { |
|
126 | - // might be "false" if object did not exist from last check |
|
127 | - return $this->objectCache->get($path); |
|
128 | - } |
|
129 | - try { |
|
130 | - $object = $this->getContainer()->getPartialObject($path); |
|
131 | - $this->objectCache->set($path, $object); |
|
132 | - return $object; |
|
133 | - } catch (ClientErrorResponseException $e) { |
|
134 | - // this exception happens when the object does not exist, which |
|
135 | - // is expected in most cases |
|
136 | - $this->objectCache->set($path, false); |
|
137 | - return false; |
|
138 | - } catch (ClientErrorResponseException $e) { |
|
139 | - // Expected response is "404 Not Found", so only log if it isn't |
|
140 | - if ($e->getResponse()->getStatusCode() !== 404) { |
|
141 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
142 | - } |
|
143 | - return false; |
|
144 | - } |
|
145 | - } |
|
146 | - |
|
147 | - /** |
|
148 | - * Returns whether the given path exists. |
|
149 | - * |
|
150 | - * @param string $path |
|
151 | - * |
|
152 | - * @return bool true if the object exist, false otherwise |
|
153 | - */ |
|
154 | - private function doesObjectExist($path) { |
|
155 | - return $this->fetchObject($path) !== false; |
|
156 | - } |
|
157 | - |
|
158 | - public function __construct($params) { |
|
159 | - if ((empty($params['key']) and empty($params['password'])) |
|
160 | - or empty($params['user']) or empty($params['bucket']) |
|
161 | - or empty($params['region']) |
|
162 | - ) { |
|
163 | - throw new \Exception("API Key or password, Username, Bucket and Region have to be configured."); |
|
164 | - } |
|
165 | - |
|
166 | - $this->id = 'swift::' . $params['user'] . md5($params['bucket']); |
|
167 | - |
|
168 | - $bucketUrl = Url::factory($params['bucket']); |
|
169 | - if ($bucketUrl->isAbsolute()) { |
|
170 | - $this->bucket = end(($bucketUrl->getPathSegments())); |
|
171 | - $params['endpoint_url'] = $bucketUrl->addPath('..')->normalizePath(); |
|
172 | - } else { |
|
173 | - $this->bucket = $params['bucket']; |
|
174 | - } |
|
175 | - |
|
176 | - if (empty($params['url'])) { |
|
177 | - $params['url'] = 'https://identity.api.rackspacecloud.com/v2.0/'; |
|
178 | - } |
|
179 | - |
|
180 | - if (empty($params['service_name'])) { |
|
181 | - $params['service_name'] = 'cloudFiles'; |
|
182 | - } |
|
183 | - |
|
184 | - $this->params = $params; |
|
185 | - // FIXME: private class... |
|
186 | - $this->objectCache = new \OC\Cache\CappedMemoryCache(); |
|
187 | - } |
|
188 | - |
|
189 | - public function mkdir($path) { |
|
190 | - $path = $this->normalizePath($path); |
|
191 | - |
|
192 | - if ($this->is_dir($path)) { |
|
193 | - return false; |
|
194 | - } |
|
195 | - |
|
196 | - if ($path !== '.') { |
|
197 | - $path .= '/'; |
|
198 | - } |
|
199 | - |
|
200 | - try { |
|
201 | - $customHeaders = array('content-type' => 'httpd/unix-directory'); |
|
202 | - $metadataHeaders = DataObject::stockHeaders(array()); |
|
203 | - $allHeaders = $customHeaders + $metadataHeaders; |
|
204 | - $this->getContainer()->uploadObject($path, '', $allHeaders); |
|
205 | - // invalidate so that the next access gets the real object |
|
206 | - // with all properties |
|
207 | - $this->objectCache->remove($path); |
|
208 | - } catch (Exceptions\CreateUpdateError $e) { |
|
209 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
210 | - return false; |
|
211 | - } |
|
212 | - |
|
213 | - return true; |
|
214 | - } |
|
215 | - |
|
216 | - public function file_exists($path) { |
|
217 | - $path = $this->normalizePath($path); |
|
218 | - |
|
219 | - if ($path !== '.' && $this->is_dir($path)) { |
|
220 | - $path .= '/'; |
|
221 | - } |
|
222 | - |
|
223 | - return $this->doesObjectExist($path); |
|
224 | - } |
|
225 | - |
|
226 | - public function rmdir($path) { |
|
227 | - $path = $this->normalizePath($path); |
|
228 | - |
|
229 | - if (!$this->is_dir($path) || !$this->isDeletable($path)) { |
|
230 | - return false; |
|
231 | - } |
|
232 | - |
|
233 | - $dh = $this->opendir($path); |
|
234 | - while ($file = readdir($dh)) { |
|
235 | - if (\OC\Files\Filesystem::isIgnoredDir($file)) { |
|
236 | - continue; |
|
237 | - } |
|
238 | - |
|
239 | - if ($this->is_dir($path . '/' . $file)) { |
|
240 | - $this->rmdir($path . '/' . $file); |
|
241 | - } else { |
|
242 | - $this->unlink($path . '/' . $file); |
|
243 | - } |
|
244 | - } |
|
245 | - |
|
246 | - try { |
|
247 | - $this->getContainer()->dataObject()->setName($path . '/')->delete(); |
|
248 | - $this->objectCache->remove($path . '/'); |
|
249 | - } catch (Exceptions\DeleteError $e) { |
|
250 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
251 | - return false; |
|
252 | - } |
|
253 | - |
|
254 | - return true; |
|
255 | - } |
|
256 | - |
|
257 | - public function opendir($path) { |
|
258 | - $path = $this->normalizePath($path); |
|
259 | - |
|
260 | - if ($path === '.') { |
|
261 | - $path = ''; |
|
262 | - } else { |
|
263 | - $path .= '/'; |
|
264 | - } |
|
265 | - |
|
266 | - $path = str_replace('%23', '#', $path); // the prefix is sent as a query param, so revert the encoding of # |
|
267 | - |
|
268 | - try { |
|
269 | - $files = array(); |
|
270 | - /** @var OpenCloud\Common\Collection $objects */ |
|
271 | - $objects = $this->getContainer()->objectList(array( |
|
272 | - 'prefix' => $path, |
|
273 | - 'delimiter' => '/' |
|
274 | - )); |
|
275 | - |
|
276 | - /** @var OpenCloud\ObjectStore\Resource\DataObject $object */ |
|
277 | - foreach ($objects as $object) { |
|
278 | - $file = basename($object->getName()); |
|
279 | - if ($file !== basename($path)) { |
|
280 | - $files[] = $file; |
|
281 | - } |
|
282 | - } |
|
283 | - |
|
284 | - return IteratorDirectory::wrap($files); |
|
285 | - } catch (\Exception $e) { |
|
286 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
287 | - return false; |
|
288 | - } |
|
289 | - |
|
290 | - } |
|
291 | - |
|
292 | - public function stat($path) { |
|
293 | - $path = $this->normalizePath($path); |
|
294 | - |
|
295 | - if ($path === '.') { |
|
296 | - $path = ''; |
|
297 | - } else if ($this->is_dir($path)) { |
|
298 | - $path .= '/'; |
|
299 | - } |
|
300 | - |
|
301 | - try { |
|
302 | - /** @var DataObject $object */ |
|
303 | - $object = $this->fetchObject($path); |
|
304 | - if (!$object) { |
|
305 | - return false; |
|
306 | - } |
|
307 | - } catch (ClientErrorResponseException $e) { |
|
308 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
309 | - return false; |
|
310 | - } |
|
311 | - |
|
312 | - $dateTime = \DateTime::createFromFormat(\DateTime::RFC1123, $object->getLastModified()); |
|
313 | - if ($dateTime !== false) { |
|
314 | - $mtime = $dateTime->getTimestamp(); |
|
315 | - } else { |
|
316 | - $mtime = null; |
|
317 | - } |
|
318 | - $objectMetadata = $object->getMetadata(); |
|
319 | - $metaTimestamp = $objectMetadata->getProperty('timestamp'); |
|
320 | - if (isset($metaTimestamp)) { |
|
321 | - $mtime = $metaTimestamp; |
|
322 | - } |
|
323 | - |
|
324 | - if (!empty($mtime)) { |
|
325 | - $mtime = floor($mtime); |
|
326 | - } |
|
327 | - |
|
328 | - $stat = array(); |
|
329 | - $stat['size'] = (int)$object->getContentLength(); |
|
330 | - $stat['mtime'] = $mtime; |
|
331 | - $stat['atime'] = time(); |
|
332 | - return $stat; |
|
333 | - } |
|
334 | - |
|
335 | - public function filetype($path) { |
|
336 | - $path = $this->normalizePath($path); |
|
337 | - |
|
338 | - if ($path !== '.' && $this->doesObjectExist($path)) { |
|
339 | - return 'file'; |
|
340 | - } |
|
341 | - |
|
342 | - if ($path !== '.') { |
|
343 | - $path .= '/'; |
|
344 | - } |
|
345 | - |
|
346 | - if ($this->doesObjectExist($path)) { |
|
347 | - return 'dir'; |
|
348 | - } |
|
349 | - } |
|
350 | - |
|
351 | - public function unlink($path) { |
|
352 | - $path = $this->normalizePath($path); |
|
353 | - |
|
354 | - if ($this->is_dir($path)) { |
|
355 | - return $this->rmdir($path); |
|
356 | - } |
|
357 | - |
|
358 | - try { |
|
359 | - $this->getContainer()->dataObject()->setName($path)->delete(); |
|
360 | - $this->objectCache->remove($path); |
|
361 | - $this->objectCache->remove($path . '/'); |
|
362 | - } catch (ClientErrorResponseException $e) { |
|
363 | - if ($e->getResponse()->getStatusCode() !== 404) { |
|
364 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
365 | - } |
|
366 | - return false; |
|
367 | - } |
|
368 | - |
|
369 | - return true; |
|
370 | - } |
|
371 | - |
|
372 | - public function fopen($path, $mode) { |
|
373 | - $path = $this->normalizePath($path); |
|
374 | - |
|
375 | - switch ($mode) { |
|
376 | - case 'a': |
|
377 | - case 'ab': |
|
378 | - case 'a+': |
|
379 | - return false; |
|
380 | - case 'r': |
|
381 | - case 'rb': |
|
382 | - try { |
|
383 | - $c = $this->getContainer(); |
|
384 | - $streamFactory = new \Guzzle\Stream\PhpStreamRequestFactory(); |
|
385 | - $streamInterface = $streamFactory->fromRequest( |
|
386 | - $c->getClient() |
|
387 | - ->get($c->getUrl($path))); |
|
388 | - $streamInterface->rewind(); |
|
389 | - $stream = $streamInterface->getStream(); |
|
390 | - stream_context_set_option($stream, 'swift','content', $streamInterface); |
|
391 | - if(!strrpos($streamInterface |
|
392 | - ->getMetaData('wrapper_data')[0], '404 Not Found')) { |
|
393 | - return $stream; |
|
394 | - } |
|
395 | - return false; |
|
396 | - } catch (\Guzzle\Http\Exception\BadResponseException $e) { |
|
397 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
398 | - return false; |
|
399 | - } |
|
400 | - case 'w': |
|
401 | - case 'wb': |
|
402 | - case 'r+': |
|
403 | - case 'w+': |
|
404 | - case 'wb+': |
|
405 | - case 'x': |
|
406 | - case 'x+': |
|
407 | - case 'c': |
|
408 | - case 'c+': |
|
409 | - if (strrpos($path, '.') !== false) { |
|
410 | - $ext = substr($path, strrpos($path, '.')); |
|
411 | - } else { |
|
412 | - $ext = ''; |
|
413 | - } |
|
414 | - $tmpFile = \OCP\Files::tmpFile($ext); |
|
415 | - // Fetch existing file if required |
|
416 | - if ($mode[0] !== 'w' && $this->file_exists($path)) { |
|
417 | - if ($mode[0] === 'x') { |
|
418 | - // File cannot already exist |
|
419 | - return false; |
|
420 | - } |
|
421 | - $source = $this->fopen($path, 'r'); |
|
422 | - file_put_contents($tmpFile, $source); |
|
423 | - } |
|
424 | - $handle = fopen($tmpFile, $mode); |
|
425 | - return CallbackWrapper::wrap($handle, null, null, function () use ($path, $tmpFile) { |
|
426 | - $this->writeBack($tmpFile, $path); |
|
427 | - }); |
|
428 | - } |
|
429 | - } |
|
430 | - |
|
431 | - public function touch($path, $mtime = null) { |
|
432 | - $path = $this->normalizePath($path); |
|
433 | - if (is_null($mtime)) { |
|
434 | - $mtime = time(); |
|
435 | - } |
|
436 | - $metadata = array('timestamp' => $mtime); |
|
437 | - if ($this->file_exists($path)) { |
|
438 | - if ($this->is_dir($path) && $path != '.') { |
|
439 | - $path .= '/'; |
|
440 | - } |
|
441 | - |
|
442 | - $object = $this->fetchObject($path); |
|
443 | - if ($object->saveMetadata($metadata)) { |
|
444 | - // invalidate target object to force repopulation on fetch |
|
445 | - $this->objectCache->remove($path); |
|
446 | - } |
|
447 | - return true; |
|
448 | - } else { |
|
449 | - $mimeType = \OC::$server->getMimeTypeDetector()->detectPath($path); |
|
450 | - $customHeaders = array('content-type' => $mimeType); |
|
451 | - $metadataHeaders = DataObject::stockHeaders($metadata); |
|
452 | - $allHeaders = $customHeaders + $metadataHeaders; |
|
453 | - $this->getContainer()->uploadObject($path, '', $allHeaders); |
|
454 | - // invalidate target object to force repopulation on fetch |
|
455 | - $this->objectCache->remove($path); |
|
456 | - return true; |
|
457 | - } |
|
458 | - } |
|
459 | - |
|
460 | - public function copy($path1, $path2) { |
|
461 | - $path1 = $this->normalizePath($path1); |
|
462 | - $path2 = $this->normalizePath($path2); |
|
463 | - |
|
464 | - $fileType = $this->filetype($path1); |
|
465 | - if ($fileType === 'file') { |
|
466 | - |
|
467 | - // make way |
|
468 | - $this->unlink($path2); |
|
469 | - |
|
470 | - try { |
|
471 | - $source = $this->fetchObject($path1); |
|
472 | - $source->copy($this->bucket . '/' . $path2); |
|
473 | - // invalidate target object to force repopulation on fetch |
|
474 | - $this->objectCache->remove($path2); |
|
475 | - $this->objectCache->remove($path2 . '/'); |
|
476 | - } catch (ClientErrorResponseException $e) { |
|
477 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
478 | - return false; |
|
479 | - } |
|
480 | - |
|
481 | - } else if ($fileType === 'dir') { |
|
482 | - |
|
483 | - // make way |
|
484 | - $this->unlink($path2); |
|
485 | - |
|
486 | - try { |
|
487 | - $source = $this->fetchObject($path1 . '/'); |
|
488 | - $source->copy($this->bucket . '/' . $path2 . '/'); |
|
489 | - // invalidate target object to force repopulation on fetch |
|
490 | - $this->objectCache->remove($path2); |
|
491 | - $this->objectCache->remove($path2 . '/'); |
|
492 | - } catch (ClientErrorResponseException $e) { |
|
493 | - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
494 | - return false; |
|
495 | - } |
|
496 | - |
|
497 | - $dh = $this->opendir($path1); |
|
498 | - while ($file = readdir($dh)) { |
|
499 | - if (\OC\Files\Filesystem::isIgnoredDir($file)) { |
|
500 | - continue; |
|
501 | - } |
|
502 | - |
|
503 | - $source = $path1 . '/' . $file; |
|
504 | - $target = $path2 . '/' . $file; |
|
505 | - $this->copy($source, $target); |
|
506 | - } |
|
507 | - |
|
508 | - } else { |
|
509 | - //file does not exist |
|
510 | - return false; |
|
511 | - } |
|
512 | - |
|
513 | - return true; |
|
514 | - } |
|
515 | - |
|
516 | - public function rename($path1, $path2) { |
|
517 | - $path1 = $this->normalizePath($path1); |
|
518 | - $path2 = $this->normalizePath($path2); |
|
519 | - |
|
520 | - $fileType = $this->filetype($path1); |
|
521 | - |
|
522 | - if ($fileType === 'dir' || $fileType === 'file') { |
|
523 | - // copy |
|
524 | - if ($this->copy($path1, $path2) === false) { |
|
525 | - return false; |
|
526 | - } |
|
527 | - |
|
528 | - // cleanup |
|
529 | - if ($this->unlink($path1) === false) { |
|
530 | - $this->unlink($path2); |
|
531 | - return false; |
|
532 | - } |
|
533 | - |
|
534 | - return true; |
|
535 | - } |
|
536 | - |
|
537 | - return false; |
|
538 | - } |
|
539 | - |
|
540 | - public function getId() { |
|
541 | - return $this->id; |
|
542 | - } |
|
543 | - |
|
544 | - /** |
|
545 | - * Returns the connection |
|
546 | - * |
|
547 | - * @return OpenCloud\ObjectStore\Service connected client |
|
548 | - * @throws \Exception if connection could not be made |
|
549 | - */ |
|
550 | - public function getConnection() { |
|
551 | - if (!is_null($this->connection)) { |
|
552 | - return $this->connection; |
|
553 | - } |
|
554 | - |
|
555 | - $settings = array( |
|
556 | - 'username' => $this->params['user'], |
|
557 | - ); |
|
558 | - |
|
559 | - if (!empty($this->params['password'])) { |
|
560 | - $settings['password'] = $this->params['password']; |
|
561 | - } else if (!empty($this->params['key'])) { |
|
562 | - $settings['apiKey'] = $this->params['key']; |
|
563 | - } |
|
564 | - |
|
565 | - if (!empty($this->params['tenant'])) { |
|
566 | - $settings['tenantName'] = $this->params['tenant']; |
|
567 | - } |
|
568 | - |
|
569 | - if (!empty($this->params['timeout'])) { |
|
570 | - $settings['timeout'] = $this->params['timeout']; |
|
571 | - } |
|
572 | - |
|
573 | - if (isset($settings['apiKey'])) { |
|
574 | - $this->anchor = new Rackspace($this->params['url'], $settings); |
|
575 | - } else { |
|
576 | - $this->anchor = new OpenStack($this->params['url'], $settings); |
|
577 | - } |
|
578 | - |
|
579 | - $connection = $this->anchor->objectStoreService($this->params['service_name'], $this->params['region']); |
|
580 | - |
|
581 | - if (!empty($this->params['endpoint_url'])) { |
|
582 | - $endpoint = $connection->getEndpoint(); |
|
583 | - $endpoint->setPublicUrl($this->params['endpoint_url']); |
|
584 | - $endpoint->setPrivateUrl($this->params['endpoint_url']); |
|
585 | - $connection->setEndpoint($endpoint); |
|
586 | - } |
|
587 | - |
|
588 | - $this->connection = $connection; |
|
589 | - |
|
590 | - return $this->connection; |
|
591 | - } |
|
592 | - |
|
593 | - /** |
|
594 | - * Returns the initialized object store container. |
|
595 | - * |
|
596 | - * @return OpenCloud\ObjectStore\Resource\Container |
|
597 | - */ |
|
598 | - public function getContainer() { |
|
599 | - if (!is_null($this->container)) { |
|
600 | - return $this->container; |
|
601 | - } |
|
602 | - |
|
603 | - try { |
|
604 | - $this->container = $this->getConnection()->getContainer($this->bucket); |
|
605 | - } catch (ClientErrorResponseException $e) { |
|
606 | - $this->container = $this->getConnection()->createContainer($this->bucket); |
|
607 | - } |
|
608 | - |
|
609 | - if (!$this->file_exists('.')) { |
|
610 | - $this->mkdir('.'); |
|
611 | - } |
|
612 | - |
|
613 | - return $this->container; |
|
614 | - } |
|
615 | - |
|
616 | - public function writeBack($tmpFile, $path) { |
|
617 | - $fileData = fopen($tmpFile, 'r'); |
|
618 | - $this->getContainer()->uploadObject($path, $fileData); |
|
619 | - // invalidate target object to force repopulation on fetch |
|
620 | - $this->objectCache->remove(self::$tmpFiles[$tmpFile]); |
|
621 | - unlink($tmpFile); |
|
622 | - } |
|
623 | - |
|
624 | - public function hasUpdated($path, $time) { |
|
625 | - if ($this->is_file($path)) { |
|
626 | - return parent::hasUpdated($path, $time); |
|
627 | - } |
|
628 | - $path = $this->normalizePath($path); |
|
629 | - $dh = $this->opendir($path); |
|
630 | - $content = array(); |
|
631 | - while (($file = readdir($dh)) !== false) { |
|
632 | - $content[] = $file; |
|
633 | - } |
|
634 | - if ($path === '.') { |
|
635 | - $path = ''; |
|
636 | - } |
|
637 | - $cachedContent = $this->getCache()->getFolderContents($path); |
|
638 | - $cachedNames = array_map(function ($content) { |
|
639 | - return $content['name']; |
|
640 | - }, $cachedContent); |
|
641 | - sort($cachedNames); |
|
642 | - sort($content); |
|
643 | - return $cachedNames != $content; |
|
644 | - } |
|
645 | - |
|
646 | - /** |
|
647 | - * check if curl is installed |
|
648 | - */ |
|
649 | - public static function checkDependencies() { |
|
650 | - return true; |
|
651 | - } |
|
51 | + /** |
|
52 | + * @var \OpenCloud\ObjectStore\Service |
|
53 | + */ |
|
54 | + private $connection; |
|
55 | + /** |
|
56 | + * @var \OpenCloud\ObjectStore\Resource\Container |
|
57 | + */ |
|
58 | + private $container; |
|
59 | + /** |
|
60 | + * @var \OpenCloud\OpenStack |
|
61 | + */ |
|
62 | + private $anchor; |
|
63 | + /** |
|
64 | + * @var string |
|
65 | + */ |
|
66 | + private $bucket; |
|
67 | + /** |
|
68 | + * Connection parameters |
|
69 | + * |
|
70 | + * @var array |
|
71 | + */ |
|
72 | + private $params; |
|
73 | + |
|
74 | + /** @var string */ |
|
75 | + private $id; |
|
76 | + |
|
77 | + /** |
|
78 | + * @var array |
|
79 | + */ |
|
80 | + private static $tmpFiles = array(); |
|
81 | + |
|
82 | + /** |
|
83 | + * Key value cache mapping path to data object. Maps path to |
|
84 | + * \OpenCloud\OpenStack\ObjectStorage\Resource\DataObject for existing |
|
85 | + * paths and path to false for not existing paths. |
|
86 | + * @var \OCP\ICache |
|
87 | + */ |
|
88 | + private $objectCache; |
|
89 | + |
|
90 | + /** |
|
91 | + * @param string $path |
|
92 | + */ |
|
93 | + private function normalizePath($path) { |
|
94 | + $path = trim($path, '/'); |
|
95 | + |
|
96 | + if (!$path) { |
|
97 | + $path = '.'; |
|
98 | + } |
|
99 | + |
|
100 | + $path = str_replace('#', '%23', $path); |
|
101 | + |
|
102 | + return $path; |
|
103 | + } |
|
104 | + |
|
105 | + const SUBCONTAINER_FILE = '.subcontainers'; |
|
106 | + |
|
107 | + /** |
|
108 | + * translate directory path to container name |
|
109 | + * |
|
110 | + * @param string $path |
|
111 | + * @return string |
|
112 | + */ |
|
113 | + |
|
114 | + /** |
|
115 | + * Fetches an object from the API. |
|
116 | + * If the object is cached already or a |
|
117 | + * failed "doesn't exist" response was cached, |
|
118 | + * that one will be returned. |
|
119 | + * |
|
120 | + * @param string $path |
|
121 | + * @return \OpenCloud\OpenStack\ObjectStorage\Resource\DataObject|bool object |
|
122 | + * or false if the object did not exist |
|
123 | + */ |
|
124 | + private function fetchObject($path) { |
|
125 | + if ($this->objectCache->hasKey($path)) { |
|
126 | + // might be "false" if object did not exist from last check |
|
127 | + return $this->objectCache->get($path); |
|
128 | + } |
|
129 | + try { |
|
130 | + $object = $this->getContainer()->getPartialObject($path); |
|
131 | + $this->objectCache->set($path, $object); |
|
132 | + return $object; |
|
133 | + } catch (ClientErrorResponseException $e) { |
|
134 | + // this exception happens when the object does not exist, which |
|
135 | + // is expected in most cases |
|
136 | + $this->objectCache->set($path, false); |
|
137 | + return false; |
|
138 | + } catch (ClientErrorResponseException $e) { |
|
139 | + // Expected response is "404 Not Found", so only log if it isn't |
|
140 | + if ($e->getResponse()->getStatusCode() !== 404) { |
|
141 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
142 | + } |
|
143 | + return false; |
|
144 | + } |
|
145 | + } |
|
146 | + |
|
147 | + /** |
|
148 | + * Returns whether the given path exists. |
|
149 | + * |
|
150 | + * @param string $path |
|
151 | + * |
|
152 | + * @return bool true if the object exist, false otherwise |
|
153 | + */ |
|
154 | + private function doesObjectExist($path) { |
|
155 | + return $this->fetchObject($path) !== false; |
|
156 | + } |
|
157 | + |
|
158 | + public function __construct($params) { |
|
159 | + if ((empty($params['key']) and empty($params['password'])) |
|
160 | + or empty($params['user']) or empty($params['bucket']) |
|
161 | + or empty($params['region']) |
|
162 | + ) { |
|
163 | + throw new \Exception("API Key or password, Username, Bucket and Region have to be configured."); |
|
164 | + } |
|
165 | + |
|
166 | + $this->id = 'swift::' . $params['user'] . md5($params['bucket']); |
|
167 | + |
|
168 | + $bucketUrl = Url::factory($params['bucket']); |
|
169 | + if ($bucketUrl->isAbsolute()) { |
|
170 | + $this->bucket = end(($bucketUrl->getPathSegments())); |
|
171 | + $params['endpoint_url'] = $bucketUrl->addPath('..')->normalizePath(); |
|
172 | + } else { |
|
173 | + $this->bucket = $params['bucket']; |
|
174 | + } |
|
175 | + |
|
176 | + if (empty($params['url'])) { |
|
177 | + $params['url'] = 'https://identity.api.rackspacecloud.com/v2.0/'; |
|
178 | + } |
|
179 | + |
|
180 | + if (empty($params['service_name'])) { |
|
181 | + $params['service_name'] = 'cloudFiles'; |
|
182 | + } |
|
183 | + |
|
184 | + $this->params = $params; |
|
185 | + // FIXME: private class... |
|
186 | + $this->objectCache = new \OC\Cache\CappedMemoryCache(); |
|
187 | + } |
|
188 | + |
|
189 | + public function mkdir($path) { |
|
190 | + $path = $this->normalizePath($path); |
|
191 | + |
|
192 | + if ($this->is_dir($path)) { |
|
193 | + return false; |
|
194 | + } |
|
195 | + |
|
196 | + if ($path !== '.') { |
|
197 | + $path .= '/'; |
|
198 | + } |
|
199 | + |
|
200 | + try { |
|
201 | + $customHeaders = array('content-type' => 'httpd/unix-directory'); |
|
202 | + $metadataHeaders = DataObject::stockHeaders(array()); |
|
203 | + $allHeaders = $customHeaders + $metadataHeaders; |
|
204 | + $this->getContainer()->uploadObject($path, '', $allHeaders); |
|
205 | + // invalidate so that the next access gets the real object |
|
206 | + // with all properties |
|
207 | + $this->objectCache->remove($path); |
|
208 | + } catch (Exceptions\CreateUpdateError $e) { |
|
209 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
210 | + return false; |
|
211 | + } |
|
212 | + |
|
213 | + return true; |
|
214 | + } |
|
215 | + |
|
216 | + public function file_exists($path) { |
|
217 | + $path = $this->normalizePath($path); |
|
218 | + |
|
219 | + if ($path !== '.' && $this->is_dir($path)) { |
|
220 | + $path .= '/'; |
|
221 | + } |
|
222 | + |
|
223 | + return $this->doesObjectExist($path); |
|
224 | + } |
|
225 | + |
|
226 | + public function rmdir($path) { |
|
227 | + $path = $this->normalizePath($path); |
|
228 | + |
|
229 | + if (!$this->is_dir($path) || !$this->isDeletable($path)) { |
|
230 | + return false; |
|
231 | + } |
|
232 | + |
|
233 | + $dh = $this->opendir($path); |
|
234 | + while ($file = readdir($dh)) { |
|
235 | + if (\OC\Files\Filesystem::isIgnoredDir($file)) { |
|
236 | + continue; |
|
237 | + } |
|
238 | + |
|
239 | + if ($this->is_dir($path . '/' . $file)) { |
|
240 | + $this->rmdir($path . '/' . $file); |
|
241 | + } else { |
|
242 | + $this->unlink($path . '/' . $file); |
|
243 | + } |
|
244 | + } |
|
245 | + |
|
246 | + try { |
|
247 | + $this->getContainer()->dataObject()->setName($path . '/')->delete(); |
|
248 | + $this->objectCache->remove($path . '/'); |
|
249 | + } catch (Exceptions\DeleteError $e) { |
|
250 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
251 | + return false; |
|
252 | + } |
|
253 | + |
|
254 | + return true; |
|
255 | + } |
|
256 | + |
|
257 | + public function opendir($path) { |
|
258 | + $path = $this->normalizePath($path); |
|
259 | + |
|
260 | + if ($path === '.') { |
|
261 | + $path = ''; |
|
262 | + } else { |
|
263 | + $path .= '/'; |
|
264 | + } |
|
265 | + |
|
266 | + $path = str_replace('%23', '#', $path); // the prefix is sent as a query param, so revert the encoding of # |
|
267 | + |
|
268 | + try { |
|
269 | + $files = array(); |
|
270 | + /** @var OpenCloud\Common\Collection $objects */ |
|
271 | + $objects = $this->getContainer()->objectList(array( |
|
272 | + 'prefix' => $path, |
|
273 | + 'delimiter' => '/' |
|
274 | + )); |
|
275 | + |
|
276 | + /** @var OpenCloud\ObjectStore\Resource\DataObject $object */ |
|
277 | + foreach ($objects as $object) { |
|
278 | + $file = basename($object->getName()); |
|
279 | + if ($file !== basename($path)) { |
|
280 | + $files[] = $file; |
|
281 | + } |
|
282 | + } |
|
283 | + |
|
284 | + return IteratorDirectory::wrap($files); |
|
285 | + } catch (\Exception $e) { |
|
286 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
287 | + return false; |
|
288 | + } |
|
289 | + |
|
290 | + } |
|
291 | + |
|
292 | + public function stat($path) { |
|
293 | + $path = $this->normalizePath($path); |
|
294 | + |
|
295 | + if ($path === '.') { |
|
296 | + $path = ''; |
|
297 | + } else if ($this->is_dir($path)) { |
|
298 | + $path .= '/'; |
|
299 | + } |
|
300 | + |
|
301 | + try { |
|
302 | + /** @var DataObject $object */ |
|
303 | + $object = $this->fetchObject($path); |
|
304 | + if (!$object) { |
|
305 | + return false; |
|
306 | + } |
|
307 | + } catch (ClientErrorResponseException $e) { |
|
308 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
309 | + return false; |
|
310 | + } |
|
311 | + |
|
312 | + $dateTime = \DateTime::createFromFormat(\DateTime::RFC1123, $object->getLastModified()); |
|
313 | + if ($dateTime !== false) { |
|
314 | + $mtime = $dateTime->getTimestamp(); |
|
315 | + } else { |
|
316 | + $mtime = null; |
|
317 | + } |
|
318 | + $objectMetadata = $object->getMetadata(); |
|
319 | + $metaTimestamp = $objectMetadata->getProperty('timestamp'); |
|
320 | + if (isset($metaTimestamp)) { |
|
321 | + $mtime = $metaTimestamp; |
|
322 | + } |
|
323 | + |
|
324 | + if (!empty($mtime)) { |
|
325 | + $mtime = floor($mtime); |
|
326 | + } |
|
327 | + |
|
328 | + $stat = array(); |
|
329 | + $stat['size'] = (int)$object->getContentLength(); |
|
330 | + $stat['mtime'] = $mtime; |
|
331 | + $stat['atime'] = time(); |
|
332 | + return $stat; |
|
333 | + } |
|
334 | + |
|
335 | + public function filetype($path) { |
|
336 | + $path = $this->normalizePath($path); |
|
337 | + |
|
338 | + if ($path !== '.' && $this->doesObjectExist($path)) { |
|
339 | + return 'file'; |
|
340 | + } |
|
341 | + |
|
342 | + if ($path !== '.') { |
|
343 | + $path .= '/'; |
|
344 | + } |
|
345 | + |
|
346 | + if ($this->doesObjectExist($path)) { |
|
347 | + return 'dir'; |
|
348 | + } |
|
349 | + } |
|
350 | + |
|
351 | + public function unlink($path) { |
|
352 | + $path = $this->normalizePath($path); |
|
353 | + |
|
354 | + if ($this->is_dir($path)) { |
|
355 | + return $this->rmdir($path); |
|
356 | + } |
|
357 | + |
|
358 | + try { |
|
359 | + $this->getContainer()->dataObject()->setName($path)->delete(); |
|
360 | + $this->objectCache->remove($path); |
|
361 | + $this->objectCache->remove($path . '/'); |
|
362 | + } catch (ClientErrorResponseException $e) { |
|
363 | + if ($e->getResponse()->getStatusCode() !== 404) { |
|
364 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
365 | + } |
|
366 | + return false; |
|
367 | + } |
|
368 | + |
|
369 | + return true; |
|
370 | + } |
|
371 | + |
|
372 | + public function fopen($path, $mode) { |
|
373 | + $path = $this->normalizePath($path); |
|
374 | + |
|
375 | + switch ($mode) { |
|
376 | + case 'a': |
|
377 | + case 'ab': |
|
378 | + case 'a+': |
|
379 | + return false; |
|
380 | + case 'r': |
|
381 | + case 'rb': |
|
382 | + try { |
|
383 | + $c = $this->getContainer(); |
|
384 | + $streamFactory = new \Guzzle\Stream\PhpStreamRequestFactory(); |
|
385 | + $streamInterface = $streamFactory->fromRequest( |
|
386 | + $c->getClient() |
|
387 | + ->get($c->getUrl($path))); |
|
388 | + $streamInterface->rewind(); |
|
389 | + $stream = $streamInterface->getStream(); |
|
390 | + stream_context_set_option($stream, 'swift','content', $streamInterface); |
|
391 | + if(!strrpos($streamInterface |
|
392 | + ->getMetaData('wrapper_data')[0], '404 Not Found')) { |
|
393 | + return $stream; |
|
394 | + } |
|
395 | + return false; |
|
396 | + } catch (\Guzzle\Http\Exception\BadResponseException $e) { |
|
397 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
398 | + return false; |
|
399 | + } |
|
400 | + case 'w': |
|
401 | + case 'wb': |
|
402 | + case 'r+': |
|
403 | + case 'w+': |
|
404 | + case 'wb+': |
|
405 | + case 'x': |
|
406 | + case 'x+': |
|
407 | + case 'c': |
|
408 | + case 'c+': |
|
409 | + if (strrpos($path, '.') !== false) { |
|
410 | + $ext = substr($path, strrpos($path, '.')); |
|
411 | + } else { |
|
412 | + $ext = ''; |
|
413 | + } |
|
414 | + $tmpFile = \OCP\Files::tmpFile($ext); |
|
415 | + // Fetch existing file if required |
|
416 | + if ($mode[0] !== 'w' && $this->file_exists($path)) { |
|
417 | + if ($mode[0] === 'x') { |
|
418 | + // File cannot already exist |
|
419 | + return false; |
|
420 | + } |
|
421 | + $source = $this->fopen($path, 'r'); |
|
422 | + file_put_contents($tmpFile, $source); |
|
423 | + } |
|
424 | + $handle = fopen($tmpFile, $mode); |
|
425 | + return CallbackWrapper::wrap($handle, null, null, function () use ($path, $tmpFile) { |
|
426 | + $this->writeBack($tmpFile, $path); |
|
427 | + }); |
|
428 | + } |
|
429 | + } |
|
430 | + |
|
431 | + public function touch($path, $mtime = null) { |
|
432 | + $path = $this->normalizePath($path); |
|
433 | + if (is_null($mtime)) { |
|
434 | + $mtime = time(); |
|
435 | + } |
|
436 | + $metadata = array('timestamp' => $mtime); |
|
437 | + if ($this->file_exists($path)) { |
|
438 | + if ($this->is_dir($path) && $path != '.') { |
|
439 | + $path .= '/'; |
|
440 | + } |
|
441 | + |
|
442 | + $object = $this->fetchObject($path); |
|
443 | + if ($object->saveMetadata($metadata)) { |
|
444 | + // invalidate target object to force repopulation on fetch |
|
445 | + $this->objectCache->remove($path); |
|
446 | + } |
|
447 | + return true; |
|
448 | + } else { |
|
449 | + $mimeType = \OC::$server->getMimeTypeDetector()->detectPath($path); |
|
450 | + $customHeaders = array('content-type' => $mimeType); |
|
451 | + $metadataHeaders = DataObject::stockHeaders($metadata); |
|
452 | + $allHeaders = $customHeaders + $metadataHeaders; |
|
453 | + $this->getContainer()->uploadObject($path, '', $allHeaders); |
|
454 | + // invalidate target object to force repopulation on fetch |
|
455 | + $this->objectCache->remove($path); |
|
456 | + return true; |
|
457 | + } |
|
458 | + } |
|
459 | + |
|
460 | + public function copy($path1, $path2) { |
|
461 | + $path1 = $this->normalizePath($path1); |
|
462 | + $path2 = $this->normalizePath($path2); |
|
463 | + |
|
464 | + $fileType = $this->filetype($path1); |
|
465 | + if ($fileType === 'file') { |
|
466 | + |
|
467 | + // make way |
|
468 | + $this->unlink($path2); |
|
469 | + |
|
470 | + try { |
|
471 | + $source = $this->fetchObject($path1); |
|
472 | + $source->copy($this->bucket . '/' . $path2); |
|
473 | + // invalidate target object to force repopulation on fetch |
|
474 | + $this->objectCache->remove($path2); |
|
475 | + $this->objectCache->remove($path2 . '/'); |
|
476 | + } catch (ClientErrorResponseException $e) { |
|
477 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
478 | + return false; |
|
479 | + } |
|
480 | + |
|
481 | + } else if ($fileType === 'dir') { |
|
482 | + |
|
483 | + // make way |
|
484 | + $this->unlink($path2); |
|
485 | + |
|
486 | + try { |
|
487 | + $source = $this->fetchObject($path1 . '/'); |
|
488 | + $source->copy($this->bucket . '/' . $path2 . '/'); |
|
489 | + // invalidate target object to force repopulation on fetch |
|
490 | + $this->objectCache->remove($path2); |
|
491 | + $this->objectCache->remove($path2 . '/'); |
|
492 | + } catch (ClientErrorResponseException $e) { |
|
493 | + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
|
494 | + return false; |
|
495 | + } |
|
496 | + |
|
497 | + $dh = $this->opendir($path1); |
|
498 | + while ($file = readdir($dh)) { |
|
499 | + if (\OC\Files\Filesystem::isIgnoredDir($file)) { |
|
500 | + continue; |
|
501 | + } |
|
502 | + |
|
503 | + $source = $path1 . '/' . $file; |
|
504 | + $target = $path2 . '/' . $file; |
|
505 | + $this->copy($source, $target); |
|
506 | + } |
|
507 | + |
|
508 | + } else { |
|
509 | + //file does not exist |
|
510 | + return false; |
|
511 | + } |
|
512 | + |
|
513 | + return true; |
|
514 | + } |
|
515 | + |
|
516 | + public function rename($path1, $path2) { |
|
517 | + $path1 = $this->normalizePath($path1); |
|
518 | + $path2 = $this->normalizePath($path2); |
|
519 | + |
|
520 | + $fileType = $this->filetype($path1); |
|
521 | + |
|
522 | + if ($fileType === 'dir' || $fileType === 'file') { |
|
523 | + // copy |
|
524 | + if ($this->copy($path1, $path2) === false) { |
|
525 | + return false; |
|
526 | + } |
|
527 | + |
|
528 | + // cleanup |
|
529 | + if ($this->unlink($path1) === false) { |
|
530 | + $this->unlink($path2); |
|
531 | + return false; |
|
532 | + } |
|
533 | + |
|
534 | + return true; |
|
535 | + } |
|
536 | + |
|
537 | + return false; |
|
538 | + } |
|
539 | + |
|
540 | + public function getId() { |
|
541 | + return $this->id; |
|
542 | + } |
|
543 | + |
|
544 | + /** |
|
545 | + * Returns the connection |
|
546 | + * |
|
547 | + * @return OpenCloud\ObjectStore\Service connected client |
|
548 | + * @throws \Exception if connection could not be made |
|
549 | + */ |
|
550 | + public function getConnection() { |
|
551 | + if (!is_null($this->connection)) { |
|
552 | + return $this->connection; |
|
553 | + } |
|
554 | + |
|
555 | + $settings = array( |
|
556 | + 'username' => $this->params['user'], |
|
557 | + ); |
|
558 | + |
|
559 | + if (!empty($this->params['password'])) { |
|
560 | + $settings['password'] = $this->params['password']; |
|
561 | + } else if (!empty($this->params['key'])) { |
|
562 | + $settings['apiKey'] = $this->params['key']; |
|
563 | + } |
|
564 | + |
|
565 | + if (!empty($this->params['tenant'])) { |
|
566 | + $settings['tenantName'] = $this->params['tenant']; |
|
567 | + } |
|
568 | + |
|
569 | + if (!empty($this->params['timeout'])) { |
|
570 | + $settings['timeout'] = $this->params['timeout']; |
|
571 | + } |
|
572 | + |
|
573 | + if (isset($settings['apiKey'])) { |
|
574 | + $this->anchor = new Rackspace($this->params['url'], $settings); |
|
575 | + } else { |
|
576 | + $this->anchor = new OpenStack($this->params['url'], $settings); |
|
577 | + } |
|
578 | + |
|
579 | + $connection = $this->anchor->objectStoreService($this->params['service_name'], $this->params['region']); |
|
580 | + |
|
581 | + if (!empty($this->params['endpoint_url'])) { |
|
582 | + $endpoint = $connection->getEndpoint(); |
|
583 | + $endpoint->setPublicUrl($this->params['endpoint_url']); |
|
584 | + $endpoint->setPrivateUrl($this->params['endpoint_url']); |
|
585 | + $connection->setEndpoint($endpoint); |
|
586 | + } |
|
587 | + |
|
588 | + $this->connection = $connection; |
|
589 | + |
|
590 | + return $this->connection; |
|
591 | + } |
|
592 | + |
|
593 | + /** |
|
594 | + * Returns the initialized object store container. |
|
595 | + * |
|
596 | + * @return OpenCloud\ObjectStore\Resource\Container |
|
597 | + */ |
|
598 | + public function getContainer() { |
|
599 | + if (!is_null($this->container)) { |
|
600 | + return $this->container; |
|
601 | + } |
|
602 | + |
|
603 | + try { |
|
604 | + $this->container = $this->getConnection()->getContainer($this->bucket); |
|
605 | + } catch (ClientErrorResponseException $e) { |
|
606 | + $this->container = $this->getConnection()->createContainer($this->bucket); |
|
607 | + } |
|
608 | + |
|
609 | + if (!$this->file_exists('.')) { |
|
610 | + $this->mkdir('.'); |
|
611 | + } |
|
612 | + |
|
613 | + return $this->container; |
|
614 | + } |
|
615 | + |
|
616 | + public function writeBack($tmpFile, $path) { |
|
617 | + $fileData = fopen($tmpFile, 'r'); |
|
618 | + $this->getContainer()->uploadObject($path, $fileData); |
|
619 | + // invalidate target object to force repopulation on fetch |
|
620 | + $this->objectCache->remove(self::$tmpFiles[$tmpFile]); |
|
621 | + unlink($tmpFile); |
|
622 | + } |
|
623 | + |
|
624 | + public function hasUpdated($path, $time) { |
|
625 | + if ($this->is_file($path)) { |
|
626 | + return parent::hasUpdated($path, $time); |
|
627 | + } |
|
628 | + $path = $this->normalizePath($path); |
|
629 | + $dh = $this->opendir($path); |
|
630 | + $content = array(); |
|
631 | + while (($file = readdir($dh)) !== false) { |
|
632 | + $content[] = $file; |
|
633 | + } |
|
634 | + if ($path === '.') { |
|
635 | + $path = ''; |
|
636 | + } |
|
637 | + $cachedContent = $this->getCache()->getFolderContents($path); |
|
638 | + $cachedNames = array_map(function ($content) { |
|
639 | + return $content['name']; |
|
640 | + }, $cachedContent); |
|
641 | + sort($cachedNames); |
|
642 | + sort($content); |
|
643 | + return $cachedNames != $content; |
|
644 | + } |
|
645 | + |
|
646 | + /** |
|
647 | + * check if curl is installed |
|
648 | + */ |
|
649 | + public static function checkDependencies() { |
|
650 | + return true; |
|
651 | + } |
|
652 | 652 | |
653 | 653 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | throw new \Exception("API Key or password, Username, Bucket and Region have to be configured."); |
164 | 164 | } |
165 | 165 | |
166 | - $this->id = 'swift::' . $params['user'] . md5($params['bucket']); |
|
166 | + $this->id = 'swift::'.$params['user'].md5($params['bucket']); |
|
167 | 167 | |
168 | 168 | $bucketUrl = Url::factory($params['bucket']); |
169 | 169 | if ($bucketUrl->isAbsolute()) { |
@@ -236,16 +236,16 @@ discard block |
||
236 | 236 | continue; |
237 | 237 | } |
238 | 238 | |
239 | - if ($this->is_dir($path . '/' . $file)) { |
|
240 | - $this->rmdir($path . '/' . $file); |
|
239 | + if ($this->is_dir($path.'/'.$file)) { |
|
240 | + $this->rmdir($path.'/'.$file); |
|
241 | 241 | } else { |
242 | - $this->unlink($path . '/' . $file); |
|
242 | + $this->unlink($path.'/'.$file); |
|
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
246 | 246 | try { |
247 | - $this->getContainer()->dataObject()->setName($path . '/')->delete(); |
|
248 | - $this->objectCache->remove($path . '/'); |
|
247 | + $this->getContainer()->dataObject()->setName($path.'/')->delete(); |
|
248 | + $this->objectCache->remove($path.'/'); |
|
249 | 249 | } catch (Exceptions\DeleteError $e) { |
250 | 250 | \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
251 | 251 | return false; |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | } |
327 | 327 | |
328 | 328 | $stat = array(); |
329 | - $stat['size'] = (int)$object->getContentLength(); |
|
329 | + $stat['size'] = (int) $object->getContentLength(); |
|
330 | 330 | $stat['mtime'] = $mtime; |
331 | 331 | $stat['atime'] = time(); |
332 | 332 | return $stat; |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | try { |
359 | 359 | $this->getContainer()->dataObject()->setName($path)->delete(); |
360 | 360 | $this->objectCache->remove($path); |
361 | - $this->objectCache->remove($path . '/'); |
|
361 | + $this->objectCache->remove($path.'/'); |
|
362 | 362 | } catch (ClientErrorResponseException $e) { |
363 | 363 | if ($e->getResponse()->getStatusCode() !== 404) { |
364 | 364 | \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
@@ -387,8 +387,8 @@ discard block |
||
387 | 387 | ->get($c->getUrl($path))); |
388 | 388 | $streamInterface->rewind(); |
389 | 389 | $stream = $streamInterface->getStream(); |
390 | - stream_context_set_option($stream, 'swift','content', $streamInterface); |
|
391 | - if(!strrpos($streamInterface |
|
390 | + stream_context_set_option($stream, 'swift', 'content', $streamInterface); |
|
391 | + if (!strrpos($streamInterface |
|
392 | 392 | ->getMetaData('wrapper_data')[0], '404 Not Found')) { |
393 | 393 | return $stream; |
394 | 394 | } |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | file_put_contents($tmpFile, $source); |
423 | 423 | } |
424 | 424 | $handle = fopen($tmpFile, $mode); |
425 | - return CallbackWrapper::wrap($handle, null, null, function () use ($path, $tmpFile) { |
|
425 | + return CallbackWrapper::wrap($handle, null, null, function() use ($path, $tmpFile) { |
|
426 | 426 | $this->writeBack($tmpFile, $path); |
427 | 427 | }); |
428 | 428 | } |
@@ -469,10 +469,10 @@ discard block |
||
469 | 469 | |
470 | 470 | try { |
471 | 471 | $source = $this->fetchObject($path1); |
472 | - $source->copy($this->bucket . '/' . $path2); |
|
472 | + $source->copy($this->bucket.'/'.$path2); |
|
473 | 473 | // invalidate target object to force repopulation on fetch |
474 | 474 | $this->objectCache->remove($path2); |
475 | - $this->objectCache->remove($path2 . '/'); |
|
475 | + $this->objectCache->remove($path2.'/'); |
|
476 | 476 | } catch (ClientErrorResponseException $e) { |
477 | 477 | \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
478 | 478 | return false; |
@@ -484,11 +484,11 @@ discard block |
||
484 | 484 | $this->unlink($path2); |
485 | 485 | |
486 | 486 | try { |
487 | - $source = $this->fetchObject($path1 . '/'); |
|
488 | - $source->copy($this->bucket . '/' . $path2 . '/'); |
|
487 | + $source = $this->fetchObject($path1.'/'); |
|
488 | + $source->copy($this->bucket.'/'.$path2.'/'); |
|
489 | 489 | // invalidate target object to force repopulation on fetch |
490 | 490 | $this->objectCache->remove($path2); |
491 | - $this->objectCache->remove($path2 . '/'); |
|
491 | + $this->objectCache->remove($path2.'/'); |
|
492 | 492 | } catch (ClientErrorResponseException $e) { |
493 | 493 | \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); |
494 | 494 | return false; |
@@ -500,8 +500,8 @@ discard block |
||
500 | 500 | continue; |
501 | 501 | } |
502 | 502 | |
503 | - $source = $path1 . '/' . $file; |
|
504 | - $target = $path2 . '/' . $file; |
|
503 | + $source = $path1.'/'.$file; |
|
504 | + $target = $path2.'/'.$file; |
|
505 | 505 | $this->copy($source, $target); |
506 | 506 | } |
507 | 507 | |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | $path = ''; |
636 | 636 | } |
637 | 637 | $cachedContent = $this->getCache()->getFolderContents($path); |
638 | - $cachedNames = array_map(function ($content) { |
|
638 | + $cachedNames = array_map(function($content) { |
|
639 | 639 | return $content['name']; |
640 | 640 | }, $cachedContent); |
641 | 641 | sort($cachedNames); |