MediaWiki  1.28.1
preprocessDump.php
Go to the documentation of this file.
1 <?php
28 require_once __DIR__ . '/dumpIterator.php';
29 
37 
38  /* Variables for dressing up as a parser */
39  public $mTitle = 'PreprocessDump';
40  public $mPPNodeCount = 0;
41 
42  public function getStripList() {
44 
45  return $wgParser->getStripList();
46  }
47 
48  public function __construct() {
49  parent::__construct();
50  $this->addOption( 'cache', 'Use and populate the preprocessor cache.', false, false );
51  $this->addOption( 'preprocessor', 'Preprocessor to use.', false, false );
52  }
53 
54  public function getDbType() {
55  return Maintenance::DB_NONE;
56  }
57 
58  public function checkOptions() {
59  global $wgParser, $wgParserConf, $wgPreprocessorCacheThreshold;
60 
61  if ( !$this->hasOption( 'cache' ) ) {
62  $wgPreprocessorCacheThreshold = false;
63  }
64 
65  if ( $this->hasOption( 'preprocessor' ) ) {
66  $name = $this->getOption( 'preprocessor' );
67  } elseif ( isset( $wgParserConf['preprocessorClass'] ) ) {
68  $name = $wgParserConf['preprocessorClass'];
69  } else {
70  $name = 'Preprocessor_DOM';
71  }
72 
73  $wgParser->firstCallInit();
74  $this->mPreprocessor = new $name( $this );
75  }
76 
81  public function processRevision( $rev ) {
82  $content = $rev->getContent( Revision::RAW );
83 
84  if ( $content->getModel() !== CONTENT_MODEL_WIKITEXT ) {
85  return;
86  }
87 
88  try {
89  $this->mPreprocessor->preprocessToObj( strval( $content->getNativeData() ), 0 );
90  } catch ( Exception $e ) {
91  $this->error( "Caught exception " . $e->getMessage() . " in "
92  . $rev->getTitle()->getPrefixedText() );
93  }
94  }
95 }
96 
97 $maintClass = "PreprocessDump";
98 require_once RUN_MAINTENANCE_IF_MAIN;
const DB_NONE
Constants for DB access type.
Definition: Maintenance.php:57
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:239
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
Definition: hooks.txt:2102
$wgParser
Definition: Setup.php:821
hasOption($name)
Checks to see if a particular param exists.
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
$maintClass
Maintenance script that takes page text out of an XML dump file and preprocesses it to obj...
Base class for interating over a dump.
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
Definition: hooks.txt:1721
const RAW
Definition: Revision.php:94
getOption($name, $default=null)
Get an option, or return the default.
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
Definition: injection.txt:35
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 $content
Definition: hooks.txt:1046
error($err, $die=0)
Throw an error to the user.
processRevision($rev)
Callback function for each revision, preprocessToObj()
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:300