2012-01-12 20:01:54 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup FileBackend
|
|
|
|
|
* @author Russ Nelson
|
|
|
|
|
* @author Aaron Schulz
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2012-03-03 19:14:50 +00:00
|
|
|
* @brief Class for an OpenStack Swift based file backend.
|
2012-01-12 20:01:54 +00:00
|
|
|
*
|
2012-01-18 19:57:32 +00:00
|
|
|
* This requires the SwiftCloudFiles MediaWiki extension, which includes
|
|
|
|
|
* the php-cloudfiles library (https://github.com/rackspace/php-cloudfiles).
|
|
|
|
|
* php-cloudfiles requires the curl, fileinfo, and mb_string PHP extensions.
|
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 {
|
2012-01-12 20:01:54 +00:00
|
|
|
/** @var CF_Authentication */
|
2012-01-14 23:11:21 +00:00
|
|
|
protected $auth; // Swift authentication handler
|
2012-01-18 19:57:32 +00:00
|
|
|
protected $authTTL; // integer seconds
|
|
|
|
|
protected $swiftAnonUser; // string; username to handle unauthenticated requests
|
2012-02-08 20:34:24 +00:00
|
|
|
protected $maxContCacheSize = 100; // integer; max containers with entries
|
2012-01-14 23:11:21 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/** @var CF_Connection */
|
2012-01-14 23:11:21 +00:00
|
|
|
protected $conn; // Swift connection handle
|
2012-01-12 20:01:54 +00:00
|
|
|
protected $connStarted = 0; // integer UNIX timestamp
|
2012-01-14 23:11:21 +00:00
|
|
|
protected $connContainers = array(); // container object cache
|
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:
|
|
|
|
|
* swiftAuthUrl : Swift authentication server URL
|
2012-01-18 19:57:32 +00:00
|
|
|
* swiftUser : Swift user used by MediaWiki (account:username)
|
2012-01-12 20:01:54 +00:00
|
|
|
* swiftKey : Swift authentication key for the above user
|
2012-01-18 19:57:32 +00:00
|
|
|
* swiftAuthTTL : Swift authentication TTL (seconds)
|
|
|
|
|
* swiftAnonUser : Swift user used for end-user requests (account:username)
|
2012-01-31 21:52:58 +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)
|
2012-04-17 17:32:43 +00:00
|
|
|
* 'repeat' : hash subdirectories are prefixed with all the
|
2012-01-31 21:52:58 +00:00
|
|
|
* parent hash directory names (e.g. "a/ab/abc")
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
public function __construct( array $config ) {
|
|
|
|
|
parent::__construct( $config );
|
|
|
|
|
// Required settings
|
|
|
|
|
$this->auth = new CF_Authentication(
|
2012-04-17 17:32:43 +00:00
|
|
|
$config['swiftUser'],
|
|
|
|
|
$config['swiftKey'],
|
2012-01-18 19:57:32 +00:00
|
|
|
null, // account; unused
|
2012-04-17 17:32:43 +00:00
|
|
|
$config['swiftAuthUrl']
|
2012-01-18 19:57:32 +00:00
|
|
|
);
|
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']
|
2012-01-18 19:57:32 +00:00
|
|
|
: 120; // some sane number
|
|
|
|
|
$this->swiftAnonUser = isset( $config['swiftAnonUser'] )
|
|
|
|
|
? $config['swiftAnonUser']
|
2012-01-12 20:01:54 +00:00
|
|
|
: '';
|
|
|
|
|
$this->shardViaHashLevels = isset( $config['shardViaHashLevels'] )
|
|
|
|
|
? $config['shardViaHashLevels']
|
|
|
|
|
: '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::resolveContainerPath()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return null
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
protected function resolveContainerPath( $container, $relStoragePath ) {
|
|
|
|
|
if ( 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
|
|
|
}
|
|
|
|
|
return $relStoragePath;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-19 23:18:03 +00:00
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::isPathUsableInternal()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return bool
|
2012-01-19 23:18:03 +00:00
|
|
|
*/
|
|
|
|
|
public function isPathUsableInternal( $storagePath ) {
|
|
|
|
|
list( $container, $rel ) = $this->resolveStoragePathReal( $storagePath );
|
|
|
|
|
if ( $rel === null ) {
|
|
|
|
|
return false; // invalid
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$this->getContainer( $container );
|
|
|
|
|
return true; // container exists
|
|
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$this->logException( $e, __METHOD__, array( 'path' => $storagePath ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2012-02-01 03:39:38 +00:00
|
|
|
* @see FileBackendStore::doCreateInternal()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return Status
|
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'] );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (a) Check the destination container and object
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-14 23:11:21 +00:00
|
|
|
$dContObj = $this->getContainer( $dstCont );
|
2012-01-26 20:17:18 +00:00
|
|
|
if ( empty( $params['overwrite'] ) &&
|
2012-04-17 17:32:43 +00:00
|
|
|
$this->fileExists( array( 'src' => $params['dst'], 'latest' => 1 ) ) )
|
2012-01-26 20:17:18 +00:00
|
|
|
{
|
|
|
|
|
$status->fatal( 'backend-fail-alreadyexists', $params['dst'] );
|
|
|
|
|
return $status;
|
2012-01-18 19:57:32 +00:00
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-create', $params['dst'] );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-12 20:05:25 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (b) Get a SHA-1 hash of the object
|
2012-01-12 20:01:54 +00:00
|
|
|
$sha1Hash = wfBaseConvert( sha1( $params['content'] ), 16, 36, 31 );
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (c) Actually create the object
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-18 19:57:32 +00:00
|
|
|
// Create a fresh CF_Object with no fields preloaded.
|
|
|
|
|
// We don't want to preserve headers, metadata, and such.
|
|
|
|
|
$obj = new CF_Object( $dContObj, $dstRel, false, false ); // skip HEAD
|
2012-01-12 20:01:54 +00:00
|
|
|
// Note: metadata keys stored as [Upper case char][[Lower case char]...]
|
|
|
|
|
$obj->metadata = array( 'Sha1base36' => $sha1Hash );
|
2012-01-25 01:57:28 +00:00
|
|
|
// Manually set the ETag (https://github.com/rackspace/php-cloudfiles/issues/59).
|
|
|
|
|
// The MD5 here will be checked within Swift against its own MD5.
|
|
|
|
|
$obj->set_etag( md5( $params['content'] ) );
|
|
|
|
|
// Use the same content type as StreamFile for security
|
|
|
|
|
$obj->content_type = StreamFile::contentTypeFromPath( $params['dst'] );
|
|
|
|
|
// Actually write the object in Swift
|
2012-01-12 20:01:54 +00:00
|
|
|
$obj->write( $params['content'] );
|
|
|
|
|
} catch ( BadContentTypeException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-contenttype', $params['dst'] );
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-12 20:05:25 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doStoreInternal()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return Status
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
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'] );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (a) Check the destination container and object
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-14 23:11:21 +00:00
|
|
|
$dContObj = $this->getContainer( $dstCont );
|
2012-01-26 20:17:18 +00:00
|
|
|
if ( empty( $params['overwrite'] ) &&
|
2012-04-17 17:32:43 +00:00
|
|
|
$this->fileExists( array( 'src' => $params['dst'], 'latest' => 1 ) ) )
|
2012-01-26 20:17:18 +00:00
|
|
|
{
|
|
|
|
|
$status->fatal( 'backend-fail-alreadyexists', $params['dst'] );
|
|
|
|
|
return $status;
|
2012-01-18 19:57:32 +00:00
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-copy', $params['src'], $params['dst'] );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-12 20:05:25 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (b) Get a SHA-1 hash of the object
|
2012-01-12 20:01:54 +00:00
|
|
|
$sha1Hash = sha1_file( $params['src'] );
|
|
|
|
|
if ( $sha1Hash === false ) { // source doesn't exist?
|
|
|
|
|
$status->fatal( 'backend-fail-copy', $params['src'], $params['dst'] );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
$sha1Hash = wfBaseConvert( $sha1Hash, 16, 36, 31 );
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (c) Actually store the object
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-18 19:57:32 +00:00
|
|
|
// Create a fresh CF_Object with no fields preloaded.
|
|
|
|
|
// We don't want to preserve headers, metadata, and such.
|
|
|
|
|
$obj = new CF_Object( $dContObj, $dstRel, false, false ); // skip HEAD
|
2012-01-12 20:01:54 +00:00
|
|
|
// Note: metadata keys stored as [Upper case char][[Lower case char]...]
|
|
|
|
|
$obj->metadata = array( 'Sha1base36' => $sha1Hash );
|
2012-01-25 01:57:28 +00:00
|
|
|
// The MD5 here will be checked within Swift against its own MD5.
|
|
|
|
|
$obj->set_etag( md5_file( $params['src'] ) );
|
|
|
|
|
// Use the same content type as StreamFile for security
|
|
|
|
|
$obj->content_type = StreamFile::contentTypeFromPath( $params['dst'] );
|
|
|
|
|
// Actually write the object in Swift
|
2012-01-12 20:01:54 +00:00
|
|
|
$obj->load_from_filename( $params['src'], True ); // calls $obj->write()
|
|
|
|
|
} catch ( BadContentTypeException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-contenttype', $params['dst'] );
|
|
|
|
|
} catch ( IOException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-copy', $params['src'], $params['dst'] );
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-12 20:05:25 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doCopyInternal()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return Status
|
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'] );
|
|
|
|
|
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'] );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (a) Check the source/destination containers and destination object
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-14 23:11:21 +00:00
|
|
|
$sContObj = $this->getContainer( $srcCont );
|
|
|
|
|
$dContObj = $this->getContainer( $dstCont );
|
2012-01-26 20:17:18 +00:00
|
|
|
if ( empty( $params['overwrite'] ) &&
|
2012-04-17 17:32:43 +00:00
|
|
|
$this->fileExists( array( 'src' => $params['dst'], 'latest' => 1 ) ) )
|
2012-01-26 20:17:18 +00:00
|
|
|
{
|
|
|
|
|
$status->fatal( 'backend-fail-alreadyexists', $params['dst'] );
|
|
|
|
|
return $status;
|
2012-01-18 19:57:32 +00:00
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-copy', $params['src'], $params['dst'] );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-12 20:05:25 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
// (b) Actually copy the file to the destination
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-18 19:57:32 +00:00
|
|
|
$sContObj->copy_object_to( $srcRel, $dContObj, $dstRel );
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchObjectException $e ) { // source object does not exist
|
|
|
|
|
$status->fatal( 'backend-fail-copy', $params['src'], $params['dst'] );
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-12 20:05:25 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doDeleteInternal()
|
2012-02-09 21:33:27 +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'] );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2012-01-14 23:11:21 +00:00
|
|
|
$sContObj = $this->getContainer( $srcCont );
|
2012-01-18 19:57:32 +00:00
|
|
|
$sContObj->delete_object( $srcRel );
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-delete', $params['src'] );
|
|
|
|
|
} catch ( NoSuchObjectException $e ) {
|
|
|
|
|
if ( empty( $params['ignoreMissingSource'] ) ) {
|
|
|
|
|
$status->fatal( 'backend-fail-delete', $params['src'] );
|
|
|
|
|
}
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-12 20:05:25 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doPrepareInternal()
|
2012-02-09 21:33:27 +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
|
|
|
|
|
try {
|
|
|
|
|
$contObj = $this->getContainer( $fullCont );
|
|
|
|
|
// NoSuchContainerException not thrown: container must exist
|
|
|
|
|
return $status; // already exists
|
|
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
// NoSuchContainerException thrown: container does not exist
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// (b) Create container as needed
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-18 19:57:32 +00:00
|
|
|
$contObj = $this->createContainer( $fullCont );
|
|
|
|
|
if ( $this->swiftAnonUser != '' ) {
|
|
|
|
|
// Make container public to end-users...
|
|
|
|
|
$status->merge( $this->setContainerAccess(
|
|
|
|
|
$contObj,
|
|
|
|
|
array( $this->auth->username, $this->swiftAnonUser ), // read
|
|
|
|
|
array( $this->auth->username ) // write
|
|
|
|
|
) );
|
|
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
2012-01-18 19:57:32 +00:00
|
|
|
return $status;
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-12 20:05:25 +00:00
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
$this->logException( $e, __METHOD__, $params );
|
2012-01-18 19:57:32 +00:00
|
|
|
return $status;
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doSecureInternal()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return Status
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
protected function doSecureInternal( $fullCont, $dir, array $params ) {
|
|
|
|
|
$status = Status::newGood();
|
2012-01-18 19:57:32 +00:00
|
|
|
|
|
|
|
|
if ( $this->swiftAnonUser != '' ) {
|
|
|
|
|
// Restrict container from end-users...
|
|
|
|
|
try {
|
|
|
|
|
// doPrepareInternal() should have been called,
|
|
|
|
|
// so the Swift container should already exist...
|
|
|
|
|
$contObj = $this->getContainer( $fullCont ); // normally a cache hit
|
|
|
|
|
// NoSuchContainerException not thrown: container must exist
|
|
|
|
|
if ( !isset( $contObj->mw_wasSecured ) ) {
|
|
|
|
|
$status->merge( $this->setContainerAccess(
|
|
|
|
|
$contObj,
|
|
|
|
|
array( $this->auth->username ), // read
|
|
|
|
|
array( $this->auth->username ) // write
|
|
|
|
|
) );
|
|
|
|
|
// @TODO: when php-cloudfiles supports container
|
|
|
|
|
// metadata, we can make use of that to avoid RTTs
|
|
|
|
|
$contObj->mw_wasSecured = true; // avoid useless RTTs
|
|
|
|
|
}
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doCleanInternal()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return Status
|
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
|
|
|
|
|
try {
|
|
|
|
|
$contObj = $this->getContainer( $fullCont, true );
|
|
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
return $status; // ok, nothing to do
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-15 22:21:51 +00:00
|
|
|
// (b) Delete the container if empty
|
2012-01-14 23:15:32 +00:00
|
|
|
if ( $contObj->object_count == 0 ) {
|
2012-01-14 23:11:21 +00:00
|
|
|
try {
|
|
|
|
|
$this->deleteContainer( $fullCont );
|
|
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
return $status; // race?
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
|
|
|
|
return $status;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$status->fatal( 'backend-fail-internal', $this->name );
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doFileExists()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return array|bool|null
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
protected function doGetFileStat( array $params ) {
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
return false; // invalid storage path
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$stat = false;
|
|
|
|
|
try {
|
2012-01-18 19:57:32 +00:00
|
|
|
$contObj = $this->getContainer( $srcCont );
|
|
|
|
|
$srcObj = $contObj->get_object( $srcRel, $this->headersFromParams( $params ) );
|
2012-01-29 11:33:47 +00:00
|
|
|
$this->addMissingMetadata( $srcObj, $params['src'] );
|
2012-01-22 03:25:19 +00:00
|
|
|
$stat = array(
|
|
|
|
|
// Convert dates like "Tue, 03 Jan 2012 22:01:04 GMT" to TS_MW
|
|
|
|
|
'mtime' => wfTimestamp( TS_MW, $srcObj->last_modified ),
|
|
|
|
|
'size' => $srcObj->content_length,
|
|
|
|
|
'sha1' => $srcObj->metadata['Sha1base36']
|
|
|
|
|
);
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
} catch ( NoSuchObjectException $e ) {
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$stat = null;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$stat = null;
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $stat;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
*
|
2012-01-29 11:33:47 +00:00
|
|
|
* @param $obj CF_Object
|
|
|
|
|
* @param $path string Storage path to object
|
|
|
|
|
* @return bool Success
|
|
|
|
|
* @throws Exception cloudfiles exceptions
|
|
|
|
|
*/
|
|
|
|
|
protected function addMissingMetadata( CF_Object $obj, $path ) {
|
|
|
|
|
if ( isset( $obj->metadata['Sha1base36'] ) ) {
|
|
|
|
|
return true; // nothing to do
|
|
|
|
|
}
|
|
|
|
|
$status = Status::newGood();
|
|
|
|
|
$scopeLockS = $this->getScopedFileLocks( array( $path ), LockManager::LOCK_UW, $status );
|
|
|
|
|
if ( $status->isOK() ) {
|
|
|
|
|
$tmpFile = $this->getLocalCopy( array( 'src' => $path, 'latest' => 1 ) );
|
|
|
|
|
if ( $tmpFile ) {
|
|
|
|
|
$hash = $tmpFile->getSha1Base36();
|
|
|
|
|
if ( $hash !== false ) {
|
|
|
|
|
$obj->metadata['Sha1base36'] = $hash;
|
|
|
|
|
$obj->sync_metadata(); // save to Swift
|
|
|
|
|
return true; // success
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$obj->metadata['Sha1base36'] = false;
|
|
|
|
|
return false; // failed
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackend::getFileContents()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return bool|null|string
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
public function getFileContents( array $params ) {
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
return false; // invalid storage path
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-26 20:17:18 +00:00
|
|
|
if ( !$this->fileExists( $params ) ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
$data = false;
|
|
|
|
|
try {
|
2012-01-26 20:17:18 +00:00
|
|
|
$sContObj = $this->getContainer( $srcCont );
|
|
|
|
|
$obj = new CF_Object( $sContObj, $srcRel, false, false ); // skip HEAD request
|
2012-01-12 22:01:02 +00:00
|
|
|
$data = $obj->read( $this->headersFromParams( $params ) );
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::getFileListInternal()
|
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-01-14 01:52:19 +00:00
|
|
|
return new SwiftFileBackendFileList( $this, $fullCont, $dir );
|
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
|
|
|
*
|
2012-01-12 20:01:54 +00:00
|
|
|
* @param $fullCont string Resolved container name
|
2012-01-12 22:01:02 +00:00
|
|
|
* @param $dir string Resolved storage directory with no trailing slash
|
2012-01-12 20:01:54 +00:00
|
|
|
* @param $after string Storage path of file to list items after
|
|
|
|
|
* @param $limit integer Max number of items to list
|
|
|
|
|
* @return Array
|
|
|
|
|
*/
|
|
|
|
|
public function getFileListPageInternal( $fullCont, $dir, $after, $limit ) {
|
|
|
|
|
$files = array();
|
2012-01-18 19:57:32 +00:00
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-14 23:11:21 +00:00
|
|
|
$container = $this->getContainer( $fullCont );
|
2012-01-22 00:06:18 +00:00
|
|
|
$prefix = ( $dir == '' ) ? null : "{$dir}/";
|
|
|
|
|
$files = $container->list_objects( $limit, $after, $prefix );
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
2012-01-19 23:18:03 +00:00
|
|
|
$this->logException( $e, __METHOD__, array( 'cont' => $fullCont, 'dir' => $dir ) );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $files;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doGetFileSha1base36()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return bool
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
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 ) {
|
|
|
|
|
return $stat['sha1'];
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doStreamFile()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return Status
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
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'] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2012-01-14 23:11:21 +00:00
|
|
|
$cont = $this->getContainer( $srcCont );
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-stream', $params['src'] );
|
|
|
|
|
return $status;
|
2012-01-15 22:21:51 +00:00
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$status->fatal( 'backend-fail-connect', $this->name );
|
2012-01-12 20:01:54 +00:00
|
|
|
return $status;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$status->fatal( 'backend-fail-stream', $params['src'] );
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2012-02-01 03:39:38 +00:00
|
|
|
$output = fopen( 'php://output', 'wb' );
|
2012-01-18 19:57:32 +00:00
|
|
|
$obj = new CF_Object( $cont, $srcRel, false, false ); // skip HEAD request
|
2012-01-12 22:01:02 +00:00
|
|
|
$obj->stream( $output, $this->headersFromParams( $params ) );
|
2012-01-15 22:21:51 +00:00
|
|
|
} catch ( InvalidResponseException $e ) { // 404? connection problem?
|
|
|
|
|
$status->fatal( 'backend-fail-stream', $params['src'] );
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$status->fatal( 'backend-fail-stream', $params['src'] );
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::getLocalCopy()
|
2012-02-09 21:33:27 +00:00
|
|
|
* @return null|TempFSFile
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
public function getLocalCopy( array $params ) {
|
|
|
|
|
list( $srcCont, $srcRel ) = $this->resolveStoragePathReal( $params['src'] );
|
|
|
|
|
if ( $srcRel === null ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-26 20:17:18 +00:00
|
|
|
if ( !$this->fileExists( $params ) ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
$tmpFile = null;
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
2012-01-26 20:17:18 +00:00
|
|
|
$sContObj = $this->getContainer( $srcCont );
|
|
|
|
|
$obj = new CF_Object( $sContObj, $srcRel, false, false ); // skip HEAD
|
2012-01-18 19:57:32 +00:00
|
|
|
// Get source file extension
|
|
|
|
|
$ext = FileBackend::extensionFromPath( $srcRel );
|
|
|
|
|
// Create a new temporary file...
|
|
|
|
|
$tmpFile = TempFSFile::factory( wfBaseName( $srcRel ) . '_', $ext );
|
|
|
|
|
if ( $tmpFile ) {
|
2012-01-25 01:57:28 +00:00
|
|
|
$handle = fopen( $tmpFile->getPath(), 'wb' );
|
2012-01-18 19:57:32 +00:00
|
|
|
if ( $handle ) {
|
|
|
|
|
$obj->stream( $handle, $this->headersFromParams( $params ) );
|
|
|
|
|
fclose( $handle );
|
|
|
|
|
} else {
|
|
|
|
|
$tmpFile = null; // couldn't open temp file
|
|
|
|
|
}
|
2012-01-12 22:01:02 +00:00
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
} catch ( NoSuchContainerException $e ) {
|
|
|
|
|
$tmpFile = null;
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$tmpFile = null;
|
|
|
|
|
} catch ( Exception $e ) { // some other exception?
|
|
|
|
|
$tmpFile = null;
|
|
|
|
|
$this->logException( $e, __METHOD__, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $tmpFile;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
*
|
2012-01-12 22:01:02 +00:00
|
|
|
* @param $params Array
|
2012-04-17 17:32:43 +00:00
|
|
|
* @return Array
|
2012-01-12 22:01:02 +00:00
|
|
|
*/
|
|
|
|
|
protected function headersFromParams( array $params ) {
|
|
|
|
|
$hdrs = array();
|
|
|
|
|
if ( !empty( $params['latest'] ) ) {
|
|
|
|
|
$hdrs[] = 'X-Newest: true';
|
|
|
|
|
}
|
|
|
|
|
return $hdrs;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-18 19:57:32 +00:00
|
|
|
/**
|
|
|
|
|
* Set read/write permissions for a Swift container
|
|
|
|
|
*
|
|
|
|
|
* @param $contObj CF_Container Swift container
|
|
|
|
|
* @param $readGrps Array Swift users who can read (account:user)
|
|
|
|
|
* @param $writeGrps Array Swift users who can write (account:user)
|
|
|
|
|
* @return Status
|
|
|
|
|
*/
|
|
|
|
|
protected function setContainerAccess(
|
|
|
|
|
CF_Container $contObj, array $readGrps, array $writeGrps
|
|
|
|
|
) {
|
|
|
|
|
$creds = $contObj->cfs_auth->export_credentials();
|
|
|
|
|
|
|
|
|
|
$url = $creds['storage_url'] . '/' . rawurlencode( $contObj->name );
|
|
|
|
|
|
|
|
|
|
// Note: 10 second timeout consistent with php-cloudfiles
|
2012-01-29 11:33:47 +00:00
|
|
|
$req = new CurlHttpRequest( $url, array( 'method' => 'POST', 'timeout' => 10 ) );
|
2012-01-18 19:57:32 +00:00
|
|
|
$req->setHeader( 'X-Auth-Token', $creds['auth_token'] );
|
|
|
|
|
$req->setHeader( 'X-Container-Read', implode( ',', $readGrps ) );
|
|
|
|
|
$req->setHeader( 'X-Container-Write', implode( ',', $writeGrps ) );
|
|
|
|
|
|
|
|
|
|
return $req->execute(); // should return 204
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
2012-01-14 23:11:21 +00:00
|
|
|
* Get a connection to the Swift proxy
|
2012-01-12 20:01:54 +00:00
|
|
|
*
|
2012-02-10 15:37:33 +00:00
|
|
|
* @return CF_Connection|bool False on failure
|
2012-01-14 23:11:21 +00:00
|
|
|
* @throws InvalidResponseException
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
protected function getConnection() {
|
|
|
|
|
if ( $this->conn === false ) {
|
2012-01-23 08:33:31 +00:00
|
|
|
throw new InvalidResponseException; // failed last attempt
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
2012-01-18 19:57:32 +00:00
|
|
|
// Session keys expire after a while, so we renew them periodically
|
|
|
|
|
if ( $this->conn && ( time() - $this->connStarted ) > $this->authTTL ) {
|
|
|
|
|
$this->conn->close(); // close active cURL connections
|
|
|
|
|
$this->conn = null;
|
|
|
|
|
}
|
|
|
|
|
// Authenticate with proxy and get a session key...
|
|
|
|
|
if ( $this->conn === null ) {
|
2012-01-14 23:11:21 +00:00
|
|
|
$this->connContainers = array();
|
2012-01-12 20:01:54 +00:00
|
|
|
try {
|
|
|
|
|
$this->auth->authenticate();
|
|
|
|
|
$this->conn = new CF_Connection( $this->auth );
|
|
|
|
|
$this->connStarted = time();
|
|
|
|
|
} catch ( AuthenticationException $e ) {
|
|
|
|
|
$this->conn = false; // don't keep re-trying
|
|
|
|
|
} catch ( InvalidResponseException $e ) {
|
|
|
|
|
$this->conn = false; // don't keep re-trying
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-01-14 23:11:21 +00:00
|
|
|
if ( !$this->conn ) {
|
|
|
|
|
throw new InvalidResponseException; // auth/connection problem
|
|
|
|
|
}
|
2012-01-12 20:01:54 +00:00
|
|
|
return $this->conn;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-22 00:06:18 +00:00
|
|
|
/**
|
2012-01-29 22:22:28 +00:00
|
|
|
* @see FileBackendStore::doClearCache()
|
2012-01-22 00:06:18 +00:00
|
|
|
*/
|
|
|
|
|
protected function doClearCache( array $paths = null ) {
|
|
|
|
|
$this->connContainers = array(); // clear container object cache
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-14 23:11:21 +00:00
|
|
|
/**
|
|
|
|
|
* Get a Swift container object, possibly from process cache.
|
|
|
|
|
* Use $reCache if the file count or byte count is needed.
|
|
|
|
|
*
|
|
|
|
|
* @param $container string Container name
|
|
|
|
|
* @param $reCache bool Refresh the process cache
|
|
|
|
|
* @return CF_Container
|
|
|
|
|
*/
|
|
|
|
|
protected function getContainer( $container, $reCache = false ) {
|
|
|
|
|
$conn = $this->getConnection(); // Swift proxy connection
|
|
|
|
|
if ( $reCache ) {
|
|
|
|
|
unset( $this->connContainers[$container] ); // purge cache
|
|
|
|
|
}
|
|
|
|
|
if ( !isset( $this->connContainers[$container] ) ) {
|
|
|
|
|
$contObj = $conn->get_container( $container );
|
2012-01-18 19:57:32 +00:00
|
|
|
// NoSuchContainerException not thrown: container must exist
|
|
|
|
|
if ( count( $this->connContainers ) >= $this->maxContCacheSize ) { // trim cache?
|
|
|
|
|
reset( $this->connContainers );
|
|
|
|
|
$key = key( $this->connContainers );
|
|
|
|
|
unset( $this->connContainers[$key] );
|
|
|
|
|
}
|
2012-01-14 23:11:21 +00:00
|
|
|
$this->connContainers[$container] = $contObj; // cache it
|
|
|
|
|
}
|
|
|
|
|
return $this->connContainers[$container];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a Swift container
|
|
|
|
|
*
|
|
|
|
|
* @param $container string Container name
|
|
|
|
|
* @return CF_Container
|
|
|
|
|
*/
|
|
|
|
|
protected function createContainer( $container ) {
|
|
|
|
|
$conn = $this->getConnection(); // Swift proxy connection
|
|
|
|
|
$contObj = $conn->create_container( $container );
|
|
|
|
|
$this->connContainers[$container] = $contObj; // cache it
|
|
|
|
|
return $contObj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Delete a Swift container
|
|
|
|
|
*
|
|
|
|
|
* @param $container string Container name
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
protected function deleteContainer( $container ) {
|
|
|
|
|
$conn = $this->getConnection(); // Swift proxy connection
|
|
|
|
|
$conn->delete_container( $container );
|
|
|
|
|
unset( $this->connContainers[$container] ); // purge cache
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 20:01:54 +00:00
|
|
|
/**
|
|
|
|
|
* Log an unexpected exception for this backend
|
2012-04-17 17:32:43 +00:00
|
|
|
*
|
2012-01-12 20:01:54 +00:00
|
|
|
* @param $e Exception
|
|
|
|
|
* @param $func string
|
|
|
|
|
* @param $params Array
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
protected function logException( Exception $e, $func, array $params ) {
|
|
|
|
|
wfDebugLog( 'SwiftBackend',
|
2012-03-01 22:01:57 +00:00
|
|
|
get_class( $e ) . " in '{$func}' (given '" . FormatJson::encode( $params ) . "')" .
|
2012-02-16 18:22:09 +00:00
|
|
|
( $e instanceof InvalidResponseException
|
|
|
|
|
? ": {$e->getMessage()}"
|
|
|
|
|
: ""
|
|
|
|
|
)
|
2012-01-12 20:01:54 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SwiftFileBackend helper class to page through object listings.
|
|
|
|
|
* 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-01-14 01:52:19 +00:00
|
|
|
class SwiftFileBackendFileList implements Iterator {
|
2012-01-12 20:01:54 +00:00
|
|
|
/** @var Array */
|
|
|
|
|
protected $bufferIter = array();
|
|
|
|
|
protected $bufferAfter = null; // string; list items *after* this path
|
|
|
|
|
protected $pos = 0; // integer
|
|
|
|
|
|
|
|
|
|
/** @var SwiftFileBackend */
|
2012-04-17 17:32:43 +00:00
|
|
|
protected $backend;
|
2012-01-12 20:01:54 +00:00
|
|
|
protected $container; //
|
|
|
|
|
protected $dir; // string storage directory
|
2012-01-12 22:01:02 +00:00
|
|
|
protected $suffixStart; // integer
|
2012-01-12 20:01:54 +00:00
|
|
|
|
|
|
|
|
const PAGE_SIZE = 5000; // file listing buffer size
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $backend SwiftFileBackend
|
|
|
|
|
* @param $fullCont string Resolved container name
|
2012-01-14 01:52:19 +00:00
|
|
|
* @param $dir string Resolved directory relative to container
|
2012-01-12 20:01:54 +00:00
|
|
|
*/
|
|
|
|
|
public function __construct( SwiftFileBackend $backend, $fullCont, $dir ) {
|
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-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-03 19:14:50 +00:00
|
|
|
/**
|
|
|
|
|
* @see Iterator::current()
|
|
|
|
|
* @return string|bool String or false
|
|
|
|
|
*/
|
2012-01-12 20:01:54 +00:00
|
|
|
public function current() {
|
2012-01-12 22:01:02 +00:00
|
|
|
return substr( current( $this->bufferIter ), $this->suffixStart );
|
2012-01-12 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-03 19:14:50 +00:00
|
|
|
/**
|
|
|
|
|
* @see Iterator::key()
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
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()
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
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 ) ) {
|
|
|
|
|
$this->bufferAfter = end( $this->bufferIter );
|
|
|
|
|
$this->bufferIter = $this->backend->getFileListPageInternal(
|
2012-02-08 20:34:24 +00:00
|
|
|
$this->container, $this->dir, $this->bufferAfter, self::PAGE_SIZE
|
2012-01-12 20:01:54 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-03 19:14:50 +00:00
|
|
|
/**
|
|
|
|
|
* @see Iterator::rewind()
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2012-01-12 20:01:54 +00:00
|
|
|
public function rewind() {
|
|
|
|
|
$this->pos = 0;
|
|
|
|
|
$this->bufferAfter = null;
|
|
|
|
|
$this->bufferIter = $this->backend->getFileListPageInternal(
|
2012-02-08 20:34:24 +00:00
|
|
|
$this->container, $this->dir, $this->bufferAfter, self::PAGE_SIZE
|
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() {
|
|
|
|
|
return ( current( $this->bufferIter ) !== false ); // no paths can have this value
|
|
|
|
|
}
|
|
|
|
|
}
|