2014-06-11 07:57:24 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author William Pain <pain.william@gmail.com>
|
2014-06-11 07:57:24 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @license AGPL-3.0
|
2014-06-11 07:57:24 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04: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 07:57:24 -04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 06:44:34 -04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-06-11 07:57:24 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04: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 07:57:24 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2014-06-11 07:57:24 -04:00
|
|
|
namespace OC\Files\ObjectStore;
|
|
|
|
|
|
2018-02-15 04:50:23 -05:00
|
|
|
use function GuzzleHttp\Psr7\stream_for;
|
2017-12-04 10:34:53 -05:00
|
|
|
use Icewind\Streams\RetryWrapper;
|
2018-11-16 14:21:21 -05:00
|
|
|
use OCP\Files\NotFoundException;
|
2014-06-20 06:27:47 -04:00
|
|
|
use OCP\Files\ObjectStore\IObjectStore;
|
2017-03-28 05:02:18 -04:00
|
|
|
use OCP\Files\StorageAuthException;
|
2018-11-16 14:21:21 -05:00
|
|
|
use OpenStack\Common\Error\BadResponseError;
|
2014-06-11 07:57:24 -04:00
|
|
|
|
2014-06-20 06:27:47 -04:00
|
|
|
class Swift implements IObjectStore {
|
2014-06-24 08:42:52 -04:00
|
|
|
/**
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
|
|
|
|
private $params;
|
2014-06-11 07:57:24 -04:00
|
|
|
|
2018-02-12 09:08:27 -05:00
|
|
|
/** @var SwiftFactory */
|
2018-02-15 04:50:23 -05:00
|
|
|
private $swiftFactory;
|
2017-03-28 07:06:09 -04:00
|
|
|
|
2018-02-12 09:08:27 -05:00
|
|
|
public function __construct($params, SwiftFactory $connectionFactory = null) {
|
2018-03-16 10:20:16 -04:00
|
|
|
$this->swiftFactory = $connectionFactory ?: new SwiftFactory(
|
|
|
|
|
\OC::$server->getMemCacheFactory()->createDistributed('swift::'),
|
|
|
|
|
$params,
|
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
|
);
|
2014-06-24 08:42:52 -04:00
|
|
|
$this->params = $params;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-08 08:10:33 -05:00
|
|
|
/**
|
2018-02-15 04:50:23 -05:00
|
|
|
* @return \OpenStack\ObjectStore\v1\Models\Container
|
|
|
|
|
* @throws StorageAuthException
|
2018-02-12 09:08:27 -05:00
|
|
|
* @throws \OCP\Files\StorageNotAvailableException
|
2018-02-08 08:10:33 -05:00
|
|
|
*/
|
2018-02-15 04:50:23 -05:00
|
|
|
private function getContainer() {
|
2018-02-12 09:08:27 -05:00
|
|
|
return $this->swiftFactory->getContainer();
|
2017-03-28 05:39:25 -04:00
|
|
|
}
|
|
|
|
|
|
2014-06-20 06:27:47 -04:00
|
|
|
/**
|
|
|
|
|
* @return string the container name where objects are stored
|
|
|
|
|
*/
|
2014-06-18 09:20:26 -04:00
|
|
|
public function getStorageId() {
|
2018-03-12 14:59:33 -04:00
|
|
|
if (isset($this->params['bucket'])) {
|
|
|
|
|
return $this->params['bucket'];
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-24 08:42:52 -04:00
|
|
|
return $this->params['container'];
|
2014-06-18 09:20:26 -04:00
|
|
|
}
|
2014-06-17 16:06:56 -04:00
|
|
|
|
2014-06-11 16:15:42 -04:00
|
|
|
/**
|
2014-06-20 06: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 04:50:23 -05:00
|
|
|
* @throws \Exception from openstack lib when something goes wrong
|
2014-06-11 16:15:42 -04:00
|
|
|
*/
|
2014-06-20 06:27:47 -04:00
|
|
|
public function writeObject($urn, $stream) {
|
2019-04-18 15:04:27 -04:00
|
|
|
$tmpFile = \OC::$server->getTempManager()->getTemporaryFile('swiftwrite');
|
|
|
|
|
file_put_contents($tmpFile, $stream);
|
|
|
|
|
$handle = fopen($tmpFile, 'rb');
|
2019-02-27 16:03:54 -05:00
|
|
|
|
2018-02-15 04:50:23 -05:00
|
|
|
$this->getContainer()->createObject([
|
|
|
|
|
'name' => $urn,
|
2019-02-27 16:03:54 -05:00
|
|
|
'stream' => stream_for($handle)
|
2018-02-15 04:50:23 -05:00
|
|
|
]);
|
2014-06-11 07:57:24 -04:00
|
|
|
}
|
2014-06-11 16:15:42 -04:00
|
|
|
|
|
|
|
|
/**
|
2014-06-20 06: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 04:50:23 -05:00
|
|
|
* @throws \Exception from openstack lib when something goes wrong
|
2018-11-19 09:34:07 -05:00
|
|
|
* @throws NotFoundException if file does not exist
|
2014-06-11 16:15:42 -04:00
|
|
|
*/
|
2014-06-20 06:27:47 -04:00
|
|
|
public function readObject($urn) {
|
2018-11-16 14:21:21 -05: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 07:57:24 -04:00
|
|
|
$objectContent->rewind();
|
2014-06-20 06:27:47 -04:00
|
|
|
|
2018-02-15 04:50:23 -05:00
|
|
|
$stream = $objectContent->detach();
|
2014-08-22 08: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 05:02:18 -04:00
|
|
|
stream_context_set_option($stream, 'swift', 'content', $objectContent);
|
2014-06-20 06:27:47 -04:00
|
|
|
|
2018-02-07 11:10:59 -05:00
|
|
|
return RetryWrapper::wrap($stream);
|
2014-06-11 07:57:24 -04:00
|
|
|
}
|
2014-06-11 16:15:42 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $urn Unified Resource Name
|
|
|
|
|
* @return void
|
2018-02-15 04:50:23 -05:00
|
|
|
* @throws \Exception from openstack lib when something goes wrong
|
2014-06-11 16:15:42 -04:00
|
|
|
*/
|
2014-06-17 16:06:56 -04:00
|
|
|
public function deleteObject($urn) {
|
2018-02-15 04:50:23 -05:00
|
|
|
$this->getContainer()->getObject($urn)->delete();
|
2014-06-11 07:57:24 -04:00
|
|
|
}
|
|
|
|
|
|
2018-02-15 04:50:23 -05:00
|
|
|
/**
|
|
|
|
|
* @return void
|
|
|
|
|
* @throws \Exception from openstack lib when something goes wrong
|
|
|
|
|
*/
|
|
|
|
|
public function deleteContainer() {
|
|
|
|
|
$this->getContainer()->delete();
|
2014-06-13 11:22:21 -04:00
|
|
|
}
|
|
|
|
|
|
2018-12-10 11:20:45 -05:00
|
|
|
public function objectExists($urn) {
|
|
|
|
|
return $this->getContainer()->objectExists($urn);
|
|
|
|
|
}
|
2014-06-11 07:57:24 -04:00
|
|
|
}
|