1 | <?php |
||
52 | class Setup { |
||
53 | |||
54 | /** |
||
55 | * @var array |
||
56 | */ |
||
57 | const AVAILABLE_HOOKS = [ |
||
58 | 'GalleryGetModes', 'ImageBeforeProduceHTML', 'InternalParseBeforeLinks', |
||
59 | 'ParserBeforeTidy', 'ParserFirstCallInit', 'ScribuntoExternalLibraries', |
||
60 | 'SetupAfterCache' |
||
61 | ]; |
||
62 | |||
63 | /** |
||
64 | * @var ComponentLibrary $componentLibrary |
||
65 | */ |
||
66 | private $componentLibrary; |
||
67 | |||
68 | /** |
||
69 | * @var \Config $myConfig |
||
70 | */ |
||
71 | private $myConfig; |
||
72 | |||
73 | /** |
||
74 | * @var NestingController $nestingController |
||
75 | */ |
||
76 | private $nestingController; |
||
77 | |||
78 | /** |
||
79 | * Callback function when extension is loaded via extension.json or composer. |
||
80 | * |
||
81 | * Note: With this we omit hook registration in extension.json and define our own here |
||
82 | * to better allow for unit testing. |
||
83 | * |
||
84 | * @param array $info |
||
85 | * |
||
86 | * @throws \ConfigException cascading {@see Setup::run} |
||
87 | * @throws \MWException cascading {@see Setup::__construct()} and {@see Setup::run} |
||
88 | * |
||
89 | * @return bool |
||
90 | */ |
||
91 | 1 | public static function onExtensionLoad( $info ) { |
|
97 | |||
98 | /** |
||
99 | * Setup constructor. |
||
100 | * |
||
101 | * @param $info |
||
102 | * |
||
103 | * @throws \ConfigException cascading {@see \BootstrapComponents\Setup::getHooksToRegister} |
||
104 | * @throws \MWException cascading {@see \BootstrapComponents\Setup::getHooksToRegister} |
||
105 | * |
||
106 | */ |
||
107 | 47 | public function __construct( $info ) { |
|
121 | |||
122 | /** |
||
123 | * @param array $hooksToRegister |
||
124 | * |
||
125 | * @return array |
||
126 | */ |
||
127 | 40 | public function buildHookCallbackListFor( $hooksToRegister ) { |
|
139 | |||
140 | /** |
||
141 | * @throws \MWException cascading {@see \Hooks::clear} |
||
142 | */ |
||
143 | 21 | public function clear() { |
|
148 | |||
149 | /** |
||
150 | * @param \Config $myConfig |
||
151 | * |
||
152 | * @throws \ConfigException cascading {@see \Config::get} |
||
153 | * |
||
154 | * @return string[] |
||
155 | */ |
||
156 | 6 | public function compileRequestedHooksListFor( $myConfig ) { |
|
171 | |||
172 | /** |
||
173 | * @param \Config $myConfig |
||
174 | * @param ComponentLibrary $componentLibrary |
||
175 | * @param NestingController $nestingController |
||
176 | * |
||
177 | * @return \Closure[] |
||
178 | */ |
||
179 | 41 | public function getCompleteHookDefinitionList( $myConfig, $componentLibrary, $nestingController ) { |
|
180 | return [ |
||
181 | /** |
||
182 | * Hook: GalleryGetModes |
||
183 | * |
||
184 | * Allows extensions to add classes that can render different modes of a gallery. |
||
185 | * |
||
186 | * @see https://www.mediawiki.org/wiki/Manual:Hooks/GalleryGetModes |
||
187 | */ |
||
188 | 'GalleryGetModes' => function( &$modeArray ) { |
||
189 | 2 | $modeArray['carousel'] = 'BootstrapComponents\\CarouselGallery'; |
|
190 | 2 | return true; |
|
191 | 41 | }, |
|
192 | |||
193 | /** |
||
194 | * Hook: ImageBeforeProduceHTML |
||
195 | * |
||
196 | * Called before producing the HTML created by a wiki image insertion |
||
197 | * |
||
198 | * @see https://www.mediawiki.org/wiki/Manual:Hooks/ImageBeforeProduceHTML |
||
199 | */ |
||
200 | 41 | 'ImageBeforeProduceHTML' => $this->createImageBeforeProduceHTMLCallback( $nestingController, $myConfig ), |
|
201 | |||
202 | /** |
||
203 | * Hook: InternalParseBeforeLinks |
||
204 | * |
||
205 | * Used to process the expanded wiki code after <nowiki>, HTML-comments, and templates have been treated. |
||
206 | * |
||
207 | * @see https://www.mediawiki.org/wiki/Manual:Hooks/InternalParseBeforeLinks |
||
208 | */ |
||
209 | 41 | 'InternalParseBeforeLinks' => $this->createInternalParseBeforeLinksCallback(), |
|
210 | |||
211 | /** |
||
212 | * Hook: ParserBeforeTidy |
||
213 | * |
||
214 | * Used to process the nearly-rendered html code for the page (but before any html tidying occurs). |
||
215 | * |
||
216 | * @see https://www.mediawiki.org/wiki/Manual:Hooks/ParserBeforeTidy |
||
217 | */ |
||
218 | 'ParserBeforeTidy' => function( \Parser &$parser, &$text, $parserOutputHelper = null ) { |
||
219 | // injects right before the tidy marker report (e.g. <!-- Tidy found no errors -->), at the very end of the wiki text content |
||
220 | 21 | if ( is_null( $parserOutputHelper ) ) { |
|
221 | 20 | $parserOutputHelper = ApplicationFactory::getInstance()->getParserOutputHelper( $parser ); |
|
222 | 20 | } |
|
223 | 21 | $text .= $parserOutputHelper->getContentForLaterInjection(); |
|
224 | 21 | return true; |
|
225 | 41 | }, |
|
226 | |||
227 | /** |
||
228 | * Hook: ParserFirstCallInit |
||
229 | * |
||
230 | * Called when the parser initializes for the first time. |
||
231 | * |
||
232 | * @see https://www.mediawiki.org/wiki/Manual:Hooks/ParserFirstCallInit |
||
233 | */ |
||
234 | 'ParserFirstCallInit' => function( Parser $parser ) use ( $componentLibrary, $nestingController ) { |
||
235 | 1 | $hook = new ParserFirstCallInit( $parser, $componentLibrary, $nestingController ); |
|
236 | 1 | return $hook->process(); |
|
237 | 41 | }, |
|
238 | |||
239 | 'ScribuntoExternalLibraries' => function( $engine, &$extraLibraries ) { |
||
240 | 2 | if ( $engine == 'lua' ) { |
|
241 | 2 | $extraLibraries['mw.bootstrap'] = 'BootstrapComponents\\LuaLibrary'; |
|
242 | 2 | } |
|
243 | 2 | return true; |
|
244 | 41 | }, |
|
245 | |||
246 | /** |
||
247 | * Hook: SetupAfterCache |
||
248 | * |
||
249 | * Called in Setup.php, after cache objects are set |
||
250 | * |
||
251 | * @see https://www.mediawiki.org/wiki/Manual:Hooks/SetupAfterCache |
||
252 | */ |
||
253 | 'SetupAfterCache' => function() { |
||
254 | 1 | BootstrapManager::getInstance()->addAllBootstrapModules(); |
|
255 | 1 | return true; |
|
256 | 41 | }, |
|
257 | 41 | ]; |
|
258 | } |
||
259 | |||
260 | /** |
||
261 | * @param \Config $myConfig |
||
262 | * |
||
263 | * @throws \MWException cascading {@see \BootstrapComponents\ApplicationFactory} calls |
||
264 | * @throws \ConfigException cascading {@see \Config::get} |
||
265 | * |
||
266 | * @return array |
||
267 | */ |
||
268 | 47 | public function initializeApplications( $myConfig ) { |
|
276 | |||
277 | /** |
||
278 | * @param string $hook |
||
279 | * |
||
280 | * @return boolean |
||
281 | */ |
||
282 | 5 | public function isRegistered( $hook ) { |
|
285 | |||
286 | /** |
||
287 | * @param array $hookList |
||
288 | * |
||
289 | * @return int |
||
290 | */ |
||
291 | 27 | public function register( $hookList ) { |
|
297 | |||
298 | /** |
||
299 | * @param \ConfigFactory $configFactory |
||
300 | * Registers my own configuration, so that it is present during onLoad. See phabricator issue T184837 |
||
301 | * |
||
302 | * @see https://phabricator.wikimedia.org/T184837 |
||
303 | */ |
||
304 | 47 | public function registerMyConfiguration( $configFactory ) { |
|
307 | |||
308 | /** |
||
309 | * Executes the setup process. |
||
310 | * |
||
311 | * @throws \ConfigException |
||
312 | * |
||
313 | * @return int |
||
314 | */ |
||
315 | 2 | public function run() { |
|
325 | |||
326 | /** |
||
327 | * @throws \MWException |
||
328 | */ |
||
329 | 47 | private function assertExtensionBootstrapPresent() { |
|
336 | |||
337 | /** |
||
338 | * Callback for Hook: ImageBeforeProduceHTML |
||
339 | * |
||
340 | * Called before producing the HTML created by a wiki image insertion |
||
341 | * |
||
342 | * @param NestingController $nestingController |
||
343 | * @param \Config $myConfig |
||
344 | * |
||
345 | * @see https://www.mediawiki.org/wiki/Manual:Hooks/ImageBeforeProduceHTML |
||
346 | * |
||
347 | * @return \Closure |
||
348 | */ |
||
349 | 41 | private function createImageBeforeProduceHTMLCallback( $nestingController, $myConfig ) { |
|
365 | |||
366 | /** |
||
367 | * Callback for Hook: InternalParseBeforeLinks |
||
368 | * |
||
369 | * Used to process the expanded wiki code after <nowiki>, HTML-comments, and templates have been treated. |
||
370 | * |
||
371 | * @see https://www.mediawiki.org/wiki/Manual:Hooks/InternalParseBeforeLinks |
||
372 | * |
||
373 | * @return \Closure |
||
374 | */ |
||
375 | private function createInternalParseBeforeLinksCallback() { |
||
387 | |||
388 | /** |
||
389 | * Version number retrieved from extension info array. |
||
390 | * |
||
391 | * @param string $version |
||
392 | * |
||
393 | * @return bool |
||
394 | */ |
||
395 | 1 | private function prepareEnvironment( $version ) { |
|
398 | } |
||
399 |