MediaWiki REL1_33
jsparse.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
32 public $errs = 0;
33
34 public function __construct() {
35 parent::__construct();
36 $this->addDescription( 'Runs parsing/syntax checks on JavaScript files' );
37 $this->addArg( 'file(s)', 'JavaScript file to test', false );
38 }
39
40 public function execute() {
41 if ( $this->hasArg( 0 ) ) {
42 $files = $this->mArgs;
43 } else {
44 $this->maybeHelp( true ); // @todo fixme this is a lame API :)
45 exit( 1 ); // it should exit from the above first...
46 }
47
48 $parser = new JSParser();
49 foreach ( $files as $filename ) {
50 Wikimedia\suppressWarnings();
51 $js = file_get_contents( $filename );
52 Wikimedia\restoreWarnings();
53 if ( $js === false ) {
54 $this->output( "$filename ERROR: could not read file\n" );
55 $this->errs++;
56 continue;
57 }
58
59 try {
60 $parser->parse( $js, $filename, 1 );
61 } catch ( Exception $e ) {
62 $this->errs++;
63 $this->output( "$filename ERROR: " . $e->getMessage() . "\n" );
64 continue;
65 }
66
67 $this->output( "$filename OK\n" );
68 }
69
70 if ( $this->errs > 0 ) {
71 exit( 1 );
72 }
73 }
74}
75
76$maintClass = JSParseHelper::class;
77require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script to test JavaScript validity using JsMinPlus' parser.
Definition jsparse.php:31
execute()
Do the actual work.
Definition jsparse.php:40
__construct()
Default constructor.
Definition jsparse.php:34
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
output( $out, $channel=null)
Throw some output to the user.
hasArg( $argId=0)
Does a given argument exist?
addDescription( $text)
Set the description text.
maybeHelp( $force=false)
Maybe show the help.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
Definition hooks.txt:1834
returning false will NOT prevent logging $e
Definition hooks.txt:2175
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:37
$maintClass
Definition jsparse.php:76
require_once RUN_MAINTENANCE_IF_MAIN