Remove it from the comments too. (Who reads those, anyway?)
[lhc/web/wiklou.git] / includes / filerepo / FileRepo.php
1 <?php
2
3 /**
4 * Base class for file repositories
5 * Do not instantiate, use a derived class.
6 * @ingroup FileRepo
7 */
8 abstract class FileRepo {
9 const DELETE_SOURCE = 1;
10 const FIND_PRIVATE = 1;
11 const FIND_IGNORE_REDIRECT = 2;
12 const OVERWRITE = 2;
13 const OVERWRITE_SAME = 4;
14
15 var $thumbScriptUrl, $transformVia404;
16 var $descBaseUrl, $scriptDirUrl, $articleUrl, $fetchDescription, $initialCapital;
17 var $pathDisclosureProtection = 'paranoid';
18 var $descriptionCacheExpiry, $apiThumbCacheExpiry, $hashLevels;
19
20 /**
21 * Factory functions for creating new files
22 * Override these in the base class
23 */
24 var $fileFactory = false, $oldFileFactory = false;
25 var $fileFactoryKey = false, $oldFileFactoryKey = false;
26
27 function __construct( $info ) {
28 // Required settings
29 $this->name = $info['name'];
30
31 // Optional settings
32 $this->initialCapital = true; // by default
33 foreach ( array( 'descBaseUrl', 'scriptDirUrl', 'articleUrl', 'fetchDescription',
34 'thumbScriptUrl', 'initialCapital', 'pathDisclosureProtection',
35 'descriptionCacheExpiry', 'apiThumbCacheExpiry', 'hashLevels' ) as $var )
36 {
37 if ( isset( $info[$var] ) ) {
38 $this->$var = $info[$var];
39 }
40 }
41 $this->transformVia404 = !empty( $info['transformVia404'] );
42 }
43
44 /**
45 * Determine if a string is an mwrepo:// URL
46 */
47 static function isVirtualUrl( $url ) {
48 return substr( $url, 0, 9 ) == 'mwrepo://';
49 }
50
51 /**
52 * Create a new File object from the local repository
53 * @param mixed $title Title object or string
54 * @param mixed $time Time at which the image was uploaded.
55 * If this is specified, the returned object will be an
56 * instance of the repository's old file class instead of
57 * a current file. Repositories not supporting version
58 * control should return false if this parameter is set.
59 */
60 function newFile( $title, $time = false ) {
61 if ( !($title instanceof Title) ) {
62 $title = Title::makeTitleSafe( NS_FILE, $title );
63 if ( !is_object( $title ) ) {
64 return null;
65 }
66 }
67 if ( $time ) {
68 if ( $this->oldFileFactory ) {
69 return call_user_func( $this->oldFileFactory, $title, $this, $time );
70 } else {
71 return false;
72 }
73 } else {
74 return call_user_func( $this->fileFactory, $title, $this );
75 }
76 }
77
78 /**
79 * Find an instance of the named file created at the specified time
80 * Returns false if the file does not exist. Repositories not supporting
81 * version control should return false if the time is specified.
82 *
83 * @param mixed $title Title object or string
84 * @param mixed $time 14-character timestamp, or false for the current version
85 */
86 function findFile( $title, $time = false, $flags = 0 ) {
87 if ( !($title instanceof Title) ) {
88 $title = Title::makeTitleSafe( NS_FILE, $title );
89 if ( !is_object( $title ) ) {
90 return false;
91 }
92 }
93 # First try the current version of the file to see if it precedes the timestamp
94 $img = $this->newFile( $title );
95 if ( !$img ) {
96 return false;
97 }
98 if ( $img->exists() && ( !$time || $img->getTimestamp() == $time ) ) {
99 return $img;
100 }
101 # Now try an old version of the file
102 if ( $time !== false ) {
103 $img = $this->newFile( $title, $time );
104 if ( $img && $img->exists() ) {
105 if ( !$img->isDeleted(File::DELETED_FILE) ) {
106 return $img;
107 } else if ( ($flags & FileRepo::FIND_PRIVATE) && $img->userCan(File::DELETED_FILE) ) {
108 return $img;
109 }
110 }
111 }
112
113 # Now try redirects
114 if ( $flags & FileRepo::FIND_IGNORE_REDIRECT ) {
115 return false;
116 }
117 $redir = $this->checkRedirect( $title );
118 if( $redir && $redir->getNamespace() == NS_FILE) {
119 $img = $this->newFile( $redir );
120 if( !$img ) {
121 return false;
122 }
123 if( $img->exists() ) {
124 $img->redirectedFrom( $title->getDBkey() );
125 return $img;
126 }
127 }
128 return false;
129 }
130
131 /*
132 * Find many files at once.
133 * @param array $titles, an array of titles
134 * @todo Think of a good way to optionally pass timestamps to this function.
135 */
136 function findFiles( $titles ) {
137 $result = array();
138 foreach ( $titles as $index => $title ) {
139 $file = $this->findFile( $title );
140 if ( $file )
141 $result[$file->getTitle()->getDBkey()] = $file;
142 }
143 return $result;
144 }
145
146 /**
147 * Create a new File object from the local repository
148 * @param mixed $sha1 SHA-1 key
149 * @param mixed $time Time at which the image was uploaded.
150 * If this is specified, the returned object will be an
151 * instance of the repository's old file class instead of
152 * a current file. Repositories not supporting version
153 * control should return false if this parameter is set.
154 */
155 function newFileFromKey( $sha1, $time = false ) {
156 if ( $time ) {
157 if ( $this->oldFileFactoryKey ) {
158 return call_user_func( $this->oldFileFactoryKey, $sha1, $this, $time );
159 } else {
160 return false;
161 }
162 } else {
163 return call_user_func( $this->fileFactoryKey, $sha1, $this );
164 }
165 }
166
167 /**
168 * Find an instance of the file with this key, created at the specified time
169 * Returns false if the file does not exist. Repositories not supporting
170 * version control should return false if the time is specified.
171 *
172 * @param string $sha1 string
173 * @param mixed $time 14-character timestamp, or false for the current version
174 */
175 function findFileFromKey( $sha1, $time = false, $flags = 0 ) {
176 # First try the current version of the file to see if it precedes the timestamp
177 $img = $this->newFileFromKey( $sha1 );
178 if ( !$img ) {
179 return false;
180 }
181 if ( $img->exists() && ( !$time || $img->getTimestamp() == $time ) ) {
182 return $img;
183 }
184 # Now try an old version of the file
185 if ( $time !== false ) {
186 $img = $this->newFileFromKey( $sha1, $time );
187 if ( $img->exists() ) {
188 if ( !$img->isDeleted(File::DELETED_FILE) ) {
189 return $img;
190 } else if ( ($flags & FileRepo::FIND_PRIVATE) && $img->userCan(File::DELETED_FILE) ) {
191 return $img;
192 }
193 }
194 }
195 return false;
196 }
197
198 /**
199 * Get the URL of thumb.php
200 */
201 function getThumbScriptUrl() {
202 return $this->thumbScriptUrl;
203 }
204
205 /**
206 * Returns true if the repository can transform files via a 404 handler
207 */
208 function canTransformVia404() {
209 return $this->transformVia404;
210 }
211
212 /**
213 * Get the name of an image from its title object
214 */
215 function getNameFromTitle( $title ) {
216 global $wgCapitalLinks;
217 if ( $this->initialCapital != $wgCapitalLinks ) {
218 global $wgContLang;
219 $name = $title->getUserCaseDBKey();
220 if ( $this->initialCapital ) {
221 $name = $wgContLang->ucfirst( $name );
222 }
223 } else {
224 $name = $title->getDBkey();
225 }
226 return $name;
227 }
228
229 static function getHashPathForLevel( $name, $levels ) {
230 if ( $levels == 0 ) {
231 return '';
232 } else {
233 $hash = md5( $name );
234 $path = '';
235 for ( $i = 1; $i <= $levels; $i++ ) {
236 $path .= substr( $hash, 0, $i ) . '/';
237 }
238 return $path;
239 }
240 }
241
242 /**
243 * Get a relative path including trailing slash, e.g. f/fa/
244 * If the repo is not hashed, returns an empty string
245 */
246 function getHashPath( $name ) {
247 return self::getHashPathForLevel( $name, $this->hashLevels );
248 }
249
250 /**
251 * Get the name of this repository, as specified by $info['name]' to the constructor
252 */
253 function getName() {
254 return $this->name;
255 }
256
257 /**
258 * Get the URL of an image description page. May return false if it is
259 * unknown or not applicable. In general this should only be called by the
260 * File class, since it may return invalid results for certain kinds of
261 * repositories. Use File::getDescriptionUrl() in user code.
262 *
263 * In particular, it uses the article paths as specified to the repository
264 * constructor, whereas local repositories use the local Title functions.
265 */
266 function getDescriptionUrl( $name ) {
267 $encName = wfUrlencode( $name );
268 if ( !is_null( $this->descBaseUrl ) ) {
269 # "http://example.com/wiki/Image:"
270 return $this->descBaseUrl . $encName;
271 }
272 if ( !is_null( $this->articleUrl ) ) {
273 # "http://example.com/wiki/$1"
274 #
275 # We use "Image:" as the canonical namespace for
276 # compatibility across all MediaWiki versions.
277 return str_replace( '$1',
278 "Image:$encName", $this->articleUrl );
279 }
280 if ( !is_null( $this->scriptDirUrl ) ) {
281 # "http://example.com/w"
282 #
283 # We use "Image:" as the canonical namespace for
284 # compatibility across all MediaWiki versions,
285 # and just sort of hope index.php is right. ;)
286 return $this->scriptDirUrl .
287 "/index.php?title=Image:$encName";
288 }
289 return false;
290 }
291
292 /**
293 * Get the URL of the content-only fragment of the description page. For
294 * MediaWiki this means action=render. This should only be called by the
295 * repository's file class, since it may return invalid results. User code
296 * should use File::getDescriptionText().
297 */
298 function getDescriptionRenderUrl( $name ) {
299 if ( isset( $this->scriptDirUrl ) ) {
300 return $this->scriptDirUrl . '/index.php?title=' .
301 wfUrlencode( 'Image:' . $name ) .
302 '&action=render';
303 } else {
304 $descUrl = $this->getDescriptionUrl( $name );
305 if ( $descUrl ) {
306 return wfAppendQuery( $descUrl, 'action=render' );
307 } else {
308 return false;
309 }
310 }
311 }
312
313 /**
314 * Store a file to a given destination.
315 *
316 * @param string $srcPath Source path or virtual URL
317 * @param string $dstZone Destination zone
318 * @param string $dstRel Destination relative path
319 * @param integer $flags Bitwise combination of the following flags:
320 * self::DELETE_SOURCE Delete the source file after upload
321 * self::OVERWRITE Overwrite an existing destination file instead of failing
322 * self::OVERWRITE_SAME Overwrite the file if the destination exists and has the
323 * same contents as the source
324 * @return FileRepoStatus
325 */
326 function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
327 $status = $this->storeBatch( array( array( $srcPath, $dstZone, $dstRel ) ), $flags );
328 if ( $status->successCount == 0 ) {
329 $status->ok = false;
330 }
331 return $status;
332 }
333
334 /**
335 * Store a batch of files
336 *
337 * @param array $triplets (src,zone,dest) triplets as per store()
338 * @param integer $flags Flags as per store
339 */
340 abstract function storeBatch( $triplets, $flags = 0 );
341
342 /**
343 * Pick a random name in the temp zone and store a file to it.
344 * Returns a FileRepoStatus object with the URL in the value.
345 *
346 * @param string $originalName The base name of the file as specified
347 * by the user. The file extension will be maintained.
348 * @param string $srcPath The current location of the file.
349 */
350 abstract function storeTemp( $originalName, $srcPath );
351
352 /**
353 * Remove a temporary file or mark it for garbage collection
354 * @param string $virtualUrl The virtual URL returned by storeTemp
355 * @return boolean True on success, false on failure
356 * STUB
357 */
358 function freeTemp( $virtualUrl ) {
359 return true;
360 }
361
362 /**
363 * Copy or move a file either from the local filesystem or from an mwrepo://
364 * virtual URL, into this repository at the specified destination location.
365 *
366 * Returns a FileRepoStatus object. On success, the value contains "new" or
367 * "archived", to indicate whether the file was new with that name.
368 *
369 * @param string $srcPath The source path or URL
370 * @param string $dstRel The destination relative path
371 * @param string $archiveRel The relative path where the existing file is to
372 * be archived, if there is one. Relative to the public zone root.
373 * @param integer $flags Bitfield, may be FileRepo::DELETE_SOURCE to indicate
374 * that the source file should be deleted if possible
375 */
376 function publish( $srcPath, $dstRel, $archiveRel, $flags = 0 ) {
377 $status = $this->publishBatch( array( array( $srcPath, $dstRel, $archiveRel ) ), $flags );
378 if ( $status->successCount == 0 ) {
379 $status->ok = false;
380 }
381 if ( isset( $status->value[0] ) ) {
382 $status->value = $status->value[0];
383 } else {
384 $status->value = false;
385 }
386 return $status;
387 }
388
389 /**
390 * Publish a batch of files
391 * @param array $triplets (source,dest,archive) triplets as per publish()
392 * @param integer $flags Bitfield, may be FileRepo::DELETE_SOURCE to indicate
393 * that the source files should be deleted if possible
394 */
395 abstract function publishBatch( $triplets, $flags = 0 );
396
397 /**
398 * Move a group of files to the deletion archive.
399 *
400 * If no valid deletion archive is configured, this may either delete the
401 * file or throw an exception, depending on the preference of the repository.
402 *
403 * The overwrite policy is determined by the repository -- currently FSRepo
404 * assumes a naming scheme in the deleted zone based on content hash, as
405 * opposed to the public zone which is assumed to be unique.
406 *
407 * @param array $sourceDestPairs Array of source/destination pairs. Each element
408 * is a two-element array containing the source file path relative to the
409 * public root in the first element, and the archive file path relative
410 * to the deleted zone root in the second element.
411 * @return FileRepoStatus
412 */
413 abstract function deleteBatch( $sourceDestPairs );
414
415 /**
416 * Move a file to the deletion archive.
417 * If no valid deletion archive exists, this may either delete the file
418 * or throw an exception, depending on the preference of the repository
419 * @param mixed $srcRel Relative path for the file to be deleted
420 * @param mixed $archiveRel Relative path for the archive location.
421 * Relative to a private archive directory.
422 * @return WikiError object (wikitext-formatted), or true for success
423 */
424 function delete( $srcRel, $archiveRel ) {
425 return $this->deleteBatch( array( array( $srcRel, $archiveRel ) ) );
426 }
427
428 /**
429 * Get properties of a file with a given virtual URL
430 * The virtual URL must refer to this repo
431 * Properties should ultimately be obtained via File::getPropsFromPath()
432 */
433 abstract function getFileProps( $virtualUrl );
434
435 /**
436 * Call a callback function for every file in the repository
437 * May use either the database or the filesystem
438 * STUB
439 */
440 function enumFiles( $callback ) {
441 throw new MWException( 'enumFiles is not supported by ' . get_class( $this ) );
442 }
443
444 /**
445 * Determine if a relative path is valid, i.e. not blank or involving directory traveral
446 */
447 function validateFilename( $filename ) {
448 if ( strval( $filename ) == '' ) {
449 return false;
450 }
451 if ( wfIsWindows() ) {
452 $filename = strtr( $filename, '\\', '/' );
453 }
454 /**
455 * Use the same traversal protection as Title::secureAndSplit()
456 */
457 if ( strpos( $filename, '.' ) !== false &&
458 ( $filename === '.' || $filename === '..' ||
459 strpos( $filename, './' ) === 0 ||
460 strpos( $filename, '../' ) === 0 ||
461 strpos( $filename, '/./' ) !== false ||
462 strpos( $filename, '/../' ) !== false ) )
463 {
464 return false;
465 } else {
466 return true;
467 }
468 }
469
470 /**#@+
471 * Path disclosure protection functions
472 */
473 function paranoidClean( $param ) { return '[hidden]'; }
474 function passThrough( $param ) { return $param; }
475
476 /**
477 * Get a callback function to use for cleaning error message parameters
478 */
479 function getErrorCleanupFunction() {
480 switch ( $this->pathDisclosureProtection ) {
481 case 'none':
482 $callback = array( $this, 'passThrough' );
483 break;
484 default: // 'paranoid'
485 $callback = array( $this, 'paranoidClean' );
486 }
487 return $callback;
488 }
489 /**#@-*/
490
491 /**
492 * Create a new fatal error
493 */
494 function newFatal( $message /*, parameters...*/ ) {
495 $params = func_get_args();
496 array_unshift( $params, $this );
497 return call_user_func_array( array( 'FileRepoStatus', 'newFatal' ), $params );
498 }
499
500 /**
501 * Create a new good result
502 */
503 function newGood( $value = null ) {
504 return FileRepoStatus::newGood( $this, $value );
505 }
506
507 /**
508 * Delete files in the deleted directory if they are not referenced in the filearchive table
509 * STUB
510 */
511 function cleanupDeletedBatch( $storageKeys ) {}
512
513 /**
514 * Checks if there is a redirect named as $title
515 * STUB
516 *
517 * @param Title $title Title of image
518 */
519 function checkRedirect( $title ) {
520 return false;
521 }
522
523 /**
524 * Invalidates image redirect cache related to that image
525 * STUB
526 *
527 * @param Title $title Title of image
528 */
529 function invalidateImageRedirect( $title ) {
530 }
531
532 function findBySha1( $hash ) {
533 return array();
534 }
535 }