Merge "Don't check namespace in SpecialWantedtemplates"
[lhc/web/wiklou.git] / maintenance / findHooks.php
1 <?php
2 /**
3 * Simple script that try to find documented hook and hooks actually
4 * in the code and show what's missing.
5 *
6 * This script assumes that:
7 * - hooks names in hooks.txt are at the beginning of a line and single quoted.
8 * - hooks names in code are the first parameter of wfRunHooks.
9 *
10 * if --online option is passed, the script will compare the hooks in the code
11 * with the ones at http://www.mediawiki.org/wiki/Manual:Hooks
12 *
13 * Any instance of wfRunHooks that doesn't meet these parameters will be noted.
14 *
15 * Copyright © Antoine Musso
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License along
28 * with this program; if not, write to the Free Software Foundation, Inc.,
29 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
30 * http://www.gnu.org/copyleft/gpl.html
31 *
32 * @file
33 * @ingroup Maintenance
34 * @author Antoine Musso <hashar at free dot fr>
35 */
36
37 require_once __DIR__ . '/Maintenance.php';
38
39 /**
40 * Maintenance script that compares documented and actually present mismatches.
41 *
42 * @ingroup Maintenance
43 */
44 class FindHooks extends Maintenance {
45 /*
46 * Hooks that are ignored
47 */
48 protected static $ignore = array( 'testRunLegacyHooks' );
49
50 public function __construct() {
51 parent::__construct();
52 $this->mDescription = 'Find hooks that are undocumented, missing, or just plain wrong';
53 $this->addOption( 'online', 'Check against MediaWiki.org hook documentation' );
54 }
55
56 public function getDbType() {
57 return Maintenance::DB_NONE;
58 }
59
60 public function execute() {
61 global $IP;
62
63 $documented = $this->getHooksFromDoc( $IP . '/docs/hooks.txt' );
64 $potential = array();
65 $bad = array();
66
67 // TODO: Don't hardcode the list of directories
68 $pathinc = array(
69 $IP . '/',
70 $IP . '/includes/',
71 $IP . '/includes/actions/',
72 $IP . '/includes/api/',
73 $IP . '/includes/cache/',
74 $IP . '/includes/changes/',
75 $IP . '/includes/changetags/',
76 $IP . '/includes/clientpool/',
77 $IP . '/includes/content/',
78 $IP . '/includes/context/',
79 $IP . '/includes/dao/',
80 $IP . '/includes/db/',
81 $IP . '/includes/debug/',
82 $IP . '/includes/deferred/',
83 $IP . '/includes/diff/',
84 $IP . '/includes/exception/',
85 $IP . '/includes/externalstore/',
86 $IP . '/includes/filebackend/',
87 $IP . '/includes/filerepo/',
88 $IP . '/includes/filerepo/file/',
89 $IP . '/includes/gallery/',
90 $IP . '/includes/htmlform/',
91 $IP . '/includes/installer/',
92 $IP . '/includes/interwiki/',
93 $IP . '/includes/jobqueue/',
94 $IP . '/includes/json/',
95 $IP . '/includes/logging/',
96 $IP . '/includes/mail/',
97 $IP . '/includes/media/',
98 $IP . '/includes/page/',
99 $IP . '/includes/parser/',
100 $IP . '/includes/password/',
101 $IP . '/includes/rcfeed/',
102 $IP . '/includes/resourceloader/',
103 $IP . '/includes/revisiondelete/',
104 $IP . '/includes/search/',
105 $IP . '/includes/site/',
106 $IP . '/includes/skins/',
107 $IP . '/includes/specialpage/',
108 $IP . '/includes/specials/',
109 $IP . '/includes/upload/',
110 $IP . '/includes/utils/',
111 $IP . '/languages/',
112 $IP . '/maintenance/',
113 $IP . '/maintenance/language/',
114 $IP . '/tests/',
115 $IP . '/tests/parser/',
116 $IP . '/tests/phpunit/suites/',
117 );
118
119 foreach ( $pathinc as $dir ) {
120 $potential = array_merge( $potential, $this->getHooksFromPath( $dir ) );
121 $bad = array_merge( $bad, $this->getBadHooksFromPath( $dir ) );
122 }
123
124 $potential = array_unique( $potential );
125 $bad = array_diff( array_unique( $bad ), self::$ignore );
126 $todo = array_diff( $potential, $documented, self::$ignore );
127 $deprecated = array_diff( $documented, $potential, self::$ignore );
128
129 // let's show the results:
130 $this->printArray( 'Undocumented', $todo );
131 $this->printArray( 'Documented and not found', $deprecated );
132 $this->printArray( 'Unclear hook calls', $bad );
133
134 if ( count( $todo ) == 0 && count( $deprecated ) == 0 && count( $bad ) == 0 ) {
135 $this->output( "Looks good!\n" );
136 } else {
137 $this->error( 'The script finished with errors.', 1 );
138 }
139 }
140
141 /**
142 * Get the hook documentation, either locally or from MediaWiki.org
143 * @param string $doc
144 * @return array Array of documented hooks
145 */
146 private function getHooksFromDoc( $doc ) {
147 if ( $this->hasOption( 'online' ) ) {
148 return $this->getHooksFromOnlineDoc();
149 } else {
150 return $this->getHooksFromLocalDoc( $doc );
151 }
152 }
153
154 /**
155 * Get hooks from a local file (for example docs/hooks.txt)
156 * @param string $doc Filename to look in
157 * @return array Array of documented hooks
158 */
159 private function getHooksFromLocalDoc( $doc ) {
160 $m = array();
161 $content = file_get_contents( $doc );
162 preg_match_all( "/\n'(.*?)':/", $content, $m );
163
164 return array_unique( $m[1] );
165 }
166
167 /**
168 * Get hooks from www.mediawiki.org using the API
169 * @return array Array of documented hooks
170 */
171 private function getHooksFromOnlineDoc() {
172 $allhooks = $this->getHooksFromOnlineDocCategory( 'MediaWiki_hooks' );
173 $removed = $this->getHooksFromOnlineDocCategory( 'Removed_hooks' );
174 return array_diff( $allhooks, $removed );
175 }
176
177 /**
178 * @param string $title
179 * @return array
180 */
181 private function getHooksFromOnlineDocCategory( $title ) {
182 $params = array(
183 'action' => 'query',
184 'list' => 'categorymembers',
185 'cmtitle' => "Category:$title",
186 'cmlimit' => 500,
187 'format' => 'json',
188 'continue' => '',
189 );
190
191 $retval = array();
192 while ( true ) {
193 $json = Http::get( wfAppendQuery( 'http://www.mediawiki.org/w/api.php', $params ), array(), __METHOD__ );
194 $data = FormatJson::decode( $json, true );
195 foreach ( $data['query']['categorymembers'] as $page ) {
196 if ( preg_match( '/Manual\:Hooks\/([a-zA-Z0-9- :]+)/', $page['title'], $m ) ) {
197 $retval[] = str_replace( ' ', '_', $m[1] );
198 }
199 }
200 if ( !isset( $data['continue'] ) ) {
201 return $retval;
202 }
203 $params = array_replace( $params, $data['continue'] );
204 }
205 }
206
207 /**
208 * Get hooks from a PHP file
209 * @param string $file Full filename to the PHP file.
210 * @return array Array of hooks found
211 */
212 private function getHooksFromFile( $file ) {
213 $content = file_get_contents( $file );
214 $m = array();
215 preg_match_all(
216 '/(?:wfRunHooks|Hooks\:\:run|ContentHandler\:\:runLegacyHooks)\(\s*([\'"])(.*?)\1/',
217 $content,
218 $m
219 );
220
221 return $m[2];
222 }
223
224 /**
225 * Get hooks from the source code.
226 * @param string $path Directory where the include files can be found
227 * @return array Array of hooks found
228 */
229 private function getHooksFromPath( $path ) {
230 $hooks = array();
231 $dh = opendir( $path );
232 if ( $dh ) {
233 while ( ( $file = readdir( $dh ) ) !== false ) {
234 if ( filetype( $path . $file ) == 'file' ) {
235 $hooks = array_merge( $hooks, $this->getHooksFromFile( $path . $file ) );
236 }
237 }
238 closedir( $dh );
239 }
240
241 return $hooks;
242 }
243
244 /**
245 * Get bad hooks (where the hook name could not be determined) from a PHP file
246 * @param string $file Full filename to the PHP file.
247 * @return array Array of bad wfRunHooks() lines
248 */
249 private function getBadHooksFromFile( $file ) {
250 $content = file_get_contents( $file );
251 $m = array();
252 # We want to skip the "function wfRunHooks()" one. :)
253 preg_match_all( '/(?<!function )wfRunHooks\(\s*[^\s\'"].*/', $content, $m );
254 $list = array();
255 foreach ( $m[0] as $match ) {
256 $list[] = $match . "(" . $file . ")";
257 }
258
259 return $list;
260 }
261
262 /**
263 * Get bad hooks from the source code.
264 * @param string $path Directory where the include files can be found
265 * @return array Array of bad wfRunHooks() lines
266 */
267 private function getBadHooksFromPath( $path ) {
268 $hooks = array();
269 $dh = opendir( $path );
270 if ( $dh ) {
271 while ( ( $file = readdir( $dh ) ) !== false ) {
272 # We don't want to read this file as it contains bad calls to wfRunHooks()
273 if ( filetype( $path . $file ) == 'file' && !$path . $file == __FILE__ ) {
274 $hooks = array_merge( $hooks, $this->getBadHooksFromFile( $path . $file ) );
275 }
276 }
277 closedir( $dh );
278 }
279
280 return $hooks;
281 }
282
283 /**
284 * Nicely output the array
285 * @param string $msg A message to show before the value
286 * @param array $arr
287 * @param bool $sort Whether to sort the array (Default: true)
288 */
289 private function printArray( $msg, $arr, $sort = true ) {
290 if ( $sort ) {
291 asort( $arr );
292 }
293
294 foreach ( $arr as $v ) {
295 $this->output( "$msg: $v\n" );
296 }
297 }
298 }
299
300 $maintClass = 'FindHooks';
301 require_once RUN_MAINTENANCE_IF_MAIN;