blob: bf48c0c7c1bd555c7e53afd8539ed1b4b4674858 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<?php
/**
* Support functions for the importImages script
*
* @package MediaWiki
* @subpackage Maintenance
* @author Rob Church <robchur@gmail.com>
*/
/**
* Search a directory for files with one of a set of extensions
*
* @param $dir Path to directory to search
* @param $exts Array of extensions to search for
* @return mixed Array of filenames on success, or false on failure
*/
function findFiles( $dir, $exts ) {
if( is_dir( $dir ) ) {
if( $dhl = opendir( $dir ) ) {
while( ( $file = readdir( $dhl ) ) !== false ) {
if( is_file( $dir . '/' . $file ) ) {
list( $name, $ext ) = splitFilename( $dir . '/' . $file );
if( array_search( strtolower( $ext ), $exts ) !== false )
$files[] = $dir . '/' . $file;
}
}
return $files;
} else {
return false;
}
} else {
return false;
}
}
/**
* Split a filename into filename and extension
*
* @param $filename Filename
* @return array
*/
function splitFilename( $filename ) {
$parts = explode( '.', $filename );
$ext = $parts[ count( $parts ) - 1 ];
unset( $parts[ count( $parts ) - 1 ] );
$fname = implode( '.', $parts );
return array( $fname, $ext );
}
/**
* Given an image hash, check that the structure exists to save the image file
* and create it if it doesn't
*
* @param $hash Part of an image hash, e.g. /f/fd/
*/
function makeHashPath( $hash ) {
global $wgUploadDirectory;
$parts = explode( '/', substr( $hash, 1, strlen( $hash ) - 2 ) );
if( !is_dir( $wgUploadDirectory . '/' . $parts[0] ) )
mkdir( $wgUploadDirectory . '/' . $parts[0] );
if( !is_dir( $wgUploadDirectory . '/' . $hash ) )
mkdir( $wgUploadDirectory . '/' . $hash );
}
?>
|