MediaWiki  1.29.1
GitHubFetcher.php
Go to the documentation of this file.
1 <?php
8 namespace LocalisationUpdate;
9 
18 class GitHubFetcher extends HttpFetcher {
19  public function fetchDirectory( $pattern ) {
20  $domain = preg_quote( 'https://raw.github.com/', '~' );
21  $p = "~^$domain(?P<org>[^/]+)/(?P<repo>[^/]+)/(?P<branch>[^/]+)/(?P<path>.+)/.+$~";
22  preg_match( $p, $pattern, $m );
23 
24  $apiURL = "https://api.github.com/repos/{$m['org']}/{$m['repo']}/contents/{$m['path']}";
25  $json = \Http::get( $apiURL );
26  if ( !$json ) {
27  throw new \Exception( "Unable to get directory listing for {$m['org']}/{$m['repo']}" );
28  }
29 
30  $files = [];
31  $json = \FormatJson::decode( $json, true );
32  foreach ( $json as $fileinfo ) {
33  $fileurl = dirname( $pattern ) . '/' . $fileinfo['name'];
34  $file = $this->fetchFile( $fileurl );
35  if ( $file ) {
36  $files[$fileurl] = $file;
37  }
38  }
39  return $files;
40  }
41 }
php
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:35
FormatJson\decode
static decode( $value, $assoc=false)
Decodes a JSON string.
Definition: FormatJson.php:187
LocalisationUpdate\GitHubFetcher
This class uses GitHub api to obtain a list of files present in a directory to avoid fetching files t...
Definition: GitHubFetcher.php:18
Http\get
static get( $url, $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'GET' )
Definition: Http.php:98
LocalisationUpdate\HttpFetcher
Fetches files over HTTP(s).
Definition: HttpFetcher.php:13
LocalisationUpdate
Definition: Fetcher.php:8
LocalisationUpdate\GitHubFetcher\fetchDirectory
fetchDirectory( $pattern)
This is horribly inefficient.
Definition: GitHubFetcher.php:19
as
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
Definition: distributors.txt:9
$fileinfo
$fileinfo
Definition: generateLocalAutoload.php:16