2012-01-12 20:01:54 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
2012-05-07 07:11:33 +00:00
|
|
|
* OpenStack Swift based file backend.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
2012-01-12 20:01:54 +00:00
|
|
|
* @file
|
|
|
|
|
* @ingroup FileBackend
|
|
|
|
|
* @author Russ Nelson
|
|
|
|
|
* @author Aaron Schulz
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2013-10-21 17:20:34 +00:00
|
|
|
* @brief Class for an OpenStack Swift (or Ceph RGW) based file backend.
|
2012-01-12 20:01:54 +00:00
|
|
|
*
|
2012-01-29 11:33:47 +00:00
|
|
|
* Status messages should avoid mentioning the Swift account name.
|
2012-01-14 23:11:21 +00:00
|
|
|
* Likewise, error suppression should be used to avoid path disclosure.
|
|
|
|
|
*
|
2012-01-12 20:01:54 +00:00
|
|
|
* @ingroup FileBackend
|
2012-01-14 03:16:18 +00:00
|
|
|
* @since 1.19
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
2012-01-29 22:22:28 +00:00
|
|
|
class SwiftFileBackend extends FileBackendStore {
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var MultiHttpClient */
|
|
|
|
|
protected $http;
|
2013-11-23 18:23:32 +00:00
|
|
|
|
|
|
|
|
/** @var int TTL in seconds */
|
|
|
|
|
protected $authTTL;
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var string Authentication base URL (without version) */
|
|
|
|
|
protected $swiftAuthUrl;
|
2013-11-23 18:23:32 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var string Swift user (account:user) to authenticate as */
|
|
|
|
|
protected $swiftUser;
|
2013-11-23 18:23:32 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var string Secret key for user */
|
|
|
|
|
protected $swiftKey;
|
2013-11-23 18:23:32 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var string Shared secret value for making temp URLs */
|
|
|
|
|
protected $swiftTempUrlKey;
|
2012-06-05 22:58:54 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var string S3 access key (RADOS Gateway) */
|
2013-11-23 18:23:32 +00:00
|
|
|
protected $rgwS3AccessKey;
|
2013-01-11 02:46:36 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var string S3 authentication key (RADOS Gateway) */
|
2013-11-23 18:23:32 +00:00
|
|
|
protected $rgwS3SecretKey;
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var BagOStuff */
|
|
|
|
|
protected $srvCache;
|
2013-11-23 18:23:32 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var ProcessCacheLRU Container stat cache */
|
|
|
|
|
protected $containerStatCache;
|
2012-08-16 22:46:19 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var array */
|
|
|
|
|
protected $authCreds;
|
2013-11-23 18:23:32 +00:00
|
|
|
|
|
|
|
|
/** @var int UNIX timestamp */
|
2013-12-08 23:19:00 +00:00
|
|
|
protected $authSessionTimestamp = 0;
|
2012-08-16 22:46:19 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var int UNIX timestamp */
|
|
|
|
|
protected $authErrorTimestamp = null;
|
2012-08-10 19:16:27 +00:00
|
|
|
|
2014-03-18 06:47:53 +00:00
|
|
|
/** @var bool Whether the server is an Ceph RGW */
|
|
|
|
|
protected $isRGW = false;
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::__construct()
|
2012-01-12 20:01:54 +00:00
|
|
|
* Additional $config params include:
|
2012-07-18 19:08:30 +00:00
|
|
|
* - swiftAuthUrl : Swift authentication server URL
|
|
|
|
|
* - swiftUser : Swift user used by MediaWiki (account:username)
|
|
|
|
|
* - swiftKey : Swift authentication key for the above user
|
|
|
|
|
* - swiftAuthTTL : Swift authentication TTL (seconds)
|
2012-11-06 20:49:40 +00:00
|
|
|
* - swiftTempUrlKey : Swift "X-Account-Meta-Temp-URL-Key" value on the account.
|
|
|
|
|
* Do not set this until it has been set in the backend.
|
2012-07-18 19:08:30 +00:00
|
|
|
* - shardViaHashLevels : Map of container names to sharding config with:
|
|
|
|
|
* - base : base of hash characters, 16 or 36
|
|
|
|
|
* - levels : the number of hash levels (and digits)
|
|
|
|
|
* - repeat : hash subdirectories are prefixed with all the
|
|
|
|
|
* parent hash directory names (e.g. "a/ab/abc")
|
2012-09-20 19:24:14 +00:00
|
|
|
* - cacheAuthInfo : Whether to cache authentication tokens in APC, XCache, ect.
|
|
|
|
|
* If those are not available, then the main cache will be used.
|
2012-08-16 22:46:19 +00:00
|
|
|
* This is probably insecure in shared hosting environments.
|
2014-01-10 04:25:10 +00:00
|
|
|
* - rgwS3AccessKey : Rados Gateway S3 "access key" value on the account.
|
2013-01-11 02:46:36 +00:00
|
|
|
* Do not set this until it has been set in the backend.
|
|
|
|
|
* This is used for generating expiring pre-authenticated URLs.
|
|
|
|
|
* Only use this when using rgw and to work around
|
|
|
|
|
* http://tracker.newdream.net/issues/3454.
|
2014-01-10 04:25:10 +00:00
|
|
|
* - rgwS3SecretKey : Rados Gateway S3 "secret key" value on the account.
|
2013-01-11 02:46:36 +00:00
|
|
|
* Do not set this until it has been set in the backend.
|
|
|
|
|
* This is used for generating expiring pre-authenticated URLs.
|
|
|
|
|
* Only use this when using rgw and to work around
|
|
|
|
|
* http://tracker.newdream.net/issues/3454.
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
public function __construct( array $config ) {
|
|
|
|
|
parent::__construct( $config );
|
|
|
|
|
// Required settings
|
2013-12-08 23:19:00 +00:00
|
|
|
$this->swiftAuthUrl = $config['swiftAuthUrl'];
|
|
|
|
|
$this->swiftUser = $config['swiftUser'];
|
|
|
|
|
$this->swiftKey = $config['swiftKey'];
|
2012-01-12 20:01:54 +00:00
|
|
|
// Optional settings
|
2012-01-18 19:57:32 +00:00
|
|
|
$this->authTTL = isset( $config['swiftAuthTTL'] )
|
2012-01-22 00:33:20 +00:00
|
|
|
? $config['swiftAuthTTL']
|
2014-09-25 00:04:01 +00:00
|
|
|
: 15 * 60; // some sane number
|
2012-11-06 20:49:40 +00:00
|
|
|
$this->swiftTempUrlKey = isset( $config['swiftTempUrlKey'] )
|
|
|
|
|
? $config['swiftTempUrlKey']
|
|
|
|
|
: '';
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->shardViaHashLevels = isset( $config['shardViaHashLevels'] )
|
|
|
|
|
? $config['shardViaHashLevels']
|
|
|
|
|
: '';
|
2013-01-11 02:46:36 +00:00
|
|
|
$this->rgwS3AccessKey = isset( $config['rgwS3AccessKey'] )
|
|
|
|
|
? $config['rgwS3AccessKey']
|
|
|
|
|
: '';
|
|
|
|
|
$this->rgwS3SecretKey = isset( $config['rgwS3SecretKey'] )
|
|
|
|
|
? $config['rgwS3SecretKey']
|
|
|
|
|
: '';
|
2013-12-08 23:19:00 +00:00
|
|
|
// HTTP helper client
|
|
|
|
|
$this->http = new MultiHttpClient( array() );
|
2012-08-16 22:46:19 +00:00
|
|
|
// Cache container information to mask latency
|
2012-04-23 20:27:58 +00:00
|
|
|
$this->memCache = wfGetMainCache();
|
2012-08-10 19:16:27 +00:00
|
|
|
// Process cache for container info
|
2013-12-08 23:19:00 +00:00
|
|
|
$this->containerStatCache = new ProcessCacheLRU( 300 );
|
2012-08-16 22:46:19 +00:00
|
|
|
// Cache auth token information to avoid RTTs
|
|
|
|
|
if ( !empty( $config['cacheAuthInfo'] ) ) {
|
2013-02-04 03:01:17 +00:00
|
|
|
if ( PHP_SAPI === 'cli' ) {
|
2012-09-20 19:24:14 +00:00
|
|
|
$this->srvCache = wfGetMainCache(); // preferrably memcached
|
|
|
|
|
} else {
|
|
|
|
|
try { // look for APC, XCache, WinCache, ect...
|
|
|
|
|
$this->srvCache = ObjectCache::newAccelerator( array() );
|
2013-11-22 21:17:15 +00:00
|
|
|
} catch ( Exception $e ) {
|
|
|
|
|
}
|
2012-09-20 19:24:14 +00:00
|
|
|
}
|
2012-08-16 22:46:19 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
$this->srvCache = $this->srvCache ?: new EmptyBagOStuff();
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2013-09-30 07:12:10 +00:00
|
|
|
public function getFeatures() {
|
2014-04-12 06:50:58 +00:00
|
|
|
return ( FileBackend::ATTR_UNICODE_PATHS |
|
|
|
|
|
FileBackend::ATTR_HEADERS | FileBackend::ATTR_METADATA );
|
2013-09-30 07:12:10 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
protected function resolveContainerPath( $container, $relStoragePath ) {
|
2012-08-10 21:25:59 +00:00
|
|
|
if ( !mb_check_encoding( $relStoragePath, 'UTF-8' ) ) { // mb_string required by CF
|
|
|
|
|
return null; // not UTF-8, makes it hard to use CF and the swift HTTP API
|
|
|
|
|
} elseif ( strlen( urlencode( $relStoragePath ) ) > 1024 ) {
|
2012-01-14 23:11:21 +00:00
|
|
|
return null; // too long for Swift
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $relStoragePath;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-19 23:18:03 +00:00
|
|
|
public function isPathUsableInternal( $storagePath ) {
|
|
|
|
|
list( $container, $rel ) = $this->resolveStoragePathReal( $storagePath );
|
|
|
|
|
if ( $rel === null ) {
|
|
|
|
|
return false; // invalid
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return is_array( $this->getContainerStat( $container ) );
|
2012-01-19 23:18:03 +00:00
|
|
|
}
|
|
|
|
|
|
2012-09-06 17:15:10 +00:00
|
|
|
/**
|
2013-12-08 23:19:00 +00:00
|
|
|
* Sanitize and filter the custom headers from a $params array.
|
|
|
|
|
* We only allow certain Content- and X-Content- headers.
|
|
|
|
|
*
|
2014-08-13 19:41:39 +00:00
|
|
|
* @param array $params
|
2013-12-08 23:19:00 +00:00
|
|
|
* @return array Sanitized value of 'headers' field in $params
|
2013-03-09 23:09:25 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function sanitizeHdrs( array $params ) {
|
|
|
|
|
$headers = array();
|
|
|
|
|
|
|
|
|
|
// Normalize casing, and strip out illegal headers
|
2014-02-05 11:02:29 +00:00
|
|
|
if ( isset( $params['headers'] ) ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
foreach ( $params['headers'] as $name => $value ) {
|
|
|
|
|
$name = strtolower( $name );
|
|
|
|
|
if ( preg_match( '/^content-(type|length)$/', $name ) ) {
|
|
|
|
|
continue; // blacklisted
|
|
|
|
|
} elseif ( preg_match( '/^(x-)?content-/', $name ) ) {
|
|
|
|
|
$headers[$name] = $value; // allowed
|
2013-09-30 07:12:10 +00:00
|
|
|
} elseif ( preg_match( '/^content-(disposition)/', $name ) ) {
|
|
|
|
|
$headers[$name] = $value; // allowed
|
2013-12-08 23:19:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
2013-03-09 23:09:25 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
// By default, Swift has annoyingly low maximum header value limits
|
|
|
|
|
if ( isset( $headers['content-disposition'] ) ) {
|
|
|
|
|
$disposition = '';
|
|
|
|
|
foreach ( explode( ';', $headers['content-disposition'] ) as $part ) {
|
|
|
|
|
$part = trim( $part );
|
|
|
|
|
$new = ( $disposition === '' ) ? $part : "{$disposition};{$part}";
|
|
|
|
|
if ( strlen( $new ) <= 255 ) {
|
2013-09-30 07:12:10 +00:00
|
|
|
$disposition = $new;
|
2013-12-08 23:19:00 +00:00
|
|
|
} else {
|
|
|
|
|
break; // too long; sigh
|
|
|
|
|
}
|
2012-09-06 17:15:10 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
$headers['content-disposition'] = $disposition;
|
2012-09-06 17:15:10 +00:00
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return $headers;
|
2012-09-06 17:15:10 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
protected function doCreateInternal( array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
list( $dstCont, $dstRel ) = $this->resolveStoragePathReal( $params['dst'] );
|
|
|
|
|
if ( $dstRel === null ) {
|
2012-01-12 20:01:54 +00:00
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['dst'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$sha1Hash = wfBaseConvert( sha1( $params['content'] ), 16, 36, 31 );
|
2013-12-08 23:19:00 +00:00
|
|
|
$contentType = $this->getContentType( $params['dst'], $params['content'], null );
|
|
|
|
|
|
|
|
|
|
$reqs = array( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'PUT',
|
|
|
|
|
'url' => array( $dstCont, $dstRel ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'content-length' => strlen( $params['content'] ),
|
|
|
|
|
'etag' => md5( $params['content'] ),
|
|
|
|
|
'content-type' => $contentType,
|
2013-12-08 23:19:00 +00:00
|
|
|
'x-object-meta-sha1base36' => $sha1Hash
|
|
|
|
|
) + $this->sanitizeHdrs( $params ),
|
2014-02-05 11:02:29 +00:00
|
|
|
'body' => $params['content']
|
2013-12-08 23:19:00 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
$be = $this;
|
|
|
|
|
$method = __METHOD__;
|
2014-02-05 11:02:29 +00:00
|
|
|
$handler = function ( array $request, Status $status ) use ( $be, $method, $params ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $request['response'];
|
|
|
|
|
if ( $rcode === 201 ) {
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $rcode === 412 ) {
|
|
|
|
|
$status->fatal( 'backend-fail-contenttype', $params['dst'] );
|
|
|
|
|
} else {
|
|
|
|
|
$be->onError( $status, $method, $params, $rerr, $rcode, $rdesc );
|
2012-04-11 17:51:02 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$opHandle = new SwiftFileOpHandle( $this, $handler, $reqs );
|
|
|
|
|
if ( !empty( $params['async'] ) ) { // deferred
|
|
|
|
|
$status->value = $opHandle;
|
|
|
|
|
} else { // actually write the object in Swift
|
|
|
|
|
$status->merge( current( $this->doExecuteOpHandlesInternal( array( $opHandle ) ) ) );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function doStoreInternal( array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
list( $dstCont, $dstRel ) = $this->resolveStoragePathReal( $params['dst'] );
|
|
|
|
|
if ( $dstRel === null ) {
|
2012-01-12 20:01:54 +00:00
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['dst'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-12 15:42:36 +00:00
|
|
|
wfSuppressWarnings();
|
2012-01-12 20:01:54 +00:00
|
|
|
$sha1Hash = sha1_file( $params['src'] );
|
2013-02-12 15:42:36 +00:00
|
|
|
wfRestoreWarnings();
|
2012-01-12 20:01:54 +00:00
|
|
|
if ( $sha1Hash === false ) { // source doesn't exist?
|
2014-01-08 23:42:44 +00:00
|
|
|
$status->fatal( 'backend-fail-store', $params['src'], $params['dst'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
$sha1Hash = wfBaseConvert( $sha1Hash, 16, 36, 31 );
|
2013-12-08 23:19:00 +00:00
|
|
|
$contentType = $this->getContentType( $params['dst'], null, $params['src'] );
|
2012-01-12 20:01:54 +00:00
|
|
|
|
2014-02-03 20:31:07 +00:00
|
|
|
$handle = fopen( $params['src'], 'rb' );
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( $handle === false ) { // source doesn't exist?
|
2014-01-08 23:42:44 +00:00
|
|
|
$status->fatal( 'backend-fail-store', $params['src'], $params['dst'] );
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
return $status;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$reqs = array( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'PUT',
|
|
|
|
|
'url' => array( $dstCont, $dstRel ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'content-length' => filesize( $params['src'] ),
|
|
|
|
|
'etag' => md5_file( $params['src'] ),
|
|
|
|
|
'content-type' => $contentType,
|
2013-12-08 23:19:00 +00:00
|
|
|
'x-object-meta-sha1base36' => $sha1Hash
|
|
|
|
|
) + $this->sanitizeHdrs( $params ),
|
2014-02-05 11:02:29 +00:00
|
|
|
'body' => $handle // resource
|
2013-12-08 23:19:00 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
$be = $this;
|
|
|
|
|
$method = __METHOD__;
|
2014-02-05 11:02:29 +00:00
|
|
|
$handler = function ( array $request, Status $status ) use ( $be, $method, $params ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $request['response'];
|
|
|
|
|
if ( $rcode === 201 ) {
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $rcode === 412 ) {
|
|
|
|
|
$status->fatal( 'backend-fail-contenttype', $params['dst'] );
|
|
|
|
|
} else {
|
|
|
|
|
$be->onError( $status, $method, $params, $rerr, $rcode, $rdesc );
|
|
|
|
|
}
|
|
|
|
|
};
|
2012-01-12 20:01:54 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$opHandle = new SwiftFileOpHandle( $this, $handler, $reqs );
|
|
|
|
|
if ( !empty( $params['async'] ) ) { // deferred
|
|
|
|
|
$status->value = $opHandle;
|
|
|
|
|
} else { // actually write the object in Swift
|
|
|
|
|
$status->merge( current( $this->doExecuteOpHandlesInternal( array( $opHandle ) ) ) );
|
2012-04-11 17:51:02 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
return $status;
|
2012-04-11 17:51:02 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
protected function doCopyInternal( array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['src'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
list( $dstCont, $dstRel ) = $this->resolveStoragePathReal( $params['dst'] );
|
|
|
|
|
if ( $dstRel === null ) {
|
2012-01-12 20:01:54 +00:00
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['dst'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$reqs = array( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'PUT',
|
|
|
|
|
'url' => array( $dstCont, $dstRel ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => array(
|
|
|
|
|
'x-copy-from' => '/' . rawurlencode( $srcCont ) .
|
|
|
|
|
'/' . str_replace( "%2F", "/", rawurlencode( $srcRel ) )
|
|
|
|
|
) + $this->sanitizeHdrs( $params ), // extra headers merged into object
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
$be = $this;
|
|
|
|
|
$method = __METHOD__;
|
2014-02-05 11:02:29 +00:00
|
|
|
$handler = function ( array $request, Status $status ) use ( $be, $method, $params ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $request['response'];
|
|
|
|
|
if ( $rcode === 201 ) {
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $rcode === 404 ) {
|
2013-03-12 07:50:16 +00:00
|
|
|
$status->fatal( 'backend-fail-copy', $params['src'], $params['dst'] );
|
2013-12-08 23:19:00 +00:00
|
|
|
} else {
|
|
|
|
|
$be->onError( $status, $method, $params, $rerr, $rcode, $rdesc );
|
2013-03-12 07:50:16 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
};
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$opHandle = new SwiftFileOpHandle( $this, $handler, $reqs );
|
|
|
|
|
if ( !empty( $params['async'] ) ) { // deferred
|
|
|
|
|
$status->value = $opHandle;
|
|
|
|
|
} else { // actually write the object in Swift
|
|
|
|
|
$status->merge( current( $this->doExecuteOpHandlesInternal( array( $opHandle ) ) ) );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-11 17:51:02 +00:00
|
|
|
protected function doMoveInternal( array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['src'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-04-11 17:51:02 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list( $dstCont, $dstRel ) = $this->resolveStoragePathReal( $params['dst'] );
|
|
|
|
|
if ( $dstRel === null ) {
|
|
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['dst'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-04-11 17:51:02 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$reqs = array(
|
|
|
|
|
array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'PUT',
|
|
|
|
|
'url' => array( $dstCont, $dstRel ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => array(
|
|
|
|
|
'x-copy-from' => '/' . rawurlencode( $srcCont ) .
|
|
|
|
|
'/' . str_replace( "%2F", "/", rawurlencode( $srcRel ) )
|
|
|
|
|
) + $this->sanitizeHdrs( $params ) // extra headers merged into object
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
if ( "{$srcCont}/{$srcRel}" !== "{$dstCont}/{$dstRel}" ) {
|
|
|
|
|
$reqs[] = array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'DELETE',
|
|
|
|
|
'url' => array( $srcCont, $srcRel ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => array()
|
|
|
|
|
);
|
2012-04-11 17:51:02 +00:00
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$be = $this;
|
|
|
|
|
$method = __METHOD__;
|
2014-02-05 11:02:29 +00:00
|
|
|
$handler = function ( array $request, Status $status ) use ( $be, $method, $params ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $request['response'];
|
|
|
|
|
if ( $request['method'] === 'PUT' && $rcode === 201 ) {
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $request['method'] === 'DELETE' && $rcode === 204 ) {
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $rcode === 404 ) {
|
2012-10-29 19:57:04 +00:00
|
|
|
$status->fatal( 'backend-fail-move', $params['src'], $params['dst'] );
|
2013-12-08 23:19:00 +00:00
|
|
|
} else {
|
|
|
|
|
$be->onError( $status, $method, $params, $rerr, $rcode, $rdesc );
|
2012-10-29 19:57:04 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$opHandle = new SwiftFileOpHandle( $this, $handler, $reqs );
|
|
|
|
|
if ( !empty( $params['async'] ) ) { // deferred
|
|
|
|
|
$status->value = $opHandle;
|
|
|
|
|
} else { // actually move the object in Swift
|
|
|
|
|
$status->merge( current( $this->doExecuteOpHandlesInternal( array( $opHandle ) ) ) );
|
2012-04-11 17:51:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
protected function doDeleteInternal( array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['src'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-05 11:02:29 +00:00
|
|
|
$reqs = array( array(
|
|
|
|
|
'method' => 'DELETE',
|
|
|
|
|
'url' => array( $srcCont, $srcRel ),
|
|
|
|
|
'headers' => array()
|
2013-12-08 23:19:00 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
$be = $this;
|
|
|
|
|
$method = __METHOD__;
|
2014-02-05 11:02:29 +00:00
|
|
|
$handler = function ( array $request, Status $status ) use ( $be, $method, $params ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $request['response'];
|
|
|
|
|
if ( $rcode === 204 ) {
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $rcode === 404 ) {
|
|
|
|
|
if ( empty( $params['ignoreMissingSource'] ) ) {
|
|
|
|
|
$status->fatal( 'backend-fail-delete', $params['src'] );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$be->onError( $status, $method, $params, $rerr, $rcode, $rdesc );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$opHandle = new SwiftFileOpHandle( $this, $handler, $reqs );
|
|
|
|
|
if ( !empty( $params['async'] ) ) { // deferred
|
|
|
|
|
$status->value = $opHandle;
|
|
|
|
|
} else { // actually delete the object in Swift
|
|
|
|
|
$status->merge( current( $this->doExecuteOpHandlesInternal( array( $opHandle ) ) ) );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-24 08:18:29 +00:00
|
|
|
protected function doDescribeInternal( array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['src'] );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-10-24 08:18:29 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
// Fetch the old object headers/metadata...this should be in stat cache by now
|
|
|
|
|
$stat = $this->getFileStat( array( 'src' => $params['src'], 'latest' => 1 ) );
|
|
|
|
|
if ( $stat && !isset( $stat['xattr'] ) ) { // older cache entry
|
|
|
|
|
$stat = $this->doGetFileStat( array( 'src' => $params['src'], 'latest' => 1 ) );
|
|
|
|
|
}
|
|
|
|
|
if ( !$stat ) {
|
2012-10-24 08:18:29 +00:00
|
|
|
$status->fatal( 'backend-fail-describe', $params['src'] );
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// POST clears prior headers, so we need to merge the changes in to the old ones
|
|
|
|
|
$metaHdrs = array();
|
|
|
|
|
foreach ( $stat['xattr']['metadata'] as $name => $value ) {
|
|
|
|
|
$metaHdrs["x-object-meta-$name"] = $value;
|
|
|
|
|
}
|
|
|
|
|
$customHdrs = $this->sanitizeHdrs( $params ) + $stat['xattr']['headers'];
|
|
|
|
|
|
|
|
|
|
$reqs = array( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'POST',
|
|
|
|
|
'url' => array( $srcCont, $srcRel ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => $metaHdrs + $customHdrs
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
$be = $this;
|
|
|
|
|
$method = __METHOD__;
|
2014-02-05 11:02:29 +00:00
|
|
|
$handler = function ( array $request, Status $status ) use ( $be, $method, $params ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $request['response'];
|
|
|
|
|
if ( $rcode === 202 ) {
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $rcode === 404 ) {
|
|
|
|
|
$status->fatal( 'backend-fail-describe', $params['src'] );
|
|
|
|
|
} else {
|
|
|
|
|
$be->onError( $status, $method, $params, $rerr, $rcode, $rdesc );
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$opHandle = new SwiftFileOpHandle( $this, $handler, $reqs );
|
|
|
|
|
if ( !empty( $params['async'] ) ) { // deferred
|
|
|
|
|
$status->value = $opHandle;
|
|
|
|
|
} else { // actually change the object in Swift
|
|
|
|
|
$status->merge( current( $this->doExecuteOpHandlesInternal( array( $opHandle ) ) ) );
|
2012-10-24 08:18:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
protected function doPrepareInternal( $fullCont, $dir, array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (a) Check if container already exists
|
2013-12-08 23:19:00 +00:00
|
|
|
$stat = $this->getContainerStat( $fullCont );
|
|
|
|
|
if ( is_array( $stat ) ) {
|
|
|
|
|
return $status; // already there
|
|
|
|
|
} elseif ( $stat === null ) {
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2014-11-17 18:05:52 +00:00
|
|
|
wfDebugLog( 'SwiftBackend', __METHOD__ . ': cannot get container stat' );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
// (b) Create container as needed with proper ACLs
|
|
|
|
|
if ( $stat === false ) {
|
|
|
|
|
$params['op'] = 'prepare';
|
|
|
|
|
$status->merge( $this->createContainer( $fullCont, $params ) );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function doSecureInternal( $fullCont, $dir, array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
2012-05-21 22:19:06 +00:00
|
|
|
if ( empty( $params['noAccess'] ) ) {
|
|
|
|
|
return $status; // nothing to do
|
|
|
|
|
}
|
2012-01-18 19:57:32 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$stat = $this->getContainerStat( $fullCont );
|
|
|
|
|
if ( is_array( $stat ) ) {
|
2012-05-11 00:41:48 +00:00
|
|
|
// Make container private to end-users...
|
2012-05-21 22:19:06 +00:00
|
|
|
$status->merge( $this->setContainerAccess(
|
2013-12-08 23:19:00 +00:00
|
|
|
$fullCont,
|
|
|
|
|
array( $this->swiftUser ), // read
|
|
|
|
|
array( $this->swiftUser ) // write
|
2012-05-21 22:19:06 +00:00
|
|
|
) );
|
2013-12-08 23:19:00 +00:00
|
|
|
} elseif ( $stat === false ) {
|
|
|
|
|
$status->fatal( 'backend-fail-usable', $params['dir'] );
|
|
|
|
|
} else {
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2014-11-17 18:05:52 +00:00
|
|
|
wfDebugLog( 'SwiftBackend', __METHOD__ . ': cannot get container stat' );
|
2012-05-21 22:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function doPublishInternal( $fullCont, $dir, array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$stat = $this->getContainerStat( $fullCont );
|
|
|
|
|
if ( is_array( $stat ) ) {
|
2012-05-21 22:19:06 +00:00
|
|
|
// Make container public to end-users...
|
2013-12-08 23:19:00 +00:00
|
|
|
$status->merge( $this->setContainerAccess(
|
|
|
|
|
$fullCont,
|
|
|
|
|
array( $this->swiftUser, '.r:*' ), // read
|
|
|
|
|
array( $this->swiftUser ) // write
|
|
|
|
|
) );
|
|
|
|
|
} elseif ( $stat === false ) {
|
|
|
|
|
$status->fatal( 'backend-fail-usable', $params['dir'] );
|
|
|
|
|
} else {
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2014-11-17 18:05:52 +00:00
|
|
|
wfDebugLog( 'SwiftBackend', __METHOD__ . ': cannot get container stat' );
|
2012-01-18 19:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 22:01:02 +00:00
|
|
|
return $status;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-14 23:11:21 +00:00
|
|
|
protected function doCleanInternal( $fullCont, $dir, array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// Only containers themselves can be removed, all else is virtual
|
|
|
|
|
if ( $dir != '' ) {
|
|
|
|
|
return $status; // nothing to do
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-14 23:11:21 +00:00
|
|
|
// (a) Check the container
|
2013-12-08 23:19:00 +00:00
|
|
|
$stat = $this->getContainerStat( $fullCont, true );
|
|
|
|
|
if ( $stat === false ) {
|
2012-01-14 23:11:21 +00:00
|
|
|
return $status; // ok, nothing to do
|
2013-12-08 23:19:00 +00:00
|
|
|
} elseif ( !is_array( $stat ) ) {
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2014-11-17 18:05:52 +00:00
|
|
|
wfDebugLog( 'SwiftBackend', __METHOD__ . ': cannot get container stat' );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2012-01-14 23:11:21 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-15 22:21:51 +00:00
|
|
|
// (b) Delete the container if empty
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( $stat['count'] == 0 ) {
|
|
|
|
|
$params['op'] = 'clean';
|
|
|
|
|
$status->merge( $this->deleteContainer( $fullCont, $params ) );
|
2012-01-14 23:11:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
protected function doGetFileStat( array $params ) {
|
2014-03-03 18:02:31 +00:00
|
|
|
$params = array( 'srcs' => array( $params['src'] ), 'concurrency' => 1 ) + $params;
|
|
|
|
|
unset( $params['src'] );
|
|
|
|
|
$stats = $this->doGetFileStatMulti( $params );
|
2013-12-08 23:19:00 +00:00
|
|
|
|
2014-01-16 00:46:01 +00:00
|
|
|
return reset( $stats );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2013-11-07 00:55:55 +00:00
|
|
|
/**
|
|
|
|
|
* Convert dates like "Tue, 03 Jan 2012 22:01:04 GMT"/"2013-05-11T07:37:27.678360Z".
|
|
|
|
|
* Dates might also come in like "2013-05-11T07:37:27.678360" from Swift listings,
|
|
|
|
|
* missing the timezone suffix (though Ceph RGW does not appear to have this bug).
|
|
|
|
|
*
|
|
|
|
|
* @param string $ts
|
|
|
|
|
* @param int $format Output format (TS_* constant)
|
|
|
|
|
* @return string
|
2013-11-23 20:28:34 +00:00
|
|
|
* @throws FileBackendError
|
2013-11-07 00:55:55 +00:00
|
|
|
*/
|
|
|
|
|
protected function convertSwiftDate( $ts, $format = TS_MW ) {
|
2013-11-23 20:28:34 +00:00
|
|
|
try {
|
|
|
|
|
$timestamp = new MWTimestamp( $ts );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-11-23 20:28:34 +00:00
|
|
|
return $timestamp->getTimestamp( $format );
|
|
|
|
|
} catch ( MWException $e ) {
|
|
|
|
|
throw new FileBackendError( $e->getMessage() );
|
|
|
|
|
}
|
2013-11-07 00:55:55 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-29 11:33:47 +00:00
|
|
|
/**
|
|
|
|
|
* Fill in any missing object metadata and save it to Swift
|
2012-04-17 17:32:43 +00:00
|
|
|
*
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param array $objHdrs Object response headers
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $path Storage path to object
|
2013-12-08 23:19:00 +00:00
|
|
|
* @return array New headers
|
2012-01-29 11:33:47 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function addMissingMetadata( array $objHdrs, $path ) {
|
|
|
|
|
if ( isset( $objHdrs['x-object-meta-sha1base36'] ) ) {
|
|
|
|
|
return $objHdrs; // nothing to do
|
2012-01-29 11:33:47 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
|
2015-01-07 22:19:06 +00:00
|
|
|
$ps = Profiler::instance()->scopedProfileIn( __METHOD__ . "-{$this->name}" );
|
2012-10-22 17:41:43 +00:00
|
|
|
trigger_error( "$path was not stored with SHA-1 metadata.", E_USER_WARNING );
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
if ( !$auth ) {
|
|
|
|
|
$objHdrs['x-object-meta-sha1base36'] = false;
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2014-01-27 17:25:29 +00:00
|
|
|
return $objHdrs; // failed
|
2013-12-08 23:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-29 11:33:47 +00:00
|
|
|
$status = Status::newGood();
|
|
|
|
|
$scopeLockS = $this->getScopedFileLocks( array( $path ), LockManager::LOCK_UW, $status );
|
|
|
|
|
if ( $status->isOK() ) {
|
2012-09-18 05:32:58 +00:00
|
|
|
$tmpFile = $this->getLocalCopy( array( 'src' => $path, 'latest' => 1 ) );
|
2012-01-29 11:33:47 +00:00
|
|
|
if ( $tmpFile ) {
|
|
|
|
|
$hash = $tmpFile->getSha1Base36();
|
|
|
|
|
if ( $hash !== false ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
$objHdrs['x-object-meta-sha1base36'] = $hash;
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $path );
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->http->run( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'POST',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $srcCont, $srcRel ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => $this->authTokenHeaders( $auth ) + $objHdrs
|
|
|
|
|
) );
|
|
|
|
|
if ( $rcode >= 200 && $rcode <= 299 ) {
|
2014-01-27 17:25:29 +00:00
|
|
|
return $objHdrs; // success
|
2013-12-08 23:19:00 +00:00
|
|
|
}
|
2012-01-29 11:33:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-11-21 02:16:15 +00:00
|
|
|
trigger_error( "Unable to set SHA-1 metadata for $path", E_USER_WARNING );
|
2013-12-08 23:19:00 +00:00
|
|
|
$objHdrs['x-object-meta-sha1base36'] = false;
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2014-01-27 17:25:29 +00:00
|
|
|
return $objHdrs; // failed
|
2012-01-29 11:33:47 +00:00
|
|
|
}
|
|
|
|
|
|
2012-09-22 18:01:58 +00:00
|
|
|
protected function doGetFileContentsMulti( array $params ) {
|
|
|
|
|
$contents = array();
|
2012-01-12 20:01:54 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
|
2012-09-22 18:01:58 +00:00
|
|
|
$ep = array_diff_key( $params, array( 'srcs' => 1 ) ); // for error logging
|
|
|
|
|
// Blindly create tmp files and stream to them, catching any exception if the file does
|
2012-10-03 20:32:16 +00:00
|
|
|
// not exist. Doing stats here is useless and will loop infinitely in addMissingMetadata().
|
2014-01-17 21:38:49 +00:00
|
|
|
$reqs = array(); // (path => op)
|
|
|
|
|
|
|
|
|
|
foreach ( $params['srcs'] as $path ) { // each path in this concurrent batch
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $path );
|
|
|
|
|
if ( $srcRel === null || !$auth ) {
|
|
|
|
|
$contents[$path] = false;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
// Create a new temporary memory file...
|
|
|
|
|
$handle = fopen( 'php://temp', 'wb' );
|
|
|
|
|
if ( $handle ) {
|
|
|
|
|
$reqs[$path] = array(
|
|
|
|
|
'method' => 'GET',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $srcCont, $srcRel ),
|
|
|
|
|
'headers' => $this->authTokenHeaders( $auth )
|
|
|
|
|
+ $this->headersFromParams( $params ),
|
|
|
|
|
'stream' => $handle,
|
|
|
|
|
);
|
2012-09-22 18:01:58 +00:00
|
|
|
}
|
2014-01-17 21:38:49 +00:00
|
|
|
$contents[$path] = false;
|
|
|
|
|
}
|
2012-09-22 18:01:58 +00:00
|
|
|
|
2014-01-17 21:38:49 +00:00
|
|
|
$opts = array( 'maxConnsPerHost' => $params['concurrency'] );
|
|
|
|
|
$reqs = $this->http->runMulti( $reqs, $opts );
|
|
|
|
|
foreach ( $reqs as $path => $op ) {
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $op['response'];
|
|
|
|
|
if ( $rcode >= 200 && $rcode <= 299 ) {
|
|
|
|
|
rewind( $op['stream'] ); // start from the beginning
|
|
|
|
|
$contents[$path] = stream_get_contents( $op['stream'] );
|
|
|
|
|
} elseif ( $rcode === 404 ) {
|
|
|
|
|
$contents[$path] = false;
|
|
|
|
|
} else {
|
|
|
|
|
$this->onError( null, __METHOD__,
|
|
|
|
|
array( 'src' => $path ) + $ep, $rerr, $rcode, $rdesc );
|
2012-09-22 18:01:58 +00:00
|
|
|
}
|
2014-01-17 21:38:49 +00:00
|
|
|
fclose( $op['stream'] ); // close open handle
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-09-22 18:01:58 +00:00
|
|
|
return $contents;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-04-05 05:56:08 +00:00
|
|
|
protected function doDirectoryExists( $fullCont, $dir, array $params ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
$prefix = ( $dir == '' ) ? null : "{$dir}/";
|
|
|
|
|
$status = $this->objectListing( $fullCont, 'names', 1, null, $prefix );
|
|
|
|
|
if ( $status->isOk() ) {
|
2014-02-26 01:40:53 +00:00
|
|
|
return ( count( $status->value ) ) > 0;
|
2012-04-05 05:56:08 +00:00
|
|
|
}
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2012-04-05 05:56:08 +00:00
|
|
|
return null; // error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see FileBackendStore::getDirectoryListInternal()
|
2013-11-23 18:23:32 +00:00
|
|
|
* @param string $fullCont
|
|
|
|
|
* @param string $dir
|
|
|
|
|
* @param array $params
|
2012-04-05 05:56:08 +00:00
|
|
|
* @return SwiftFileBackendDirList
|
|
|
|
|
*/
|
|
|
|
|
public function getDirectoryListInternal( $fullCont, $dir, array $params ) {
|
|
|
|
|
return new SwiftFileBackendDirList( $this, $fullCont, $dir, $params );
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::getFileListInternal()
|
2013-11-23 18:23:32 +00:00
|
|
|
* @param string $fullCont
|
|
|
|
|
* @param string $dir
|
|
|
|
|
* @param array $params
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return SwiftFileBackendFileList
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
public function getFileListInternal( $fullCont, $dir, array $params ) {
|
2012-04-05 05:56:08 +00:00
|
|
|
return new SwiftFileBackendFileList( $this, $fullCont, $dir, $params );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-14 01:52:19 +00:00
|
|
|
* Do not call this function outside of SwiftFileBackendFileList
|
2012-04-17 17:32:43 +00:00
|
|
|
*
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $fullCont Resolved container name
|
|
|
|
|
* @param string $dir Resolved storage directory with no trailing slash
|
2013-11-07 20:51:10 +00:00
|
|
|
* @param string|null $after Resolved container relative path to list items after
|
2013-11-23 18:23:32 +00:00
|
|
|
* @param int $limit Max number of items to list
|
2013-04-30 18:39:40 +00:00
|
|
|
* @param array $params Parameters for getDirectoryList()
|
2013-11-23 18:23:32 +00:00
|
|
|
* @return array List of container relative resolved paths of directories directly under $dir
|
2013-06-16 06:01:47 +00:00
|
|
|
* @throws FileBackendError
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
2012-04-05 05:56:08 +00:00
|
|
|
public function getDirListPageInternal( $fullCont, $dir, &$after, $limit, array $params ) {
|
2012-05-20 03:10:23 +00:00
|
|
|
$dirs = array();
|
|
|
|
|
if ( $after === INF ) {
|
|
|
|
|
return $dirs; // nothing more
|
|
|
|
|
}
|
2012-04-05 05:56:08 +00:00
|
|
|
|
2015-01-07 22:19:06 +00:00
|
|
|
$ps = Profiler::instance()->scopedProfileIn( __METHOD__ . "-{$this->name}" );
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
$prefix = ( $dir == '' ) ? null : "{$dir}/";
|
|
|
|
|
// Non-recursive: only list dirs right under $dir
|
|
|
|
|
if ( !empty( $params['topOnly'] ) ) {
|
|
|
|
|
$status = $this->objectListing( $fullCont, 'names', $limit, $after, $prefix, '/' );
|
|
|
|
|
if ( !$status->isOk() ) {
|
|
|
|
|
return $dirs; // error
|
|
|
|
|
}
|
|
|
|
|
$objects = $status->value;
|
|
|
|
|
foreach ( $objects as $object ) { // files and directories
|
|
|
|
|
if ( substr( $object, -1 ) === '/' ) {
|
|
|
|
|
$dirs[] = $object; // directories end in '/'
|
2012-04-05 05:56:08 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
}
|
|
|
|
|
} else {
|
2014-02-05 11:02:29 +00:00
|
|
|
// Recursive: list all dirs under $dir and its subdirs
|
|
|
|
|
$getParentDir = function ( $path ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
return ( strpos( $path, '/' ) !== false ) ? dirname( $path ) : false;
|
|
|
|
|
};
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
// Get directory from last item of prior page
|
|
|
|
|
$lastDir = $getParentDir( $after ); // must be first page
|
|
|
|
|
$status = $this->objectListing( $fullCont, 'names', $limit, $after, $prefix );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( !$status->isOk() ) {
|
|
|
|
|
return $dirs; // error
|
|
|
|
|
}
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$objects = $status->value;
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
foreach ( $objects as $object ) { // files
|
|
|
|
|
$objectDir = $getParentDir( $object ); // directory of object
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( $objectDir !== false && $objectDir !== $dir ) {
|
|
|
|
|
// Swift stores paths in UTF-8, using binary sorting.
|
|
|
|
|
// See function "create_container_table" in common/db.py.
|
|
|
|
|
// If a directory is not "greater" than the last one,
|
|
|
|
|
// then it was already listed by the calling iterator.
|
|
|
|
|
if ( strcmp( $objectDir, $lastDir ) > 0 ) {
|
|
|
|
|
$pDir = $objectDir;
|
|
|
|
|
do { // add dir and all its parent dirs
|
|
|
|
|
$dirs[] = "{$pDir}/";
|
|
|
|
|
$pDir = $getParentDir( $pDir );
|
|
|
|
|
} while ( $pDir !== false // sanity
|
|
|
|
|
&& strcmp( $pDir, $lastDir ) > 0 // not done already
|
|
|
|
|
&& strlen( $pDir ) > strlen( $dir ) // within $dir
|
|
|
|
|
);
|
2012-04-05 05:56:08 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
$lastDir = $objectDir;
|
2012-04-05 05:56:08 +00:00
|
|
|
}
|
|
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
}
|
|
|
|
|
// Page on the unfiltered directory listing (what is returned may be filtered)
|
|
|
|
|
if ( count( $objects ) < $limit ) {
|
|
|
|
|
$after = INF; // avoid a second RTT
|
|
|
|
|
} else {
|
|
|
|
|
$after = end( $objects ); // update last item
|
2012-04-05 05:56:08 +00:00
|
|
|
}
|
2013-04-30 18:39:40 +00:00
|
|
|
|
2012-04-05 05:56:08 +00:00
|
|
|
return $dirs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Do not call this function outside of SwiftFileBackendFileList
|
|
|
|
|
*
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $fullCont Resolved container name
|
|
|
|
|
* @param string $dir Resolved storage directory with no trailing slash
|
2013-11-07 20:51:10 +00:00
|
|
|
* @param string|null $after Resolved container relative path of file to list items after
|
2013-11-23 18:23:32 +00:00
|
|
|
* @param int $limit Max number of items to list
|
2013-04-30 18:39:40 +00:00
|
|
|
* @param array $params Parameters for getDirectoryList()
|
2013-11-23 18:23:32 +00:00
|
|
|
* @return array List of resolved container relative paths of files under $dir
|
2013-06-16 06:01:47 +00:00
|
|
|
* @throws FileBackendError
|
2012-04-05 05:56:08 +00:00
|
|
|
*/
|
|
|
|
|
public function getFileListPageInternal( $fullCont, $dir, &$after, $limit, array $params ) {
|
2013-11-07 20:51:10 +00:00
|
|
|
$files = array(); // list of (path, stat array or null) entries
|
2012-05-20 03:10:23 +00:00
|
|
|
if ( $after === INF ) {
|
|
|
|
|
return $files; // nothing more
|
|
|
|
|
}
|
2012-01-18 19:57:32 +00:00
|
|
|
|
2015-01-07 22:19:06 +00:00
|
|
|
$ps = Profiler::instance()->scopedProfileIn( __METHOD__ . "-{$this->name}" );
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
$prefix = ( $dir == '' ) ? null : "{$dir}/";
|
|
|
|
|
// $objects will contain a list of unfiltered names or CF_Object items
|
|
|
|
|
// Non-recursive: only list files right under $dir
|
|
|
|
|
if ( !empty( $params['topOnly'] ) ) {
|
|
|
|
|
if ( !empty( $params['adviseStat'] ) ) {
|
|
|
|
|
$status = $this->objectListing( $fullCont, 'info', $limit, $after, $prefix, '/' );
|
2013-11-07 20:51:10 +00:00
|
|
|
} else {
|
2013-12-08 23:19:00 +00:00
|
|
|
$status = $this->objectListing( $fullCont, 'names', $limit, $after, $prefix, '/' );
|
2012-05-20 03:10:23 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
} else {
|
2014-02-05 11:02:29 +00:00
|
|
|
// Recursive: list all files under $dir and its subdirs
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( !empty( $params['adviseStat'] ) ) {
|
|
|
|
|
$status = $this->objectListing( $fullCont, 'info', $limit, $after, $prefix );
|
2012-05-20 03:10:23 +00:00
|
|
|
} else {
|
2013-12-08 23:19:00 +00:00
|
|
|
$status = $this->objectListing( $fullCont, 'names', $limit, $after, $prefix );
|
2012-04-05 05:56:08 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
}
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
// Reformat this list into a list of (name, stat array or null) entries
|
|
|
|
|
if ( !$status->isOk() ) {
|
|
|
|
|
return $files; // error
|
|
|
|
|
}
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$objects = $status->value;
|
|
|
|
|
$files = $this->buildFileObjectListing( $params, $dir, $objects );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
// Page on the unfiltered object listing (what is returned may be filtered)
|
|
|
|
|
if ( count( $objects ) < $limit ) {
|
|
|
|
|
$after = INF; // avoid a second RTT
|
|
|
|
|
} else {
|
|
|
|
|
$after = end( $objects ); // update last item
|
|
|
|
|
$after = is_object( $after ) ? $after->name : $after;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
2013-04-30 18:39:40 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $files;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-30 18:39:40 +00:00
|
|
|
/**
|
2013-11-07 20:51:10 +00:00
|
|
|
* Build a list of file objects, filtering out any directories
|
|
|
|
|
* and extracting any stat info if provided in $objects (for CF_Objects)
|
2013-04-30 18:39:40 +00:00
|
|
|
*
|
|
|
|
|
* @param array $params Parameters for getDirectoryList()
|
|
|
|
|
* @param string $dir Resolved container directory path
|
2013-11-07 20:51:10 +00:00
|
|
|
* @param array $objects List of CF_Object items or object names
|
|
|
|
|
* @return array List of (names,stat array or null) entries
|
2013-04-30 18:39:40 +00:00
|
|
|
*/
|
2013-11-07 20:51:10 +00:00
|
|
|
private function buildFileObjectListing( array $params, $dir, array $objects ) {
|
2013-04-30 18:39:40 +00:00
|
|
|
$names = array();
|
2013-11-07 20:51:10 +00:00
|
|
|
foreach ( $objects as $object ) {
|
|
|
|
|
if ( is_object( $object ) ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( isset( $object->subdir ) || !isset( $object->name ) ) {
|
|
|
|
|
continue; // virtual directory entry; ignore
|
|
|
|
|
}
|
2013-11-07 20:51:10 +00:00
|
|
|
$stat = array(
|
|
|
|
|
// Convert various random Swift dates to TS_MW
|
2014-01-16 00:46:01 +00:00
|
|
|
'mtime' => $this->convertSwiftDate( $object->last_modified, TS_MW ),
|
|
|
|
|
'size' => (int)$object->bytes,
|
|
|
|
|
// Note: manifiest ETags are not an MD5 of the file
|
|
|
|
|
'md5' => ctype_xdigit( $object->hash ) ? $object->hash : null,
|
2013-11-07 20:51:10 +00:00
|
|
|
'latest' => false // eventually consistent
|
|
|
|
|
);
|
|
|
|
|
$names[] = array( $object->name, $stat );
|
|
|
|
|
} elseif ( substr( $object, -1 ) !== '/' ) {
|
|
|
|
|
// Omit directories, which end in '/' in listings
|
|
|
|
|
$names[] = array( $object, null );
|
|
|
|
|
}
|
2013-04-30 18:39:40 +00:00
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2013-11-07 20:51:10 +00:00
|
|
|
return $names;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Do not call this function outside of SwiftFileBackendFileList
|
|
|
|
|
*
|
|
|
|
|
* @param string $path Storage path
|
|
|
|
|
* @param array $val Stat value
|
|
|
|
|
*/
|
|
|
|
|
public function loadListingStatInternal( $path, array $val ) {
|
|
|
|
|
$this->cheapCache->set( $path, 'stat', $val );
|
2013-04-30 18:39:40 +00:00
|
|
|
}
|
|
|
|
|
|
2013-09-30 07:12:10 +00:00
|
|
|
protected function doGetFileXAttributes( array $params ) {
|
|
|
|
|
$stat = $this->getFileStat( $params );
|
|
|
|
|
if ( $stat ) {
|
|
|
|
|
if ( !isset( $stat['xattr'] ) ) {
|
|
|
|
|
// Stat entries filled by file listings don't include metadata/headers
|
|
|
|
|
$this->clearCache( array( $params['src'] ) );
|
|
|
|
|
$stat = $this->getFileStat( $params );
|
|
|
|
|
}
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-09-30 07:12:10 +00:00
|
|
|
return $stat['xattr'];
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 17:32:43 +00:00
|
|
|
protected function doGetFileSha1base36( array $params ) {
|
2012-01-12 20:01:54 +00:00
|
|
|
$stat = $this->getFileStat( $params );
|
|
|
|
|
if ( $stat ) {
|
2013-04-30 18:39:40 +00:00
|
|
|
if ( !isset( $stat['sha1'] ) ) {
|
|
|
|
|
// Stat entries filled by file listings don't include SHA1
|
|
|
|
|
$this->clearCache( array( $params['src'] ) );
|
|
|
|
|
$stat = $this->getFileStat( $params );
|
|
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $stat['sha1'];
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function doStreamFile( array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
$status->fatal( 'backend-fail-invalidpath', $params['src'] );
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
if ( !$auth || !is_array( $this->getContainerStat( $srcCont ) ) ) {
|
2012-01-12 20:01:54 +00:00
|
|
|
$status->fatal( 'backend-fail-stream', $params['src'] );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$handle = fopen( 'php://output', 'wb' );
|
|
|
|
|
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->http->run( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'GET',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $srcCont, $srcRel ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => $this->authTokenHeaders( $auth )
|
|
|
|
|
+ $this->headersFromParams( $params ),
|
2014-02-05 11:02:29 +00:00
|
|
|
'stream' => $handle,
|
2013-12-08 23:19:00 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
if ( $rcode >= 200 && $rcode <= 299 ) {
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $rcode === 404 ) {
|
2012-09-09 17:54:16 +00:00
|
|
|
$status->fatal( 'backend-fail-stream', $params['src'] );
|
2013-12-08 23:19:00 +00:00
|
|
|
} else {
|
|
|
|
|
$this->onError( $status, __METHOD__, $params, $rerr, $rcode, $rdesc );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-18 18:21:30 +00:00
|
|
|
protected function doGetLocalCopyMulti( array $params ) {
|
|
|
|
|
$tmpFiles = array();
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
|
2012-09-18 18:21:30 +00:00
|
|
|
$ep = array_diff_key( $params, array( 'srcs' => 1 ) ); // for error logging
|
|
|
|
|
// Blindly create tmp files and stream to them, catching any exception if the file does
|
|
|
|
|
// not exist. Doing a stat here is useless causes infinite loops in addMissingMetadata().
|
2014-01-17 21:38:49 +00:00
|
|
|
$reqs = array(); // (path => op)
|
2012-01-12 20:01:54 +00:00
|
|
|
|
2014-01-17 21:38:49 +00:00
|
|
|
foreach ( $params['srcs'] as $path ) { // each path in this concurrent batch
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $path );
|
|
|
|
|
if ( $srcRel === null || !$auth ) {
|
|
|
|
|
$tmpFiles[$path] = null;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
// Get source file extension
|
|
|
|
|
$ext = FileBackend::extensionFromPath( $path );
|
|
|
|
|
// Create a new temporary file...
|
|
|
|
|
$tmpFile = TempFSFile::factory( 'localcopy_', $ext );
|
|
|
|
|
if ( $tmpFile ) {
|
|
|
|
|
$handle = fopen( $tmpFile->getPath(), 'wb' );
|
|
|
|
|
if ( $handle ) {
|
|
|
|
|
$reqs[$path] = array(
|
|
|
|
|
'method' => 'GET',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $srcCont, $srcRel ),
|
|
|
|
|
'headers' => $this->authTokenHeaders( $auth )
|
|
|
|
|
+ $this->headersFromParams( $params ),
|
|
|
|
|
'stream' => $handle,
|
|
|
|
|
);
|
2013-12-08 23:19:00 +00:00
|
|
|
} else {
|
2014-01-17 21:38:49 +00:00
|
|
|
$tmpFile = null;
|
2012-01-18 19:57:32 +00:00
|
|
|
}
|
2012-01-12 22:01:02 +00:00
|
|
|
}
|
2014-01-17 21:38:49 +00:00
|
|
|
$tmpFiles[$path] = $tmpFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$opts = array( 'maxConnsPerHost' => $params['concurrency'] );
|
|
|
|
|
$reqs = $this->http->runMulti( $reqs, $opts );
|
|
|
|
|
foreach ( $reqs as $path => $op ) {
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $op['response'];
|
|
|
|
|
fclose( $op['stream'] ); // close open handle
|
2014-05-01 19:34:42 +00:00
|
|
|
if ( $rcode >= 200 && $rcode <= 299 ) {
|
2014-05-30 18:48:14 +00:00
|
|
|
$size = $tmpFiles[$path] ? $tmpFiles[$path]->getSize() : 0;
|
2014-05-01 19:34:42 +00:00
|
|
|
// Double check that the disk is not full/broken
|
2014-05-30 18:48:14 +00:00
|
|
|
if ( $size != $rhdrs['content-length'] ) {
|
2014-05-01 19:34:42 +00:00
|
|
|
$tmpFiles[$path] = null;
|
2014-05-30 18:48:14 +00:00
|
|
|
$rerr = "Got {$size}/{$rhdrs['content-length']} bytes";
|
2014-05-01 19:34:42 +00:00
|
|
|
$this->onError( null, __METHOD__,
|
|
|
|
|
array( 'src' => $path ) + $ep, $rerr, $rcode, $rdesc );
|
|
|
|
|
}
|
2014-01-17 21:38:49 +00:00
|
|
|
} elseif ( $rcode === 404 ) {
|
|
|
|
|
$tmpFiles[$path] = false;
|
|
|
|
|
} else {
|
|
|
|
|
$tmpFiles[$path] = null;
|
|
|
|
|
$this->onError( null, __METHOD__,
|
|
|
|
|
array( 'src' => $path ) + $ep, $rerr, $rcode, $rdesc );
|
|
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-09-18 18:21:30 +00:00
|
|
|
return $tmpFiles;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-11-06 20:49:40 +00:00
|
|
|
public function getFileHttpUrl( array $params ) {
|
2013-01-11 02:46:36 +00:00
|
|
|
if ( $this->swiftTempUrlKey != '' ||
|
2013-11-22 21:17:15 +00:00
|
|
|
( $this->rgwS3AccessKey != '' && $this->rgwS3SecretKey != '' )
|
|
|
|
|
) {
|
2012-11-06 20:49:40 +00:00
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
return null; // invalid path
|
|
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
if ( !$auth ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$ttl = isset( $params['ttl'] ) ? $params['ttl'] : 86400;
|
|
|
|
|
$expires = time() + $ttl;
|
|
|
|
|
|
|
|
|
|
if ( $this->swiftTempUrlKey != '' ) {
|
|
|
|
|
$url = $this->storageUrl( $auth, $srcCont, $srcRel );
|
2014-01-10 21:36:13 +00:00
|
|
|
// Swift wants the signature based on the unencoded object name
|
|
|
|
|
$contPath = parse_url( $this->storageUrl( $auth, $srcCont ), PHP_URL_PATH );
|
2013-12-08 23:19:00 +00:00
|
|
|
$signature = hash_hmac( 'sha1',
|
2014-01-10 21:36:13 +00:00
|
|
|
"GET\n{$expires}\n{$contPath}/{$srcRel}",
|
2013-12-08 23:19:00 +00:00
|
|
|
$this->swiftTempUrlKey
|
|
|
|
|
);
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return "{$url}?temp_url_sig={$signature}&temp_url_expires={$expires}";
|
|
|
|
|
} else { // give S3 API URL for rgw
|
|
|
|
|
// Path for signature starts with the bucket
|
|
|
|
|
$spath = '/' . rawurlencode( $srcCont ) . '/' .
|
|
|
|
|
str_replace( '%2F', '/', rawurlencode( $srcRel ) );
|
|
|
|
|
// Calculate the hash
|
|
|
|
|
$signature = base64_encode( hash_hmac(
|
|
|
|
|
'sha1',
|
|
|
|
|
"GET\n\n\n{$expires}\n{$spath}",
|
|
|
|
|
$this->rgwS3SecretKey,
|
|
|
|
|
true // raw
|
|
|
|
|
) );
|
|
|
|
|
// See http://s3.amazonaws.com/doc/s3-developer-guide/RESTAuthentication.html.
|
|
|
|
|
// Note: adding a newline for empty CanonicalizedAmzHeaders does not work.
|
|
|
|
|
return wfAppendQuery(
|
|
|
|
|
str_replace( '/swift/v1', '', // S3 API is the rgw default
|
|
|
|
|
$this->storageUrl( $auth ) . $spath ),
|
|
|
|
|
array(
|
|
|
|
|
'Signature' => $signature,
|
|
|
|
|
'Expires' => $expires,
|
|
|
|
|
'AWSAccessKeyId' => $this->rgwS3AccessKey )
|
|
|
|
|
);
|
2012-11-06 20:49:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-11-06 20:49:40 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-26 18:40:47 +00:00
|
|
|
protected function directoriesAreVirtual() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 22:01:02 +00:00
|
|
|
/**
|
|
|
|
|
* Get headers to send to Swift when reading a file based
|
2012-04-17 17:32:43 +00:00
|
|
|
* on a FileBackend params array, e.g. that of getLocalCopy().
|
2012-01-12 22:01:02 +00:00
|
|
|
* $params is currently only checked for a 'latest' flag.
|
2012-04-17 17:32:43 +00:00
|
|
|
*
|
2013-03-11 18:00:35 +00:00
|
|
|
* @param array $params
|
2013-11-23 18:23:32 +00:00
|
|
|
* @return array
|
2012-01-12 22:01:02 +00:00
|
|
|
*/
|
|
|
|
|
protected function headersFromParams( array $params ) {
|
|
|
|
|
$hdrs = array();
|
|
|
|
|
if ( !empty( $params['latest'] ) ) {
|
2014-01-16 00:48:59 +00:00
|
|
|
$hdrs['x-newest'] = 'true';
|
2012-01-12 22:01:02 +00:00
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2012-01-12 22:01:02 +00:00
|
|
|
return $hdrs;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-11 17:51:02 +00:00
|
|
|
protected function doExecuteOpHandlesInternal( array $fileOpHandles ) {
|
|
|
|
|
$statuses = array();
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
if ( !$auth ) {
|
|
|
|
|
foreach ( $fileOpHandles as $index => $fileOpHandle ) {
|
|
|
|
|
$statuses[$index] = Status::newFatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
}
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return $statuses;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Split the HTTP requests into stages that can be done concurrently
|
|
|
|
|
$httpReqsByStage = array(); // map of (stage => index => HTTP request)
|
2012-04-11 17:51:02 +00:00
|
|
|
foreach ( $fileOpHandles as $index => $fileOpHandle ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
$reqs = $fileOpHandle->httpOp;
|
|
|
|
|
// Convert the 'url' parameter to an actual URL using $auth
|
|
|
|
|
foreach ( $reqs as $stage => &$req ) {
|
|
|
|
|
list( $container, $relPath ) = $req['url'];
|
|
|
|
|
$req['url'] = $this->storageUrl( $auth, $container, $relPath );
|
|
|
|
|
$req['headers'] = isset( $req['headers'] ) ? $req['headers'] : array();
|
|
|
|
|
$req['headers'] = $this->authTokenHeaders( $auth ) + $req['headers'];
|
|
|
|
|
$httpReqsByStage[$stage][$index] = $req;
|
|
|
|
|
}
|
|
|
|
|
$statuses[$index] = Status::newGood();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Run all requests for the first stage, then the next, and so on
|
2014-02-05 10:20:17 +00:00
|
|
|
$reqCount = count( $httpReqsByStage );
|
|
|
|
|
for ( $stage = 0; $stage < $reqCount; ++$stage ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
$httpReqs = $this->http->runMulti( $httpReqsByStage[$stage] );
|
|
|
|
|
foreach ( $httpReqs as $index => $httpReq ) {
|
|
|
|
|
// Run the callback for each request of this operation
|
|
|
|
|
$callback = $fileOpHandles[$index]->callback;
|
|
|
|
|
call_user_func_array( $callback, array( $httpReq, $statuses[$index] ) );
|
|
|
|
|
// On failure, abort all remaining requests for this operation
|
|
|
|
|
// (e.g. abort the DELETE request if the COPY request fails for a move)
|
|
|
|
|
if ( !$statuses[$index]->isOK() ) {
|
|
|
|
|
$stages = count( $fileOpHandles[$index]->httpOp );
|
|
|
|
|
for ( $s = ( $stage + 1 ); $s < $stages; ++$s ) {
|
|
|
|
|
unset( $httpReqsByStage[$s][$index] );
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-04-11 17:51:02 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $statuses;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
/**
|
2012-05-21 22:19:06 +00:00
|
|
|
* Set read/write permissions for a Swift container.
|
|
|
|
|
*
|
2013-11-23 18:23:32 +00:00
|
|
|
* @see http://swift.openstack.org/misc.html#acls
|
|
|
|
|
*
|
|
|
|
|
* In general, we don't allow listings to end-users. It's not useful, isn't well-defined
|
|
|
|
|
* (lists are truncated to 10000 item with no way to page), and is just a performance risk.
|
|
|
|
|
*
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param string $container Resolved Swift container
|
2013-11-23 18:23:32 +00:00
|
|
|
* @param array $readGrps List of the possible criteria for a request to have
|
2012-05-21 22:19:06 +00:00
|
|
|
* access to read a container. Each item is one of the following formats:
|
2013-01-18 20:30:56 +00:00
|
|
|
* - account:user : Grants access if the request is by the given user
|
|
|
|
|
* - ".r:<regex>" : Grants access if the request is from a referrer host that
|
|
|
|
|
* matches the expression and the request is not for a listing.
|
|
|
|
|
* Setting this to '*' effectively makes a container public.
|
|
|
|
|
* -".rlistings:<regex>" : Grants access if the request is from a referrer host that
|
2013-03-31 08:53:22 +00:00
|
|
|
* matches the expression and the request is for a listing.
|
2013-11-23 18:23:32 +00:00
|
|
|
* @param array $writeGrps A list of the possible criteria for a request to have
|
2012-07-11 05:07:10 +00:00
|
|
|
* access to write to a container. Each item is of the following format:
|
2012-07-18 19:08:30 +00:00
|
|
|
* - account:user : Grants access if the request is by the given user
|
2012-01-18 19:57:32 +00:00
|
|
|
* @return Status
|
|
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function setContainerAccess( $container, array $readGrps, array $writeGrps ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
$auth = $this->getAuthentication();
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( !$auth ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
2012-01-18 19:57:32 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->http->run( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'POST',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $container ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => $this->authTokenHeaders( $auth ) + array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'x-container-read' => implode( ',', $readGrps ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'x-container-write' => implode( ',', $writeGrps )
|
|
|
|
|
)
|
|
|
|
|
) );
|
2012-01-18 19:57:32 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( $rcode != 204 && $rcode !== 202 ) {
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2014-11-17 18:05:52 +00:00
|
|
|
wfDebugLog( 'SwiftBackend', __METHOD__ . ': unexpected rcode value (' . $rcode . ')' );
|
2013-12-08 23:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
2012-01-18 19:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
2012-05-11 00:41:48 +00:00
|
|
|
/**
|
2013-12-08 23:19:00 +00:00
|
|
|
* Get a Swift container stat array, possibly from process cache.
|
|
|
|
|
* Use $reCache if the file count or byte count is needed.
|
2012-05-11 00:41:48 +00:00
|
|
|
*
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param string $container Container name
|
|
|
|
|
* @param bool $bypassCache Bypass all caches and load from Swift
|
|
|
|
|
* @return array|bool|null False on 404, null on failure
|
2012-05-11 00:41:48 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function getContainerStat( $container, $bypassCache = false ) {
|
2015-01-07 22:19:06 +00:00
|
|
|
$ps = Profiler::instance()->scopedProfileIn( __METHOD__ . "-{$this->name}" );
|
2014-02-18 19:32:51 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( $bypassCache ) { // purge cache
|
|
|
|
|
$this->containerStatCache->clear( $container );
|
|
|
|
|
} elseif ( !$this->containerStatCache->has( $container, 'stat' ) ) {
|
|
|
|
|
$this->primeContainerCache( array( $container ) ); // check persistent cache
|
|
|
|
|
}
|
|
|
|
|
if ( !$this->containerStatCache->has( $container, 'stat' ) ) {
|
|
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
if ( !$auth ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->http->run( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'HEAD',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $container ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => $this->authTokenHeaders( $auth )
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
if ( $rcode === 204 ) {
|
|
|
|
|
$stat = array(
|
|
|
|
|
'count' => $rhdrs['x-container-object-count'],
|
|
|
|
|
'bytes' => $rhdrs['x-container-bytes-used']
|
|
|
|
|
);
|
|
|
|
|
if ( $bypassCache ) {
|
|
|
|
|
return $stat;
|
|
|
|
|
} else {
|
|
|
|
|
$this->containerStatCache->set( $container, 'stat', $stat ); // cache it
|
2014-02-16 04:25:08 +00:00
|
|
|
$this->setContainerCache( $container, $stat ); // update persistent cache
|
2012-05-11 00:41:48 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
} elseif ( $rcode === 404 ) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
$this->onError( null, __METHOD__,
|
|
|
|
|
array( 'cont' => $container ), $rerr, $rcode, $rdesc );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return null;
|
2012-05-11 00:41:48 +00:00
|
|
|
}
|
|
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
return $this->containerStatCache->get( $container, 'stat' );
|
2012-05-11 00:41:48 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2013-12-08 23:19:00 +00:00
|
|
|
* Create a Swift container
|
2012-01-12 20:01:54 +00:00
|
|
|
*
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param string $container Container name
|
|
|
|
|
* @param array $params
|
|
|
|
|
* @return Status
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function createContainer( $container, array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
|
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
if ( !$auth ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return $status;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
// @see SwiftFileBackend::setContainerAccess()
|
|
|
|
|
if ( empty( $params['noAccess'] ) ) {
|
|
|
|
|
$readGrps = array( '.r:*', $this->swiftUser ); // public
|
|
|
|
|
} else {
|
|
|
|
|
$readGrps = array( $this->swiftUser ); // private
|
|
|
|
|
}
|
|
|
|
|
$writeGrps = array( $this->swiftUser ); // sanity
|
|
|
|
|
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->http->run( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'PUT',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $container ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => $this->authTokenHeaders( $auth ) + array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'x-container-read' => implode( ',', $readGrps ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'x-container-write' => implode( ',', $writeGrps )
|
|
|
|
|
)
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
if ( $rcode === 201 ) { // new
|
|
|
|
|
// good
|
|
|
|
|
} elseif ( $rcode === 202 ) { // already there
|
|
|
|
|
// this shouldn't really happen, but is OK
|
|
|
|
|
} else {
|
|
|
|
|
$this->onError( $status, __METHOD__, $params, $rerr, $rcode, $rdesc );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return $status;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-08-31 17:22:02 +00:00
|
|
|
/**
|
2013-12-08 23:19:00 +00:00
|
|
|
* Delete a Swift container
|
|
|
|
|
*
|
|
|
|
|
* @param string $container Container name
|
|
|
|
|
* @param array $params
|
|
|
|
|
* @return Status
|
2012-08-31 17:22:02 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function deleteContainer( $container, array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
|
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
if ( !$auth ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return $status;
|
2012-08-31 17:22:02 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->http->run( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'DELETE',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $container ),
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => $this->authTokenHeaders( $auth )
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
if ( $rcode >= 200 && $rcode <= 299 ) { // deleted
|
|
|
|
|
$this->containerStatCache->clear( $container ); // purge
|
|
|
|
|
} elseif ( $rcode === 404 ) { // not there
|
|
|
|
|
// this shouldn't really happen, but is OK
|
|
|
|
|
} elseif ( $rcode === 409 ) { // not empty
|
|
|
|
|
$this->onError( $status, __METHOD__, $params, $rerr, $rcode, $rdesc ); // race?
|
|
|
|
|
} else {
|
|
|
|
|
$this->onError( $status, __METHOD__, $params, $rerr, $rcode, $rdesc );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
2012-08-31 17:22:02 +00:00
|
|
|
}
|
|
|
|
|
|
2012-08-16 22:46:19 +00:00
|
|
|
/**
|
2013-12-08 23:19:00 +00:00
|
|
|
* Get a list of objects under a container.
|
|
|
|
|
* Either just the names or a list of stdClass objects with details can be returned.
|
2012-08-16 22:46:19 +00:00
|
|
|
*
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param string $fullCont
|
|
|
|
|
* @param string $type ('info' for a list of object detail maps, 'names' for names only)
|
2014-04-19 15:19:17 +00:00
|
|
|
* @param int $limit
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param string|null $after
|
|
|
|
|
* @param string|null $prefix
|
|
|
|
|
* @param string|null $delim
|
|
|
|
|
* @return Status With the list as value
|
2012-08-16 22:46:19 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
private function objectListing(
|
|
|
|
|
$fullCont, $type, $limit, $after = null, $prefix = null, $delim = null
|
|
|
|
|
) {
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
|
|
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
if ( !$auth ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$query = array( 'limit' => $limit );
|
|
|
|
|
if ( $type === 'info' ) {
|
|
|
|
|
$query['format'] = 'json';
|
|
|
|
|
}
|
|
|
|
|
if ( $after !== null ) {
|
|
|
|
|
$query['marker'] = $after;
|
|
|
|
|
}
|
|
|
|
|
if ( $prefix !== null ) {
|
|
|
|
|
$query['prefix'] = $prefix;
|
|
|
|
|
}
|
|
|
|
|
if ( $delim !== null ) {
|
|
|
|
|
$query['delimiter'] = $delim;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->http->run( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'GET',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $fullCont ),
|
|
|
|
|
'query' => $query,
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => $this->authTokenHeaders( $auth )
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
$params = array( 'cont' => $fullCont, 'prefix' => $prefix, 'delim' => $delim );
|
|
|
|
|
if ( $rcode === 200 ) { // good
|
|
|
|
|
if ( $type === 'info' ) {
|
|
|
|
|
$status->value = FormatJson::decode( trim( $rbody ) );
|
|
|
|
|
} else {
|
|
|
|
|
$status->value = explode( "\n", trim( $rbody ) );
|
|
|
|
|
}
|
|
|
|
|
} elseif ( $rcode === 204 ) {
|
|
|
|
|
$status->value = array(); // empty container
|
|
|
|
|
} elseif ( $rcode === 404 ) {
|
|
|
|
|
$status->value = array(); // no container
|
|
|
|
|
} else {
|
|
|
|
|
$this->onError( $status, __METHOD__, $params, $rerr, $rcode, $rdesc );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function doPrimeContainerCache( array $containerInfo ) {
|
|
|
|
|
foreach ( $containerInfo as $container => $info ) {
|
|
|
|
|
$this->containerStatCache->set( $container, 'stat', $info );
|
|
|
|
|
}
|
2012-08-16 22:46:19 +00:00
|
|
|
}
|
|
|
|
|
|
2014-01-16 00:46:01 +00:00
|
|
|
protected function doGetFileStatMulti( array $params ) {
|
|
|
|
|
$stats = array();
|
|
|
|
|
|
|
|
|
|
$auth = $this->getAuthentication();
|
|
|
|
|
|
|
|
|
|
$reqs = array();
|
|
|
|
|
foreach ( $params['srcs'] as $path ) {
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $path );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
$stats[$path] = false;
|
|
|
|
|
continue; // invalid storage path
|
|
|
|
|
} elseif ( !$auth ) {
|
|
|
|
|
$stats[$path] = null;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// (a) Check the container
|
2014-02-26 01:40:53 +00:00
|
|
|
$cstat = $this->getContainerStat( $srcCont );
|
2014-01-16 00:46:01 +00:00
|
|
|
if ( $cstat === false ) {
|
|
|
|
|
$stats[$path] = false;
|
|
|
|
|
continue; // ok, nothing to do
|
|
|
|
|
} elseif ( !is_array( $cstat ) ) {
|
|
|
|
|
$stats[$path] = null;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$reqs[$path] = array(
|
|
|
|
|
'method' => 'HEAD',
|
|
|
|
|
'url' => $this->storageUrl( $auth, $srcCont, $srcRel ),
|
|
|
|
|
'headers' => $this->authTokenHeaders( $auth ) + $this->headersFromParams( $params )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$opts = array( 'maxConnsPerHost' => $params['concurrency'] );
|
|
|
|
|
$reqs = $this->http->runMulti( $reqs, $opts );
|
|
|
|
|
|
|
|
|
|
foreach ( $params['srcs'] as $path ) {
|
|
|
|
|
if ( array_key_exists( $path, $stats ) ) {
|
|
|
|
|
continue; // some sort of failure above
|
|
|
|
|
}
|
|
|
|
|
// (b) Check the file
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $reqs[$path]['response'];
|
|
|
|
|
if ( $rcode === 200 || $rcode === 204 ) {
|
|
|
|
|
// Update the object if it is missing some headers
|
|
|
|
|
$rhdrs = $this->addMissingMetadata( $rhdrs, $path );
|
|
|
|
|
// Fetch all of the custom metadata headers
|
|
|
|
|
$metadata = array();
|
|
|
|
|
foreach ( $rhdrs as $name => $value ) {
|
|
|
|
|
if ( strpos( $name, 'x-object-meta-' ) === 0 ) {
|
|
|
|
|
$metadata[substr( $name, strlen( 'x-object-meta-' ) )] = $value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Fetch all of the custom raw HTTP headers
|
|
|
|
|
$headers = $this->sanitizeHdrs( array( 'headers' => $rhdrs ) );
|
|
|
|
|
$stat = array(
|
|
|
|
|
// Convert various random Swift dates to TS_MW
|
|
|
|
|
'mtime' => $this->convertSwiftDate( $rhdrs['last-modified'], TS_MW ),
|
|
|
|
|
// Empty objects actually return no content-length header in Ceph
|
|
|
|
|
'size' => isset( $rhdrs['content-length'] ) ? (int)$rhdrs['content-length'] : 0,
|
2014-07-21 12:47:42 +00:00
|
|
|
'sha1' => $rhdrs['x-object-meta-sha1base36'],
|
2014-01-16 00:46:01 +00:00
|
|
|
// Note: manifiest ETags are not an MD5 of the file
|
|
|
|
|
'md5' => ctype_xdigit( $rhdrs['etag'] ) ? $rhdrs['etag'] : null,
|
|
|
|
|
'xattr' => array( 'metadata' => $metadata, 'headers' => $headers )
|
|
|
|
|
);
|
2014-03-18 06:47:53 +00:00
|
|
|
if ( $this->isRGW ) {
|
|
|
|
|
$stat['latest'] = true; // strong consistency
|
|
|
|
|
}
|
2014-01-16 00:46:01 +00:00
|
|
|
} elseif ( $rcode === 404 ) {
|
|
|
|
|
$stat = false;
|
|
|
|
|
} else {
|
|
|
|
|
$stat = null;
|
|
|
|
|
$this->onError( null, __METHOD__, $params, $rerr, $rcode, $rdesc );
|
|
|
|
|
}
|
|
|
|
|
$stats[$path] = $stat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $stats;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-14 23:11:21 +00:00
|
|
|
/**
|
2013-12-08 23:19:00 +00:00
|
|
|
* @return array|null Credential map
|
2012-01-14 23:11:21 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function getAuthentication() {
|
|
|
|
|
if ( $this->authErrorTimestamp !== null ) {
|
|
|
|
|
if ( ( time() - $this->authErrorTimestamp ) < 60 ) {
|
|
|
|
|
return null; // failed last attempt; don't bother
|
|
|
|
|
} else { // actually retry this time
|
|
|
|
|
$this->authErrorTimestamp = null;
|
2012-04-23 20:27:58 +00:00
|
|
|
}
|
2012-01-14 23:11:21 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
// Session keys expire after a while, so we renew them periodically
|
|
|
|
|
$reAuth = ( ( time() - $this->authSessionTimestamp ) > $this->authTTL );
|
|
|
|
|
// Authenticate with proxy and get a session key...
|
|
|
|
|
if ( !$this->authCreds || $reAuth ) {
|
|
|
|
|
$this->authSessionTimestamp = 0;
|
|
|
|
|
$cacheKey = $this->getCredsCacheKey( $this->swiftUser );
|
|
|
|
|
$creds = $this->srvCache->get( $cacheKey ); // credentials
|
|
|
|
|
// Try to use the credential cache
|
|
|
|
|
if ( isset( $creds['auth_token'] ) && isset( $creds['storage_url'] ) ) {
|
|
|
|
|
$this->authCreds = $creds;
|
|
|
|
|
// Skew the timestamp for worst case to avoid using stale credentials
|
|
|
|
|
$this->authSessionTimestamp = time() - ceil( $this->authTTL / 2 );
|
|
|
|
|
} else { // cache miss
|
|
|
|
|
list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->http->run( array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'method' => 'GET',
|
|
|
|
|
'url' => "{$this->swiftAuthUrl}/v1.0",
|
2013-12-08 23:19:00 +00:00
|
|
|
'headers' => array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'x-auth-user' => $this->swiftUser,
|
|
|
|
|
'x-auth-key' => $this->swiftKey
|
|
|
|
|
)
|
2013-12-08 23:19:00 +00:00
|
|
|
) );
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( $rcode >= 200 && $rcode <= 299 ) { // OK
|
|
|
|
|
$this->authCreds = array(
|
2014-02-05 11:02:29 +00:00
|
|
|
'auth_token' => $rhdrs['x-auth-token'],
|
2013-12-08 23:19:00 +00:00
|
|
|
'storage_url' => $rhdrs['x-storage-url']
|
|
|
|
|
);
|
2014-02-12 06:13:17 +00:00
|
|
|
$this->srvCache->set( $cacheKey, $this->authCreds, ceil( $this->authTTL / 2 ) );
|
2013-12-08 23:19:00 +00:00
|
|
|
$this->authSessionTimestamp = time();
|
|
|
|
|
} elseif ( $rcode === 401 ) {
|
|
|
|
|
$this->onError( null, __METHOD__, array(), "Authentication failed.", $rcode );
|
|
|
|
|
$this->authErrorTimestamp = time();
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return null;
|
|
|
|
|
} else {
|
|
|
|
|
$this->onError( null, __METHOD__, array(), "HTTP return code: $rcode", $rcode );
|
|
|
|
|
$this->authErrorTimestamp = time();
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-18 06:47:53 +00:00
|
|
|
// Ceph RGW does not use <account> in URLs (OpenStack Swift uses "/v1/<account>")
|
|
|
|
|
if ( substr( $this->authCreds['storage_url'], -3 ) === '/v1' ) {
|
|
|
|
|
$this->isRGW = true; // take advantage of strong consistency
|
|
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
}
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return $this->authCreds;
|
2012-01-14 23:11:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param array $creds From getAuthentication()
|
|
|
|
|
* @param string $container
|
|
|
|
|
* @param string $object
|
|
|
|
|
* @return array
|
2012-01-14 23:11:21 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function storageUrl( array $creds, $container = null, $object = null ) {
|
|
|
|
|
$parts = array( $creds['storage_url'] );
|
|
|
|
|
if ( strlen( $container ) ) {
|
|
|
|
|
$parts[] = rawurlencode( $container );
|
|
|
|
|
}
|
|
|
|
|
if ( strlen( $object ) ) {
|
|
|
|
|
$parts[] = str_replace( "%2F", "/", rawurlencode( $object ) );
|
|
|
|
|
}
|
2014-02-05 11:02:29 +00:00
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
return implode( '/', $parts );
|
2012-01-14 23:11:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param array $creds From getAuthentication()
|
|
|
|
|
* @return array
|
2012-01-14 23:11:21 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
protected function authTokenHeaders( array $creds ) {
|
|
|
|
|
return array( 'x-auth-token' => $creds['auth_token'] );
|
2012-01-14 23:11:21 +00:00
|
|
|
}
|
|
|
|
|
|
2013-12-08 23:19:00 +00:00
|
|
|
/**
|
|
|
|
|
* Get the cache key for a container
|
|
|
|
|
*
|
|
|
|
|
* @param string $username
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
private function getCredsCacheKey( $username ) {
|
2014-02-12 06:38:06 +00:00
|
|
|
return 'swiftcredentials:' . md5( $username . ':' . $this->swiftAuthUrl );
|
2012-04-23 20:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2012-04-11 17:51:02 +00:00
|
|
|
* Log an unexpected exception for this backend.
|
|
|
|
|
* This also sets the Status object to have a fatal error.
|
2012-04-17 17:32:43 +00:00
|
|
|
*
|
2014-01-26 18:47:42 +00:00
|
|
|
* @param Status|null $status
|
2013-06-13 18:18:52 +00:00
|
|
|
* @param string $func
|
2013-03-11 18:00:35 +00:00
|
|
|
* @param array $params
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param string $err Error string
|
2014-04-19 15:19:17 +00:00
|
|
|
* @param int $code HTTP status
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param string $desc HTTP status description
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
public function onError( $status, $func, array $params, $err = '', $code = 0, $desc = '' ) {
|
2012-04-11 17:51:02 +00:00
|
|
|
if ( $status instanceof Status ) {
|
2013-12-08 23:19:00 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-04-11 17:51:02 +00:00
|
|
|
}
|
2013-12-08 23:19:00 +00:00
|
|
|
if ( $code == 401 ) { // possibly a stale token
|
|
|
|
|
$this->srvCache->delete( $this->getCredsCacheKey( $this->swiftUser ) );
|
2012-08-27 19:36:47 +00:00
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
wfDebugLog( 'SwiftBackend',
|
2013-12-08 23:19:00 +00:00
|
|
|
"HTTP $code ($desc) in '{$func}' (given '" . FormatJson::encode( $params ) . "')" .
|
|
|
|
|
( $err ? ": $err" : "" )
|
2012-01-12 20:01:54 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-11 17:51:02 +00:00
|
|
|
/**
|
|
|
|
|
* @see FileBackendStoreOpHandle
|
|
|
|
|
*/
|
|
|
|
|
class SwiftFileOpHandle extends FileBackendStoreOpHandle {
|
2013-12-08 23:19:00 +00:00
|
|
|
/** @var array List of Requests for MultiHttpClient */
|
|
|
|
|
public $httpOp;
|
|
|
|
|
/** @var Closure */
|
|
|
|
|
public $callback;
|
2012-04-11 17:51:02 +00:00
|
|
|
|
2013-06-13 18:18:52 +00:00
|
|
|
/**
|
|
|
|
|
* @param SwiftFileBackend $backend
|
2013-12-08 23:19:00 +00:00
|
|
|
* @param Closure $callback Function that takes (HTTP request array, status)
|
|
|
|
|
* @param array $httpOp MultiHttpClient op
|
2013-06-13 18:18:52 +00:00
|
|
|
*/
|
2013-12-08 23:19:00 +00:00
|
|
|
public function __construct( SwiftFileBackend $backend, Closure $callback, array $httpOp ) {
|
2012-04-11 17:51:02 +00:00
|
|
|
$this->backend = $backend;
|
2013-12-08 23:19:00 +00:00
|
|
|
$this->callback = $callback;
|
|
|
|
|
$this->httpOp = $httpOp;
|
2012-04-11 17:51:02 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2012-04-05 05:56:08 +00:00
|
|
|
* SwiftFileBackend helper class to page through listings.
|
2012-01-12 20:01:54 +00:00
|
|
|
* Swift also has a listing limit of 10,000 objects for sanity.
|
2012-01-14 03:16:18 +00:00
|
|
|
* Do not use this class from places outside SwiftFileBackend.
|
2012-01-12 20:01:54 +00:00
|
|
|
*
|
|
|
|
|
* @ingroup FileBackend
|
|
|
|
|
*/
|
2012-04-05 05:56:08 +00:00
|
|
|
abstract class SwiftFileBackendList implements Iterator {
|
2013-11-23 18:23:32 +00:00
|
|
|
/** @var array List of path or (path,stat array) entries */
|
2012-01-12 20:01:54 +00:00
|
|
|
protected $bufferIter = array();
|
2013-11-23 18:23:32 +00:00
|
|
|
|
|
|
|
|
/** @var string List items *after* this path */
|
|
|
|
|
protected $bufferAfter = null;
|
|
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
|
protected $pos = 0;
|
|
|
|
|
|
|
|
|
|
/** @var array */
|
2012-04-05 05:56:08 +00:00
|
|
|
protected $params = array();
|
2012-01-12 20:01:54 +00:00
|
|
|
|
|
|
|
|
/** @var SwiftFileBackend */
|
2012-04-17 17:32:43 +00:00
|
|
|
protected $backend;
|
2013-11-23 18:23:32 +00:00
|
|
|
|
|
|
|
|
/** @var string Container name */
|
|
|
|
|
protected $container;
|
|
|
|
|
|
|
|
|
|
/** @var string Storage directory */
|
|
|
|
|
protected $dir;
|
|
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
|
protected $suffixStart;
|
2012-01-12 20:01:54 +00:00
|
|
|
|
2012-07-23 15:07:55 +00:00
|
|
|
const PAGE_SIZE = 9000; // file listing buffer size
|
2012-01-12 20:01:54 +00:00
|
|
|
|
|
|
|
|
/**
|
2013-06-13 18:18:52 +00:00
|
|
|
* @param SwiftFileBackend $backend
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $fullCont Resolved container name
|
|
|
|
|
* @param string $dir Resolved directory relative to container
|
2013-03-11 18:00:35 +00:00
|
|
|
* @param array $params
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
2012-04-05 05:56:08 +00:00
|
|
|
public function __construct( SwiftFileBackend $backend, $fullCont, $dir, array $params ) {
|
2012-01-12 22:01:02 +00:00
|
|
|
$this->backend = $backend;
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->container = $fullCont;
|
|
|
|
|
$this->dir = $dir;
|
2012-01-12 22:01:02 +00:00
|
|
|
if ( substr( $this->dir, -1 ) === '/' ) {
|
|
|
|
|
$this->dir = substr( $this->dir, 0, -1 ); // remove trailing slash
|
|
|
|
|
}
|
2012-01-22 00:06:18 +00:00
|
|
|
if ( $this->dir == '' ) { // whole container
|
|
|
|
|
$this->suffixStart = 0;
|
|
|
|
|
} else { // dir within container
|
2012-01-22 00:33:20 +00:00
|
|
|
$this->suffixStart = strlen( $this->dir ) + 1; // size of "path/to/dir/"
|
2012-01-22 00:06:18 +00:00
|
|
|
}
|
2012-04-05 05:56:08 +00:00
|
|
|
$this->params = $params;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-03 19:14:50 +00:00
|
|
|
/**
|
|
|
|
|
* @see Iterator::key()
|
2013-11-23 18:23:32 +00:00
|
|
|
* @return int
|
2012-03-03 19:14:50 +00:00
|
|
|
*/
|
2012-01-12 20:01:54 +00:00
|
|
|
public function key() {
|
|
|
|
|
return $this->pos;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-03 19:14:50 +00:00
|
|
|
/**
|
|
|
|
|
* @see Iterator::next()
|
|
|
|
|
*/
|
2012-01-12 20:01:54 +00:00
|
|
|
public function next() {
|
|
|
|
|
// Advance to the next file in the page
|
|
|
|
|
next( $this->bufferIter );
|
|
|
|
|
++$this->pos;
|
|
|
|
|
// Check if there are no files left in this page and
|
|
|
|
|
// advance to the next page if this page was not empty.
|
|
|
|
|
if ( !$this->valid() && count( $this->bufferIter ) ) {
|
2012-04-05 05:56:08 +00:00
|
|
|
$this->bufferIter = $this->pageFromList(
|
|
|
|
|
$this->container, $this->dir, $this->bufferAfter, self::PAGE_SIZE, $this->params
|
|
|
|
|
); // updates $this->bufferAfter
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-03 19:14:50 +00:00
|
|
|
/**
|
|
|
|
|
* @see Iterator::rewind()
|
|
|
|
|
*/
|
2012-01-12 20:01:54 +00:00
|
|
|
public function rewind() {
|
|
|
|
|
$this->pos = 0;
|
|
|
|
|
$this->bufferAfter = null;
|
2012-04-05 05:56:08 +00:00
|
|
|
$this->bufferIter = $this->pageFromList(
|
|
|
|
|
$this->container, $this->dir, $this->bufferAfter, self::PAGE_SIZE, $this->params
|
|
|
|
|
); // updates $this->bufferAfter
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-03 19:14:50 +00:00
|
|
|
/**
|
|
|
|
|
* @see Iterator::valid()
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
2012-01-12 20:01:54 +00:00
|
|
|
public function valid() {
|
2012-04-25 20:47:09 +00:00
|
|
|
if ( $this->bufferIter === null ) {
|
|
|
|
|
return false; // some failure?
|
|
|
|
|
} else {
|
|
|
|
|
return ( current( $this->bufferIter ) !== false ); // no paths can have this value
|
|
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
2012-04-05 05:56:08 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the given list portion (page)
|
|
|
|
|
*
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $container Resolved container name
|
|
|
|
|
* @param string $dir Resolved path relative to container
|
2014-07-24 17:43:03 +00:00
|
|
|
* @param string $after
|
2013-11-23 18:23:32 +00:00
|
|
|
* @param int $limit
|
2013-03-11 18:00:35 +00:00
|
|
|
* @param array $params
|
2013-11-23 18:23:32 +00:00
|
|
|
* @return Traversable|array
|
2012-04-05 05:56:08 +00:00
|
|
|
*/
|
|
|
|
|
abstract protected function pageFromList( $container, $dir, &$after, $limit, array $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Iterator for listing directories
|
|
|
|
|
*/
|
|
|
|
|
class SwiftFileBackendDirList extends SwiftFileBackendList {
|
|
|
|
|
/**
|
|
|
|
|
* @see Iterator::current()
|
|
|
|
|
* @return string|bool String (relative path) or false
|
|
|
|
|
*/
|
|
|
|
|
public function current() {
|
|
|
|
|
return substr( current( $this->bufferIter ), $this->suffixStart, -1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function pageFromList( $container, $dir, &$after, $limit, array $params ) {
|
|
|
|
|
return $this->backend->getDirListPageInternal( $container, $dir, $after, $limit, $params );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Iterator for listing regular files
|
|
|
|
|
*/
|
|
|
|
|
class SwiftFileBackendFileList extends SwiftFileBackendList {
|
|
|
|
|
/**
|
|
|
|
|
* @see Iterator::current()
|
|
|
|
|
* @return string|bool String (relative path) or false
|
|
|
|
|
*/
|
|
|
|
|
public function current() {
|
2013-11-07 20:51:10 +00:00
|
|
|
list( $path, $stat ) = current( $this->bufferIter );
|
|
|
|
|
$relPath = substr( $path, $this->suffixStart );
|
|
|
|
|
if ( is_array( $stat ) ) {
|
|
|
|
|
$storageDir = rtrim( $this->params['dir'], '/' );
|
2013-11-09 05:24:24 +00:00
|
|
|
$this->backend->loadListingStatInternal( "$storageDir/$relPath", $stat );
|
2013-11-07 20:51:10 +00:00
|
|
|
}
|
2013-11-22 21:17:15 +00:00
|
|
|
|
2013-11-07 20:51:10 +00:00
|
|
|
return $relPath;
|
2012-04-05 05:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function pageFromList( $container, $dir, &$after, $limit, array $params ) {
|
|
|
|
|
return $this->backend->getFileListPageInternal( $container, $dir, $after, $limit, $params );
|
|
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|