MediaWiki REL1_31
dumpRev.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/../Maintenance.php';
25
32class DumpRev extends Maintenance {
33 public function __construct() {
34 parent::__construct();
35 $this->addArg( 'rev-id', 'Revision ID', true );
36 }
37
38 public function execute() {
39 $dbr = $this->getDB( DB_REPLICA );
40 $row = $dbr->selectRow(
41 [ 'text', 'revision' ],
42 [ 'old_flags', 'old_text' ],
43 [ 'old_id=rev_text_id', 'rev_id' => $this->getArg() ]
44 );
45 if ( !$row ) {
46 $this->fatalError( "Row not found" );
47 }
48
49 $flags = explode( ',', $row->old_flags );
50 $text = $row->old_text;
51 if ( in_array( 'external', $flags ) ) {
52 $this->output( "External $text\n" );
53 if ( preg_match( '!^DB://(\w+)/(\w+)/(\w+)$!', $text, $m ) ) {
54 $es = ExternalStore::getStoreObject( 'DB' );
55 $blob = $es->fetchBlob( $m[1], $m[2], $m[3] );
56 if ( strtolower( get_class( $blob ) ) == 'concatenatedgziphistoryblob' ) {
57 $this->output( "Found external CGZ\n" );
58 $blob->uncompress();
59 $this->output( "Items: (" . implode( ', ', array_keys( $blob->mItems ) ) . ")\n" );
60 $text = $blob->getItem( $m[3] );
61 } else {
62 $this->output( "CGZ expected at $text, got " . gettype( $blob ) . "\n" );
63 $text = $blob;
64 }
65 } else {
66 $this->output( "External plain $text\n" );
67 $text = ExternalStore::fetchFromURL( $text );
68 }
69 }
70 if ( in_array( 'gzip', $flags ) ) {
71 $text = gzinflate( $text );
72 }
73 if ( in_array( 'object', $flags ) ) {
74 $obj = unserialize( $text );
75 $text = $obj->getText();
76 }
77
78 if ( is_object( $text ) ) {
79 $this->error( "Unexpectedly got object of type: " . get_class( $text ) );
80 } else {
81 $this->output( "Text length: " . strlen( $text ) . "\n" );
82 $this->output( substr( $text, 0, 100 ) . "\n" );
83 }
84 }
85}
86
87$maintClass = DumpRev::class;
88require_once RUN_MAINTENANCE_IF_MAIN;
unserialize( $serialized)
Maintenance script that gets the text of a revision, resolving external storage if needed.
Definition dumpRev.php:32
execute()
Do the actual work.
Definition dumpRev.php:38
__construct()
Default constructor.
Definition dumpRev.php:33
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
getArg( $argId=0, $default=null)
Get an argument.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
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
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition hooks.txt:2612
$maintClass
Definition dumpRev.php:87
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25