3 * CLI script to easily parse some wikitext.
4 * Wikitext can be given by stdin or using a file. The wikitext will be parsed
5 * using 'CLIParser' as a title. This can be overriden with --title option.
9 * $ php parse.php --title foo
11 * <p><i><strong class="selflink">foo</strong></i>
17 * $ echo "'''bold'''" > /tmp/foo.txt
18 * $ php parse.php /tmp/foo.txt
25 * $ cat /tmp/foo | php parse.php
30 * @ingroup Maintenance
31 * @author Antoine Musso <hashar at free dot fr>
32 * @license GNU General Public License 2.0 or later
34 require_once( dirname(__FILE__
) . '/Maintenance.php' );
36 class CLIParser
extends Maintenance
{
39 public function __construct() {
40 parent
::__construct();
41 $this->mDescription
= "Parse a given wikitext";
42 $this->addOption( 'title', 'Title name for the given wikitext (Default: \'CLIParser\')', false, true );
43 $this->addArg( 'file', 'File containing wikitext (Default: stdin)', false );
46 public function execute() {
48 print $this->render( $this->WikiText() );
52 * @param string $wikitext Wikitext to get rendered
53 * @return string HTML Rendering
55 public function render( $wikitext ) {
56 return $this->parse( $wikitext )->getText();
60 * Get wikitext from a the file passed as argument or STDIN
61 * @return string Wikitext
63 protected function Wikitext() {
65 $php_stdin = 'php://stdin';
66 $input_file = $this->getArg( 0, $php_stdin );
68 if( $input_file === $php_stdin ) {
69 $this->error( basename(__FILE__
) .": warning: reading wikitext from STDIN\n" );
72 return file_get_contents( $input_file );
75 protected function initParser() {
77 $parserClass = $wgParserConf['class'];
78 $this->parser
= new $parserClass();
82 * Title object to use for CLI parsing.
83 * Default title is 'CLIParser', it can be overriden with the option
84 * --title <Your:Title>
86 * @return Title object
88 protected function getTitle( ) {
90 $this->getOption( 'title' )
91 ?
$this->getOption( 'title' )
93 return Title
::newFromText( $title );
97 * @param string $wikitext Wikitext to parse
98 * @return ParserOutput
100 protected function parse( $wikitext ) {
101 return $this->parser
->parse(
104 , new ParserOptions()
109 $maintClass = "CLIParser";
110 require_once( RUN_MAINTENANCE_IF_MAIN
);