summaryrefslogtreecommitdiff
path: root/extensions/LocalisationUpdate/fetcher/FetcherFactory.php
blob: 4e26dc15dcc47443d414c8cc6e0688c223857dff (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
<?php
/**
 * @file
 * @author Niklas Laxström
 * @license GPL-2.0+
 */

/**
 * Constructs fetchers based on the repository urls.
 */
class LU_FetcherFactory {
	public function getFetcher( $path ) {

		if ( strpos( $path, 'https://raw.github.com/' ) === 0 ) {
			return new LU_GitHubFetcher();
		} elseif ( strpos( $path, 'http://' ) === 0 ) {
			return new LU_HttpFetcher();
		} elseif ( strpos( $path, 'https://' ) === 0 ) {
			return new LU_HttpFetcher();
		} else {
			return new LU_FileSystemFetcher();
		}
	}
}