24require_once __DIR__ .
'/Maintenance.php';
34 parent::__construct();
35 $this->
addDescription(
'Generates list of uploaded files which can be fed to tar or similar.
36By default, outputs relative paths against the parent directory of $wgUploadDirectory.' );
37 $this->
addOption(
'base',
'Set base relative path instead of wiki include root',
false,
true );
38 $this->
addOption(
'local',
'List all local files, used or not. No shared files included' );
39 $this->
addOption(
'used',
'Skip local images that are not used' );
40 $this->
addOption(
'shared',
'Include images used from shared repository' );
45 $this->mAction =
'fetchLocal';
46 $this->mBasePath = $this->
getOption(
'base', $IP );
47 $this->mShared =
false;
48 $this->mSharedSupplement =
false;
51 $this->mAction =
'fetchLocal';
55 $this->mAction =
'fetchUsed';
61 $this->mShared =
true;
64 $this->mSharedSupplement =
true;
67 $this->{$this->mAction} ( $this->mShared );
68 if ( $this->mSharedSupplement ) {
81 $imagelinks =
$dbr->tableName(
'imagelinks' );
83 $sql =
"SELECT DISTINCT il_to, img_name
85 LEFT OUTER JOIN $image
87 $result =
$dbr->query( $sql );
89 foreach ( $result as $row ) {
101 $result =
$dbr->select(
'image',
106 foreach ( $result as $row ) {
113 if ( $file && $this->
filterItem( $file, $shared ) ) {
114 $filename = $file->getLocalRefPath();
116 $this->
output(
"$rel\n" );
118 wfDebug( __METHOD__ .
": base file? $name\n" );
123 return $shared || $file->isLocal();
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfFindFile( $title, $options=[])
Find a file.
wfRelativePath( $path, $from)
Generate a relative path name to the given file.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular param exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
Maintenance script to dump a the list of files uploaded, for feeding to tar or similar.
execute()
Do the actual work.
fetchUsed( $shared)
Fetch a list of used images from a particular image source.
outputItem( $name, $shared)
filterItem( $file, $shared)
fetchLocal( $shared)
Fetch a list of all images from a particular image source.
__construct()
Default constructor.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check $image
require_once RUN_MAINTENANCE_IF_MAIN