mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 04:22:37 +00:00
73 lines
1.8 KiB
PHP
73 lines
1.8 KiB
PHP
<?php
|
|
namespace Wikia\PortableInfobox\Parser;
|
|
|
|
class MediaWikiParserService implements ExternalParser {
|
|
|
|
protected $parser;
|
|
protected $frame;
|
|
protected $localParser;
|
|
|
|
public function __construct( \Parser $parser, \PPFrame $frame ) {
|
|
$this->parser = $parser;
|
|
$this->frame = $frame;
|
|
}
|
|
|
|
/**
|
|
* Method used for parsing wikitext provided through variable
|
|
*
|
|
* @param $wikitext
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function parse( $wikitext ) {
|
|
wfProfileIn( __METHOD__ );
|
|
if ( in_array( substr( $wikitext, 0, 1 ), [ '*', '#' ] ) ) {
|
|
//fix for first item list elements
|
|
$wikitext = "\n" . $wikitext;
|
|
}
|
|
$parsed = $this->parser->internalParse( $wikitext, false, $this->frame );
|
|
$output = $this->parser->doBlockLevels( $parsed, false );
|
|
$this->parser->replaceLinkHolders( $output );
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Method used for parsing wikitext provided in infobox that might contain variables
|
|
*
|
|
* @param $wikitext
|
|
*
|
|
* @return string HTML outcome
|
|
*/
|
|
public function parseRecursive( $wikitext ) {
|
|
wfProfileIn( __METHOD__ );
|
|
$parsed = $this->parse( $wikitext );
|
|
$ready = $this->parser->mStripState->unstripBoth( $parsed );
|
|
$newlinesstripped = preg_replace( '|[\n\r]|Us', '', $ready );
|
|
$marksstripped = preg_replace( '|{{{.*}}}|Us', '', $newlinesstripped );
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
return $marksstripped;
|
|
}
|
|
|
|
public function replaceVariables( $wikitext ) {
|
|
$output = $this->parser->replaceVariables( $wikitext, $this->frame );
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Add image to parser output for later usage
|
|
*
|
|
* @param string $title
|
|
*/
|
|
public function addImage( $title ) {
|
|
$file = wfFindFile( $title );
|
|
$tmstmp = $file ? $file->getTimestamp() : false;
|
|
$sha1 = $file ? $file->getSha1() : false;
|
|
$this->parser->getOutput()->addImage( $title, $tmstmp, $sha1 );
|
|
}
|
|
}
|