MediaWiki  1.27.2
UploadStash Class Reference

UploadStash is intended to accomplish a few things: More...

Collaboration diagram for UploadStash:

Public Member Functions

 __construct (FileRepo $repo, $user=null)
 Represents a temporary filestore, with metadata in the database. More...
 
 clear ()
 Remove all files from the stash. More...
 
 getFile ($key, $noAuth=false)
 Get a file and its metadata from the stash. More...
 
 getFileProps ($key)
 Getter for fileProps. More...
 
 getMetadata ($key)
 Getter for file metadata. More...
 
 listFiles ()
 List all files in the stash. More...
 
 removeFile ($key)
 Remove a particular file from the stash. More...
 
 removeFileNoAuth ($key)
 Remove a file (see removeFile), but doesn't check ownership first. More...
 
 stashFile ($path, $sourceType=null)
 Stash a file in a temp directory and record that we did this in the database, along with other metadata. More...
 

Static Public Member Functions

static getExtensionForPath ($path)
 Find or guess extension – ensuring that our extension matches our MIME type. More...
 

Public Attributes

 $isLoggedIn
 
LocalRepo $repo
 repository that this uses to store temp files public because we sometimes need to get a LocalFile within the same repo. More...
 
 $userId
 
const KEY_FORMAT_REGEX = '/^[\w-\.]+\.\w*$/'
 
const MAX_US_PROPS_SIZE = 65535
 

Protected Member Functions

 fetchFileMetadata ($key, $readFromDB=DB_SLAVE)
 Helper function: do the actual database query to fetch file metadata. More...
 
 initFile ($key)
 Helper function: Initialize the UploadStashFile for a given file. More...
 

Protected Attributes

 $fileMetadata = []
 
 $fileProps = []
 
 $files = []
 
 $user
 

Detailed Description

UploadStash is intended to accomplish a few things:

  • Enable applications to temporarily stash files without publishing them to the wiki.
    • Several parts of MediaWiki do this in similar ways: UploadBase, UploadWizard, and FirefoggChunkedExtension. And there are several that reimplement stashing from scratch, in idiosyncratic ways. The idea is to unify them all here. Mostly all of them are the same except for storing some custom fields, which we subsume into the data array.
  • Enable applications to find said files later, as long as the db table or temp files haven't been purged.
  • Enable the uploading user (and ONLY the uploading user) to access said files, and thumbnails of said files, via a URL. We accomplish this using a database table, with ownership checking as you might expect. See SpecialUploadStash, which implements a web interface to some files stored this way.

UploadStash right now is mostly intended to show you one user's slice of the entire stash. The user parameter is only optional because there are few cases where we clean out the stash from an automated script. In the future we might refactor this.

UploadStash represents the entire stash of temporary files. UploadStashFile is a filestore for the actual physical disk files. UploadFromStash extends UploadBase, and represents a single stashed file as it is moved from the stash to the regular file repository

Definition at line 54 of file UploadStash.php.

Constructor & Destructor Documentation

UploadStash::__construct ( FileRepo  $repo,
  $user = null 
)

Represents a temporary filestore, with metadata in the database.

Designed to be compatible with the session stashing code in UploadBase (should replace it eventually).

Parameters
FileRepo$repo
User$user(default null)

Definition at line 87 of file UploadStash.php.

References $repo, $user, $wgUser, global, and user.

Member Function Documentation

UploadStash::clear ( )

Remove all files from the stash.

Does not clean up files in the repo, just the record of them.

Exceptions
UploadStashNotLoggedInException
Returns
bool Success

Definition at line 332 of file UploadStash.php.

References files(), and wfDebug().

UploadStash::fetchFileMetadata (   $key,
  $readFromDB = DB_SLAVE 
)
protected

Helper function: do the actual database query to fetch file metadata.

Parameters
string$key
int$readFromDBConstant (default: DB_SLAVE)
Returns
bool

Definition at line 505 of file UploadStash.php.

References $dbr, $key, array(), and DB_MASTER.

Referenced by getFile().

static UploadStash::getExtensionForPath (   $path)
static

Find or guess extension – ensuring that our extension matches our MIME type.

Since these files are constructed from php tempnames they may not start off with an extension. XXX this is somewhat redundant with the checks that ApiUpload.php does with incoming uploads versus the desired filename. Maybe we can get that passed to us...

