MediaWiki REL1_32
HttpFetcher.php
Go to the documentation of this file.
1<?php
8namespace LocalisationUpdate;
9
13class HttpFetcher implements Fetcher {
19 public function fetchFile( $url ) {
20 return \Http::get( $url );
21 }
22
29 public function fetchDirectory( $pattern ) {
30 $files = [];
31
32 $languages = \Language::fetchLanguageNames( null, 'mwfile' );
33
34 foreach ( array_keys( $languages ) as $code ) {
35 // Hack for core
36 if ( strpos( $pattern, 'Messages*.php' ) !== false ) {
37 $code = ucfirst( strtr( $code, '-', '_' ) );
38 }
39
40 $url = str_replace( '*', $code, $pattern );
41 $file = $this->fetchFile( $url );
42 if ( $file ) {
43 $files[$url] = $file;
44 }
45 }
46
47 return $files;
48 }
49}
Fetches files over HTTP(s).
fetchDirectory( $pattern)
This is horribly inefficient.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:895
Interface for classes which fetch files over different protocols and ways.
Definition Fetcher.php:13
switch( $options['output']) $languages
Definition transstat.php:76