blob: 530ab3f9e748095e2270a0dcb34871ada11371bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?php
/**
* @file
* @author Niklas Laxström
* @license GPL-2.0+
*/
/**
* Constructs readers for files based on the names.
*/
class LU_ReaderFactory {
/**
* Constructs a suitable reader for a given path.
* @param string $filename Usually a relative path to the file name.
* @return LU_Reader
* @throw MWException
*/
public function getReader( $filename ) {
if ( preg_match( '/i18n\.php$/', $filename ) ) {
return new LU_PHPReader();
}
// Ugly hack for core i18n files
if ( preg_match( '/Messages(.*)\.php$/', $filename ) ) {
$code = Language::getCodeFromFileName( basename( $filename ), 'Messages' );
return new LU_PHPReader( $code );
}
if ( preg_match( '/\.json/', $filename ) ) {
$code = basename( $filename, '.json' );
return new LU_JSONReader( $code );
}
throw new MWException( "Unknown file format: " . $filename );
}
}
|