Merge "Improve the shell cgroup feature"
[lhc/web/wiklou.git] / includes / filerepo / FSRepo.php
1 <?php
2 /**
3 * A repository for files accessible via the local filesystem.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup FileRepo
22 */
23
24 /**
25 * A repository for files accessible via the local filesystem.
26 * Does not support database access or registration.
27 *
28 * This is a mostly a legacy class. New uses should not be added.
29 *
30 * @ingroup FileRepo
31 * @deprecated since 1.19
32 */
33 class FSRepo extends FileRepo {
34
35 /**
36 * @param $info array
37 * @throws MWException
38 */
39 function __construct( array $info ) {
40 if ( !isset( $info['backend'] ) ) {
41 // B/C settings...
42 $directory = $info['directory'];
43 $deletedDir = isset( $info['deletedDir'] )
44 ? $info['deletedDir']
45 : false;
46 $thumbDir = isset( $info['thumbDir'] )
47 ? $info['thumbDir']
48 : "{$directory}/thumb";
49 $transcodedDir = isset( $info['transcodedDir'] )
50 ? $info['transcodedDir']
51 : "{$directory}/transcoded";
52 $fileMode = isset( $info['fileMode'] )
53 ? $info['fileMode']
54 : 0644;
55
56 $repoName = $info['name'];
57 // Get the FS backend configuration
58 $backend = new FSFileBackend( array(
59 'name' => $info['name'] . '-backend',
60 'lockManager' => 'fsLockManager',
61 'containerPaths' => array(
62 "{$repoName}-public" => "{$directory}",
63 "{$repoName}-temp" => "{$directory}/temp",
64 "{$repoName}-thumb" => $thumbDir,
65 "{$repoName}-transcoded" => $transcodedDir,
66 "{$repoName}-deleted" => $deletedDir
67 ),
68 'fileMode' => $fileMode,
69 ) );
70 // Update repo config to use this backend
71 $info['backend'] = $backend;
72 }
73
74 parent::__construct( $info );
75
76 if ( !( $this->backend instanceof FSFileBackend ) ) {
77 throw new MWException( "FSRepo only supports FSFileBackend." );
78 }
79 }
80 }