API: Forgot a whole bunch of messages specific to ApiEditPage
[mediawiki.git] / includes / filerepo / RepoGroup.php
blobd685121a6c901e5738dd9d0813137d1b99154a62
1 <?php
3 /**
4 * Prioritized list of file repositories
5 * @addtogroup FileRepo
6 */
7 class RepoGroup {
8 var $localRepo, $foreignRepos, $reposInitialised = false;
9 var $localInfo, $foreignInfo;
11 protected static $instance;
13 /**
14 * Get a RepoGroup instance. At present only one instance of RepoGroup is
15 * needed in a MediaWiki invocation, this may change in the future.
17 static function singleton() {
18 if ( self::$instance ) {
19 return self::$instance;
21 global $wgLocalFileRepo, $wgForeignFileRepos;
22 self::$instance = new RepoGroup( $wgLocalFileRepo, $wgForeignFileRepos );
23 return self::$instance;
26 /**
27 * Destroy the singleton instance, so that a new one will be created next
28 * time singleton() is called.
30 static function destroySingleton() {
31 self::$instance = null;
34 /**
35 * Set the singleton instance to a given object
37 static function setSingleton( $instance ) {
38 self::$instance = $instance;
41 /**
42 * Construct a group of file repositories.
43 * @param array $data Array of repository info arrays.
44 * Each info array is an associative array with the 'class' member
45 * giving the class name. The entire array is passed to the repository
46 * constructor as the first parameter.
48 function __construct( $localInfo, $foreignInfo ) {
49 $this->localInfo = $localInfo;
50 $this->foreignInfo = $foreignInfo;
53 /**
54 * Search repositories for an image.
55 * You can also use wfGetFile() to do this.
56 * @param mixed $title Title object or string
57 * @param mixed $time The 14-char timestamp the file should have
58 * been uploaded, or false for the current version
59 * @return File object or false if it is not found
61 function findFile( $title, $time = false ) {
62 if ( !$this->reposInitialised ) {
63 $this->initialiseRepos();
66 $image = $this->localRepo->findFile( $title, $time );
67 if ( $image ) {
68 return $image;
70 foreach ( $this->foreignRepos as $repo ) {
71 $image = $repo->findFile( $title, $time );
72 if ( $image ) {
73 return $image;
76 return false;
79 /**
80 * Interface for FileRepo::checkRedirect()
82 function checkRedirect( $title ) {
83 if ( !$this->reposInitialised ) {
84 $this->initialiseRepos();
87 $redir = $this->localRepo->checkRedirect( $title );
88 if( $redir ) {
89 return $redir;
91 foreach ( $this->foreignRepos as $repo ) {
92 $redir = $repo->checkRedirect( $title );
93 if ( $redir ) {
94 return $redir;
97 return false;
101 * Get the repo instance with a given key.
103 function getRepo( $index ) {
104 if ( !$this->reposInitialised ) {
105 $this->initialiseRepos();
107 if ( $index === 'local' ) {
108 return $this->localRepo;
109 } elseif ( isset( $this->foreignRepos[$index] ) ) {
110 return $this->foreignRepos[$index];
111 } else {
112 return false;
116 * Get the repo instance by its name
118 function getRepoByName( $name ) {
119 if ( !$this->reposInitialised ) {
120 $this->initialiseRepos();
122 foreach ( $this->foreignRepos as $key => $repo ) {
123 if ( $repo->name == $name)
124 return $repo;
126 return false;
130 * Get the local repository, i.e. the one corresponding to the local image
131 * table. Files are typically uploaded to the local repository.
133 function getLocalRepo() {
134 return $this->getRepo( 'local' );
138 * Initialise the $repos array
140 function initialiseRepos() {
141 if ( $this->reposInitialised ) {
142 return;
144 $this->reposInitialised = true;
146 $this->localRepo = $this->newRepo( $this->localInfo );
147 $this->foreignRepos = array();
148 foreach ( $this->foreignInfo as $key => $info ) {
149 $this->foreignRepos[$key] = $this->newRepo( $info );
154 * Create a repo class based on an info structure
156 protected function newRepo( $info ) {
157 $class = $info['class'];
158 return new $class( $info );
162 * Split a virtual URL into repo, zone and rel parts
163 * @return an array containing repo, zone and rel
165 function splitVirtualUrl( $url ) {
166 if ( substr( $url, 0, 9 ) != 'mwrepo://' ) {
167 throw new MWException( __METHOD__.': unknown protoocl' );
170 $bits = explode( '/', substr( $url, 9 ), 3 );
171 if ( count( $bits ) != 3 ) {
172 throw new MWException( __METHOD__.": invalid mwrepo URL: $url" );
174 return $bits;
177 function getFileProps( $fileName ) {
178 if ( FileRepo::isVirtualUrl( $fileName ) ) {
179 list( $repoName, /* $zone */, /* $rel */ ) = $this->splitVirtualUrl( $fileName );
180 if ( $repoName === '' ) {
181 $repoName = 'local';
183 $repo = $this->getRepo( $repoName );
184 return $repo->getFileProps( $fileName );
185 } else {
186 return File::getPropsFromPath( $fileName );