MediaWiki  1.23.12
dumpUploads.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
32 class UploadDumper extends Maintenance {
33  public function __construct() {
34  parent::__construct();
35  $this->mDescription = "Generates list of uploaded files which can be fed to tar or similar.
36 By 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' );
41  }
42 
43  public function execute() {
44  global $IP;
45  $this->mAction = 'fetchLocal';
46  $this->mBasePath = $this->getOption( 'base', $IP );
47  $this->mShared = false;
48  $this->mSharedSupplement = false;
49 
50  if ( $this->hasOption( 'local' ) ) {
51  $this->mAction = 'fetchLocal';
52  }
53 
54  if ( $this->hasOption( 'used' ) ) {
55  $this->mAction = 'fetchUsed';
56  }
57 
58  if ( $this->hasOption( 'shared' ) ) {
59  if ( $this->hasOption( 'used' ) ) {
60  // Include shared-repo files in the used check
61  $this->mShared = true;
62  } else {
63  // Grab all local *plus* used shared
64  $this->mSharedSupplement = true;
65  }
66  }
67  $this->{ $this->mAction } ( $this->mShared );
68  if ( $this->mSharedSupplement ) {
69  $this->fetchUsed( true );
70  }
71  }
72 
78  function fetchUsed( $shared ) {
79  $dbr = wfGetDB( DB_SLAVE );
80  $image = $dbr->tableName( 'image' );
81  $imagelinks = $dbr->tableName( 'imagelinks' );
82 
83  $sql = "SELECT DISTINCT il_to, img_name
84  FROM $imagelinks
85  LEFT OUTER JOIN $image
86  ON il_to=img_name";
87  $result = $dbr->query( $sql );
88 
89  foreach ( $result as $row ) {
90  $this->outputItem( $row->il_to, $shared );
91  }
92  }
93 
99  function fetchLocal( $shared ) {
100  $dbr = wfGetDB( DB_SLAVE );
101  $result = $dbr->select( 'image',
102  array( 'img_name' ),
103  '',
104  __METHOD__ );
105 
106  foreach ( $result as $row ) {
107  $this->outputItem( $row->img_name, $shared );
108  }
109  }
110 
111  function outputItem( $name, $shared ) {
112  $file = wfFindFile( $name );
113  if ( $file && $this->filterItem( $file, $shared ) ) {
114  $filename = $file->getPath();
115  $rel = wfRelativePath( $filename, $this->mBasePath );
116  $this->output( "$rel\n" );
117  } else {
118  wfDebug( __METHOD__ . ": base file? $name\n" );
119  }
120  }
121 
122  function filterItem( $file, $shared ) {
123  return $shared || $file->isLocal();
124  }
125 }
126 
127 $maintClass = "UploadDumper";
128 require_once RUN_MAINTENANCE_IF_MAIN;
UploadDumper\execute
execute()
Do the actual work.
Definition: dumpUploads.php:43
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. $title:Title object for the current page $request:WebRequest $ignoreRedirect:boolean to skip redirect check $target:Title/string of redirect target $article:Article object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) $article:article(object) being checked 'IsTrustedProxy':Override the result of wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of User::isValidEmailAddr(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetMagic':DEPRECATED, use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetSpecialPageAliases':DEPRECATED, use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1528
$maintClass
$maintClass
Definition: dumpUploads.php:127
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
wfGetDB
& wfGetDB( $db, $groups=array(), $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3706
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false)
Add a parameter to the script.
Definition: Maintenance.php:169
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
UploadDumper\fetchUsed
fetchUsed( $shared)
Fetch a list of used images from a particular image source.
Definition: dumpUploads.php:78
$dbr
$dbr
Definition: testCompression.php:48
UploadDumper\outputItem
outputItem( $name, $shared)
Definition: dumpUploads.php:111
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
UploadDumper\__construct
__construct()
Default constructor.
Definition: dumpUploads.php:33
UploadDumper\filterItem
filterItem( $file, $shared)
Definition: dumpUploads.php:122
UploadDumper
Maintenance script to dump a the list of files uploaded, for feeding to tar or similar.
Definition: dumpUploads.php:32
wfDebug
wfDebug( $text, $dest='all')
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:980
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:336
UploadDumper\fetchLocal
fetchLocal( $shared)
Fetch a list of all images from a particular image source.
Definition: dumpUploads.php:99
$file
if(PHP_SAPI !='cli') $file
Definition: UtfNormalTest2.php:30
DB_SLAVE
const DB_SLAVE
Definition: Defines.php:55
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:191
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
wfFindFile
wfFindFile( $title, $options=array())
Find a file.
Definition: GlobalFunctions.php:3749
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:314
wfRelativePath
wfRelativePath( $path, $from)
Generate a relative path name to the given file.
Definition: GlobalFunctions.php:3373
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular param exists.
Definition: Maintenance.php:181
$IP
$IP
Definition: WebStart.php:88