PortableInfobox/includes/services/Parser/MediaWikiParserService.php

91 lines
2.5 KiB
PHP
Raw Normal View History

<?php
2021-06-02 17:55:12 +00:00
namespace PortableInfobox\Parser;
2021-06-02 17:55:12 +00:00
use MediaWiki\MediaWikiServices;
class MediaWikiParserService implements ExternalParser {
protected $parser;
protected $frame;
protected $localParser;
2018-08-16 13:59:49 +00:00
protected $tidyDriver;
2018-08-27 12:23:23 +00:00
protected $cache = [];
public function __construct( \Parser $parser, \PPFrame $frame ) {
global $wgPortableInfoboxUseTidy;
2018-08-16 13:59:49 +00:00
$this->parser = $parser;
$this->frame = $frame;
2018-08-16 13:59:49 +00:00
2018-08-26 10:13:26 +00:00
if ( $wgPortableInfoboxUseTidy && class_exists( '\MediaWiki\Tidy\RemexDriver' ) ) {
if ( version_compare( MW_VERSION, '1.36', '>=' ) ) {
2021-06-02 17:55:12 +00:00
$this->tidyDriver = MediaWikiServices::getInstance()->getTidy();
} else {
$this->tidyDriver = \MWTidy::factory( [
'driver' => 'RemexHtml',
'pwrap' => false
] );
}
2018-08-16 13:59:49 +00:00
}
}
2015-05-07 11:54:26 +00:00
/**
* Method used for parsing wikitext provided in infobox that might contain variables
*
2018-08-16 09:25:53 +00:00
* @param string $wikitext
*
* @return string HTML outcome
2015-05-07 11:54:26 +00:00
*/
public function parseRecursive( $wikitext ) {
2018-10-02 07:41:19 +00:00
if ( isset( $this->cache[$wikitext] ) ) {
2018-08-27 12:23:23 +00:00
return $this->cache[$wikitext];
}
$parsed = $wikitext ? $this->parser->internalParse( $wikitext, false, $this->frame ) : null;
if ( in_array( substr( $parsed, 0, 1 ), [ '*', '#' ] ) ) {
//fix for first item list elements
$parsed = "\n" . $parsed;
}
$output = $this->parser->doBlockLevels( $parsed, false );
$ready = $this->parser->mStripState->unstripBoth( $output );
$this->parser->replaceLinkHolders( $ready );
2018-08-16 13:59:49 +00:00
if ( isset( $this->tidyDriver ) ) {
$ready = $this->tidyDriver->tidy( $ready );
}
2015-05-07 11:48:57 +00:00
$newlinesstripped = preg_replace( '|[\n\r]|Us', '', $ready );
$marksstripped = preg_replace( '|{{{.*}}}|Us', '', $newlinesstripped );
2018-08-27 12:23:23 +00:00
$this->cache[$wikitext] = $marksstripped;
return $marksstripped;
}
public function replaceVariables( $wikitext ) {
$output = $this->parser->replaceVariables( $wikitext, $this->frame );
return $output;
}
/**
* Add image to parser output for later usage
*
* @param \Title $title
*/
public function addImage( $title ) {
$file = wfFindFile( $title );
$tmstmp = $file ? $file->getTimestamp() : null;
$sha1 = $file ? $file->getSha1() : null;
$this->parser->getOutput()->addImage( $title->getDBkey(), $tmstmp, $sha1 );
// Pass PI images to PageImages extension if available (Popups and og:image)
2018-12-28 00:00:33 +00:00
if ( \method_exists(
'\PageImages\Hooks\ParserFileProcessingHookHandlers', 'onParserMakeImageParams'
) ) {
$params = [];
\PageImages\Hooks\ParserFileProcessingHookHandlers::onParserMakeImageParams(
$title, $file, $params, $this->parser
);
}
}
}