27 require_once __DIR__ .
'/Maintenance.php';
28 require_once __DIR__ .
'/../includes/export/DumpFilter.php';
79 parent::__construct();
80 $this->stderr = fopen(
"php://stderr",
"wt" );
94 $this->
addOption(
'plugin',
'Load a dump plugin class. Specify as <class>[:<file>].',
95 false,
true,
false,
true );
96 $this->
addOption(
'output',
'Begin a filtered output stream; Specify as <type>:<file>. ' .
97 '<type>s: file, gzip, bzip2, 7zip, dbzip2',
false,
true,
false,
true );
98 $this->
addOption(
'filter',
'Add a filter on an output branch. Specify as ' .
99 '<type>[:<options>]. <types>s: latest, notalk, namespace',
false,
true,
false,
true );
100 $this->
addOption(
'report',
'Report position and speed after every n pages processed. ' .
101 'Default: 100.',
false,
true );
102 $this->
addOption(
'server',
'Force reading from MySQL server',
false,
true );
103 $this->
addOption(
'7ziplevel',
'7zip compression level for all 7zip outputs. Used for ' .
104 '-mx option to 7za command.',
false,
true );
119 $this->outputTypes[
$name] = $class;
127 $this->filterTypes[
$name] = $class;
141 $register = [ $class,
'register' ];
142 call_user_func_array( $register, [ $this ] );
146 throw new MWException(
'execute() must be overridden in subclasses' );
163 $val = explode(
':', $param );
165 if ( count( $val ) === 1 ) {
167 } elseif ( count( $val ) === 2 ) {
170 $this->
fatalError(
'Invalid plugin parameter' );
176 $split = explode(
':', $param, 2 );
177 if ( count( $split ) !== 2 ) {
178 $this->
fatalError(
'Invalid output parameter' );
181 if ( !is_null(
$sink ) ) {
184 if ( !isset( $this->outputTypes[
$type] ) ) {
185 $this->
fatalError(
"Unrecognized output sink type '$type'" );
187 $class = $this->outputTypes[
$type];
188 if ( $type ===
"7zip" ) {
189 $sink =
new $class( $file, intval( $this->
getOption(
'7ziplevel' ) ) );
191 $sink =
new $class( $file );
196 if ( is_null(
$sink ) ) {
200 $split = explode(
':', $param );
203 if ( !isset( $this->filterTypes[$key] ) ) {
204 $this->
fatalError(
"Unrecognized filter type '$key'" );
207 $type = $this->filterTypes[$key];
209 if ( count( $split ) === 1 ) {
211 } elseif ( count( $split ) === 2 ) {
214 $this->
fatalError(
'Invalid filter parameter' );
226 $this->reportingInterval = intval( $this->
getOption(
'report' ) );
233 if ( is_null(
$sink ) ) {
238 if ( count( $sinks ) > 1 ) {
246 # Notice messages will foul up your XML output even if they're
247 # relatively harmless.
248 if ( ini_get(
'display_errors' ) ) {
249 ini_set(
'display_errors',
'stderr' );
260 $exporter->setOutputSink( $wrapper );
262 if ( !$this->skipHeader ) {
263 $exporter->openStream();
265 # Log item dumps: all or by range
267 if ( $this->startId || $this->endId ) {
268 $exporter->logsByRange( $this->startId, $this->endId );
270 $exporter->allLogs();
272 } elseif ( is_null( $this->
pages ) ) {
273 # Page dumps: all or by page ID range
274 if ( $this->startId || $this->endId ) {
275 $exporter->pagesByRange( $this->startId, $this->endId, $this->orderRevs );
276 } elseif ( $this->revStartId || $this->revEndId ) {
277 $exporter->revsByRange( $this->revStartId, $this->revEndId );
279 $exporter->allPages();
282 # Dump of specific pages
283 $exporter->pagesByName( $this->
pages );
286 if ( !$this->skipFooter ) {
287 $exporter->closeStream();
304 if ( $this->forcedDb === null ) {
307 $this->maxCount =
$dbr->selectField( $table,
"MAX($field)",
'', __METHOD__ );
308 $this->startTime = microtime(
true );
309 $this->lastTime = $this->startTime;
310 $this->ID = getmypid();
320 if ( $this->forcedDb !== null ) {
325 $db = $this->lb->getConnection(
DB_REPLICA,
'dump' );
329 $db->setSessionOptions( [
'connTimeout' => 3600 * 24 ] );
342 parent::setDB( $db );
343 $this->forcedDb = $db;
347 if ( isset( $this->lb ) ) {
348 $this->lb->closeAll();
370 if ( $final xor ( $this->
revCount % $this->reportingInterval == 0 ) ) {
376 if ( $this->reporting ) {
378 $nowts = microtime(
true );
379 $deltaAll = $nowts - $this->startTime;
385 $portion = $this->
revCount / $this->maxCount;
386 $eta = $this->startTime + $deltaAll / $portion;
388 $pageRate = $this->pageCount / $deltaAll;
389 $revRate = $this->
revCount / $deltaAll;
396 $pageRatePart = $this->pageCountPart / $deltaPart;
397 $revRatePart = $this->revCountPart / $deltaPart;
403 "%s: %s (ID %d) %d pages (%0.1f|%0.1f/sec all|curr), "
404 .
"%d revs (%0.1f|%0.1f/sec all|curr), ETA %s [max %d]",
405 $now,
wfWikiID(), $this->ID, $this->pageCount, $pageRate,
406 $pageRatePart, $this->
revCount, $revRate, $revRatePart, $etats,
409 $this->lastTime = $nowts;
415 if ( $this->reporting ) {
416 fwrite( $this->stderr, $string .
"\n" );
421 $this->
error(
"$msg\n", 1 );
427 parent::__construct(
$sink );
428 $this->progress = $progress;
432 parent::writeClosePage( $string );
433 $this->progress->reportPage();
437 parent::writeRevision(
$rev, $string );
438 $this->progress->revCount();
setDB(IDatabase $db=null)
Force the dump to use the provided database connection for database operations, wherever possible...
processOptions()
Processes arguments and sets $this->$sink accordingly.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
array $orderedOptions
Used to read the options in the order they were passed.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
$wgDBserver
Database host name or IP address.
hasOption($name)
Checks to see if a particular param exists.
when a variable name is used in a it is silently declared as a new local masking the global
DumpOutput $sink
FIXME will need to be made protected whenever legacy code is updated.
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
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
getOption($name, $default=null)
Get an option, or return the default.
loadWithArgv($argv)
Load params and arguments from a given array of command-line arguments.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
wfGetLBFactory()
Get the load balancer factory object.
The ContentHandler facility adds support for arbitrary content types on wiki pages
writeRevision($rev, $string)
registerFilter($name, $class)
error($err, $die=0)
Throw an error to the user.
initProgress($history=WikiExporter::FULL)
Initialise starting time and maximum revision count.
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break but it is *strongly *advised not to try any more intrusive changes to get MediaWiki to conform more closely to your filesystem hierarchy Any such attempt will almost certainly result in unnecessary bugs The standard recommended location to install relative to the web is it should be possible to enable the appropriate rewrite rules by if you can reconfigure the web server
__construct(&$sink, &$progress)
registerOutput($name, $class)
loadPlugin($class, $file)
Load a plugin and register it.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
const TS_DB
MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
Basic database interface for live and lazy-loaded relation database handles.
DatabaseBase null $forcedDb
The dependency-injected database to use.
dump($history, $text=WikiExporter::TEXT)
Allows to change the fields on the form that will be generated $name