MediaWiki  1.29.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;
PreprocessDump
Maintenance script that takes page text out of an XML dump file and preprocesses it to obj.
Definition: preprocessDump.php:36
$wgParser
$wgParser
Definition: Setup.php:796
PreprocessDump\$mPPNodeCount
$mPPNodeCount
Definition: preprocessDump.php:40
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
CONTENT_MODEL_WIKITEXT
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:233
PreprocessDump\__construct
__construct()
Default constructor.
Definition: preprocessDump.php:48
php
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
PreprocessDump\getStripList
getStripList()
Definition: preprocessDump.php:42
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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:1049
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
PreprocessDump\checkOptions
checkOptions()
Definition: preprocessDump.php:58
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
PreprocessDump\getDbType
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
Definition: preprocessDump.php:54
$maintClass
$maintClass
Definition: preprocessDump.php:97
PreprocessDump\$mTitle
$mTitle
Definition: preprocessDump.php:39
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2122
Revision\RAW
const RAW
Definition: Revision.php:100
Maintenance\DB_NONE
const DB_NONE
Constants for DB access type.
Definition: Maintenance.php:62
DumpIterator
Base class for interating over a dump.
Definition: dumpIterator.php:36
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
$rev
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:1741
Maintenance\error
error( $err, $die=0)
Throw an error to the user.
Definition: Maintenance.php:392
PreprocessDump\processRevision
processRevision( $rev)
Callback function for each revision, preprocessToObj()
Definition: preprocessDump.php:81
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular param exists.
Definition: Maintenance.php:236