MediaWiki REL1_32
|
Helper class for file undeletion. More...
Public Member Functions | |
__construct (File $file, $unsuppress=false) | |
addAll () | |
Add all revisions of the file. | |
addId ( $fa_id) | |
Add a file by ID. | |
addIds ( $ids) | |
Add a whole lot of files by ID. | |
cleanup () | |
Delete unused files in the deleted zone. | |
execute () | |
Run the transaction, except the cleanup batch. | |
Protected Member Functions | |
cleanupFailedBatch ( $storeStatus, $storeBatch) | |
Cleanup a failed batch. | |
removeNonexistentFiles ( $triplets) | |
Removes non-existent files from a store batch. | |
removeNonexistentFromCleanup ( $batch) | |
Removes non-existent files from a cleanup batch. | |
Private Attributes | |
bool | $all |
Add all revisions of the file. | |
string[] | $cleanupBatch |
List of file IDs to restore. | |
LocalFile | $file |
string[] | $ids |
List of file IDs to restore. | |
bool | $unsuppress = false |
Whether to remove all settings for suppressed fields. | |
Helper class for file undeletion.
Definition at line 2760 of file LocalFile.php.
LocalFileRestoreBatch::__construct | ( | File | $file, |
$unsuppress = false |
|||
) |
File | $file | |
bool | $unsuppress |
Definition at line 2780 of file LocalFile.php.
References $file, $unsuppress, and file.
LocalFileRestoreBatch::addAll | ( | ) |
Add all revisions of the file.
Definition at line 2806 of file LocalFile.php.
LocalFileRestoreBatch::addId | ( | $fa_id | ) |
LocalFileRestoreBatch::addIds | ( | $ids | ) |
Add a whole lot of files by ID.
int[] | $ids |
Definition at line 2799 of file LocalFile.php.
References $ids.
LocalFileRestoreBatch::cleanup | ( | ) |
Delete unused files in the deleted zone.
This should be called from outside the transaction in which execute() was called.
Definition at line 3125 of file LocalFile.php.
References file, and removeNonexistentFromCleanup().
|
protected |
Cleanup a failed batch.
The batch was only partially successful, so rollback by removing all items that were successfully copied.
Status | $storeStatus | |
array[] | $storeBatch |
Definition at line 3144 of file LocalFile.php.
References $cleanupBatch, $success, as, and file.
Referenced by execute().
LocalFileRestoreBatch::execute | ( | ) |
Run the transaction, except the cleanup batch.
The cleanup batch should be run in a separate transaction, because it locks different rows and there's no need to keep the image row locked while it's acquiring those locks The caller may have its own transaction open. So we save the batch and let the caller call cleanup()
Definition at line 2818 of file LocalFile.php.
References $ids, $user, $wgLang, as, cleanupFailedBatch(), File\DELETED_FILE, file, LocalRepo\getHashFromKey(), ArchivedFile\getQueryInfo(), User\newFromAnyId(), FileRepo\OVERWRITE_SAME, removeNonexistentFiles(), RepoGroup\singleton(), wfDebug(), and wfTimestamp().
|
protected |
|
protected |
|
private |
Add all revisions of the file.
Definition at line 2771 of file LocalFile.php.
|
private |
List of file IDs to restore.
Definition at line 2765 of file LocalFile.php.
Referenced by cleanupFailedBatch().
|
private |
Definition at line 2762 of file LocalFile.php.
Referenced by __construct(), removeNonexistentFiles(), and removeNonexistentFromCleanup().
|
private |
List of file IDs to restore.
Definition at line 2768 of file LocalFile.php.
|
private |
Whether to remove all settings for suppressed fields.
Definition at line 2774 of file LocalFile.php.
Referenced by __construct().