summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/LocalisationUpdate/reader/ReaderFactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/LocalisationUpdate/reader/ReaderFactory.php')
-rw-r--r--www/wiki/extensions/LocalisationUpdate/reader/ReaderFactory.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/www/wiki/extensions/LocalisationUpdate/reader/ReaderFactory.php b/www/wiki/extensions/LocalisationUpdate/reader/ReaderFactory.php
new file mode 100644
index 00000000..ab5cdf1b
--- /dev/null
+++ b/www/wiki/extensions/LocalisationUpdate/reader/ReaderFactory.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * @file
+ * @author Niklas Laxström
+ * @license GPL-2.0+
+ */
+
+namespace LocalisationUpdate;
+
+/**
+ * Constructs readers for files based on the names.
+ */
+class ReaderFactory {
+ /**
+ * Constructs a suitable reader for a given path.
+ * @param string $filename Usually a relative path to the file name.
+ * @return Reader
+ * @throw Exception
+ */
+ public function getReader( $filename ) {
+ if ( preg_match( '/i18n\.php$/', $filename ) ) {
+ return new PHPReader();
+ }
+
+ // Ugly hack for core i18n files
+ if ( preg_match( '/Messages(.*)\.php$/', $filename ) ) {
+ $code = \Language::getCodeFromFileName( basename( $filename ), 'Messages' );
+ return new PHPReader( $code );
+ }
+
+ if ( preg_match( '/\.json/', $filename ) ) {
+ $code = basename( $filename, '.json' );
+ return new JSONReader( $code );
+ }
+
+ throw new \Exception( "Unknown file format: " . $filename );
+ }
+}