Parameters
string$path
Exceptions
UploadStashFileException
Returns
string

Definition at line 465 of file UploadStash.php.

References $extensions, $path, $wgFileBlacklist, global, File\normalizeExtension(), and MimeMagic\singleton().

UploadStash::getFile (   $key,
  $noAuth = false 
)

Get a file and its metadata from the stash.

The noAuth param is a bit janky but is required for automated scripts which clean out the stash.

Parameters
string$keyKey under which file information is stored
bool$noAuth(optional) Don't check authentication. Used by maintenance scripts.
Exceptions
UploadStashFileNotFoundException
UploadStashNotLoggedInException
UploadStashWrongOwnerException
UploadStashBadPathException
Returns
UploadStashFile

Definition at line 119 of file UploadStash.php.

References $key, $path, DB_MASTER, fetchFileMetadata(), files(), initFile(), unserialize(), and wfDebug().

Referenced by getFileProps(), getMetadata(), removeFileNoAuth(), and stashFile().

UploadStash::getFileProps (   $key)

Getter for fileProps.

Parameters
string$keyKey under which file information is stored
Returns
array

Definition at line 187 of file UploadStash.php.

References $key, and getFile().

UploadStash::getMetadata (   $key)

Getter for file metadata.

Parameters
string$keyKey under which file information is stored
Returns
array

Definition at line 175 of file UploadStash.php.

References $key, and getFile().

UploadStash::initFile (   $key)
protected

Helper function: Initialize the UploadStashFile for a given file.

Parameters
string$keyKey under which to store the object
Exceptions
UploadStashZeroLengthFileException
Returns
bool

Definition at line 540 of file UploadStash.php.

References $key, and files().

Referenced by getFile(), and stashFile().

UploadStash::listFiles ( )

List all files in the stash.

Exceptions
UploadStashNotLoggedInException
Returns
array

Definition at line 427 of file UploadStash.php.

References $dbr, $keys, $res, and as.

UploadStash::removeFile (   $key)

Remove a particular file from the stash.

Also removes it from the repo.

Parameters
string$key
Exceptions
UploadStashNoSuchKeyException|UploadStashNotLoggedInException
UploadStashWrongOwnerException
Returns
bool Success

Definition at line 361 of file UploadStash.php.

References $key, and removeFileNoAuth().

UploadStash::removeFileNoAuth (   $key)

Remove a file (see removeFile), but doesn't check ownership first.

Parameters
string$key
Returns
bool Success

Definition at line 396 of file UploadStash.php.

References $key, files(), getFile(), and wfDebug().

Referenced by removeFile().

UploadStash::stashFile (   $path,
  $sourceType = null 
)

Stash a file in a temp directory and record that we did this in the database, along with other metadata.

Parameters
string$pathPath to file you want stashed
string$sourceTypeThe type of upload that generated this file (currently, I believe, 'file' or null)
Exceptions
UploadStashBadPathException
UploadStashFileException
UploadStashNotLoggedInException
Returns
UploadStashFile|null File, or null on failure

Definition at line 205 of file UploadStash.php.

References $fileProps, $key, $path, $userId, getFile(), FSFile\getPropsFromPath(), initFile(), list, serialize(), text, wfDebug(), and wfMessage().

Member Data Documentation

UploadStash::$fileMetadata = []
protected

Definition at line 71 of file UploadStash.php.

UploadStash::$fileProps = []
protected

Definition at line 74 of file UploadStash.php.

Referenced by stashFile().

UploadStash::$files = []
protected

Definition at line 68 of file UploadStash.php.

UploadStash::$isLoggedIn

Definition at line 77 of file UploadStash.php.

LocalRepo UploadStash::$repo

repository that this uses to store temp files public because we sometimes need to get a LocalFile within the same repo.

Definition at line 65 of file UploadStash.php.

Referenced by __construct().

UploadStash::$user
protected

Definition at line 77 of file UploadStash.php.

Referenced by __construct().

UploadStash::$userId

Definition at line 77 of file UploadStash.php.

Referenced by stashFile().

const UploadStash::KEY_FORMAT_REGEX = '/^[\w-\.]+\.\w*$/'

Definition at line 56 of file UploadStash.php.

Referenced by UploadFromStash\isValidKey().

const UploadStash::MAX_US_PROPS_SIZE = 65535

Definition at line 57 of file UploadStash.php.


The documentation for this class was generated from the following file: