2014-06-11 15:57:24 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author William Pain <pain.william@gmail.com>
|
2014-06-11 15:57:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-06-11 15:57:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-06-11 15:57:24 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-06-11 15:57:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-06-11 15:57:24 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-06-11 15:57:24 +04:00
|
|
|
namespace OC\Files\ObjectStore;
|
|
|
|
|
2018-02-15 12:50:23 +03:00
|
|
|
use function GuzzleHttp\Psr7\stream_for;
|
2017-12-04 18:34:53 +03:00
|
|
|
use Icewind\Streams\RetryWrapper;
|
2018-11-16 22:21:21 +03:00
|
|
|
use OCP\Files\NotFoundException;
|
2014-06-20 14:27:47 +04:00
|
|
|
use OCP\Files\ObjectStore\IObjectStore;
|
2017-03-28 12:02:18 +03:00
|
|
|
use OCP\Files\StorageAuthException;
|
2018-11-16 22:21:21 +03:00
|
|
|
use OpenStack\Common\Error\BadResponseError;
|
2014-06-11 15:57:24 +04:00
|
|
|
|
2014-06-20 14:27:47 +04:00
|
|
|
class Swift implements IObjectStore {
|
2014-06-24 16:42:52 +04:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $params;
|
2014-06-11 15:57:24 +04:00
|
|
|
|
2018-02-12 17:08:27 +03:00
|
|
|
/** @var SwiftFactory */
|
2018-02-15 12:50:23 +03:00
|
|
|
private $swiftFactory;
|
2017-03-28 14:06:09 +03:00
|
|
|
|
2018-02-12 17:08:27 +03:00
|
|
|
public function __construct($params, SwiftFactory $connectionFactory = null) {
|
2018-03-16 17:20:16 +03:00
|
|
|
$this->swiftFactory = $connectionFactory ?: new SwiftFactory(
|
|
|
|
\OC::$server->getMemCacheFactory()->createDistributed('swift::'),
|
|
|
|
$params,
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
2014-06-24 16:42:52 +04:00
|
|
|
$this->params = $params;
|
|
|
|
}
|
|
|
|
|
2018-02-08 16:10:33 +03:00
|
|
|
/**
|
2018-02-15 12:50:23 +03:00
|
|
|
* @return \OpenStack\ObjectStore\v1\Models\Container
|
|
|
|
* @throws StorageAuthException
|
2018-02-12 17:08:27 +03:00
|
|
|
* @throws \OCP\Files\StorageNotAvailableException
|
2018-02-08 16:10:33 +03:00
|
|
|
*/
|
2018-02-15 12:50:23 +03:00
|
|
|
private function getContainer() {
|
2018-02-12 17:08:27 +03:00
|
|
|
return $this->swiftFactory->getContainer();
|
2017-03-28 12:39:25 +03:00
|
|
|
}
|
|
|
|
|
2014-06-20 14:27:47 +04:00
|
|
|
/**
|
|
|
|
* @return string the container name where objects are stored
|
|
|
|
*/
|
2014-06-18 17:20:26 +04:00
|
|
|
public function getStorageId() {
|
2018-03-12 21:59:33 +03:00
|
|
|
if (isset($this->params['bucket'])) {
|
|
|
|
return $this->params['bucket'];
|
|
|
|
}
|
|
|
|
|
2014-06-24 16:42:52 +04:00
|
|
|
return $this->params['container'];
|
2014-06-18 17:20:26 +04:00
|
|
|
}
|
2014-06-18 00:06:56 +04:00
|
|
|
|
2014-06-12 00:15:42 +04:00
|
|
|
/**
|
2014-06-20 14:27:47 +04:00
|
|
|
* @param string $urn the unified resource name used to identify the object
|
|
|
|
* @param resource $stream stream with the data to write
|
2018-02-15 12:50:23 +03:00
|
|
|
* @throws \Exception from openstack lib when something goes wrong
|
2014-06-12 00:15:42 +04:00
|
|
|
*/
|
2014-06-20 14:27:47 +04:00
|
|
|
public function writeObject($urn, $stream) {
|
2018-02-15 12:50:23 +03:00
|
|
|
$this->getContainer()->createObject([
|
|
|
|
'name' => $urn,
|
|
|
|
'stream' => stream_for($stream)
|
|
|
|
]);
|
2014-06-11 15:57:24 +04:00
|
|
|
}
|
2014-06-12 00:15:42 +04:00
|
|
|
|
|
|
|
/**
|
2014-06-20 14:27:47 +04:00
|
|
|
* @param string $urn the unified resource name used to identify the object
|
|
|
|
* @return resource stream with the read data
|
2018-02-15 12:50:23 +03:00
|
|
|
* @throws \Exception from openstack lib when something goes wrong
|
2018-11-19 17:34:07 +03:00
|
|
|
* @throws NotFoundException if file does not exist
|
2014-06-12 00:15:42 +04:00
|
|
|
*/
|
2014-06-20 14:27:47 +04:00
|
|
|
public function readObject($urn) {
|
2018-11-16 22:21:21 +03:00
|
|
|
try {
|
|
|
|
$object = $this->getContainer()->getObject($urn);
|
|
|
|
|
|
|
|
// we need to keep a reference to objectContent or
|
|
|
|
// the stream will be closed before we can do anything with it
|
|
|
|
$objectContent = $object->download();
|
|
|
|
} catch (BadResponseError $e) {
|
|
|
|
if ($e->getResponse()->getStatusCode() === 404) {
|
|
|
|
throw new NotFoundException("object $urn not found in object store");
|
|
|
|
} else {
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
}
|
2014-06-11 15:57:24 +04:00
|
|
|
$objectContent->rewind();
|
2014-06-20 14:27:47 +04:00
|
|
|
|
2018-02-15 12:50:23 +03:00
|
|
|
$stream = $objectContent->detach();
|
2014-08-22 16:11:21 +04:00
|
|
|
// save the object content in the context of the stream to prevent it being gc'd until the stream is closed
|
2017-03-28 12:02:18 +03:00
|
|
|
stream_context_set_option($stream, 'swift', 'content', $objectContent);
|
2014-06-20 14:27:47 +04:00
|
|
|
|
2018-02-07 19:10:59 +03:00
|
|
|
return RetryWrapper::wrap($stream);
|
2014-06-11 15:57:24 +04:00
|
|
|
}
|
2014-06-12 00:15:42 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $urn Unified Resource Name
|
|
|
|
* @return void
|
2018-02-15 12:50:23 +03:00
|
|
|
* @throws \Exception from openstack lib when something goes wrong
|
2014-06-12 00:15:42 +04:00
|
|
|
*/
|
2014-06-18 00:06:56 +04:00
|
|
|
public function deleteObject($urn) {
|
2018-02-15 12:50:23 +03:00
|
|
|
$this->getContainer()->getObject($urn)->delete();
|
2014-06-11 15:57:24 +04:00
|
|
|
}
|
|
|
|
|
2018-02-15 12:50:23 +03:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
* @throws \Exception from openstack lib when something goes wrong
|
|
|
|
*/
|
|
|
|
public function deleteContainer() {
|
|
|
|
$this->getContainer()->delete();
|
2014-06-13 19:22:21 +04:00
|
|
|
}
|
|
|
|
|
2018-12-10 19:20:45 +03:00
|
|
|
public function objectExists($urn) {
|
|
|
|
return $this->getContainer()->objectExists($urn);
|
|
|
|
}
|
2014-06-11 15:57:24 +04:00
|
|
|
}
|