2004-04-24 22:33:06 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class to represent an image
|
|
|
|
|
*
|
|
|
|
|
* Provides methods to retrieve paths (physical, logical, URL),
|
|
|
|
|
* to generate thumbnails or for uploading.
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-04-24 22:33:06 +00:00
|
|
|
class Image
|
|
|
|
|
{
|
2004-10-02 00:02:49 +00:00
|
|
|
/**#@+
|
|
|
|
|
* @access private
|
|
|
|
|
*/
|
2004-04-24 22:33:06 +00:00
|
|
|
var $name, # name of the image
|
|
|
|
|
$imagePath, # Path of the image
|
|
|
|
|
$url, # Image URL
|
2004-04-24 23:45:11 +00:00
|
|
|
$title, # Title object for this image. Initialized when needed.
|
|
|
|
|
$fileExists, # does the image file exist on disk?
|
2004-10-21 05:04:14 +00:00
|
|
|
$fromSharedDirectory, # load this image from $wgSharedUploadDirectory
|
2004-05-08 18:55:22 +00:00
|
|
|
$historyLine, # Number of line to return by nextHistoryLine()
|
|
|
|
|
$historyRes, # result of the query for the image's history
|
2004-04-24 23:45:11 +00:00
|
|
|
$width, # \
|
2004-05-20 12:03:22 +00:00
|
|
|
$height, # |
|
|
|
|
|
$bits, # --- returned by getimagesize, see http://de3.php.net/manual/en/function.getimagesize.php
|
2004-04-24 23:45:11 +00:00
|
|
|
$type, # |
|
|
|
|
|
$attr; # /
|
2004-04-24 22:33:06 +00:00
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**#@-*/
|
2004-04-24 22:33:06 +00:00
|
|
|
|
2004-05-04 20:35:37 +00:00
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Create an Image object from an image name
|
|
|
|
|
*
|
|
|
|
|
* @param string $name name of the image, used to create a title object using Title::makeTitleSafe
|
2005-03-13 15:00:59 +00:00
|
|
|
* @param bool $recache if true, ignores anything in memcached and sets the updated metadata
|
2004-10-02 00:02:49 +00:00
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-03-13 15:00:59 +00:00
|
|
|
function Image( $name, $recache = false ) {
|
2004-12-02 19:56:00 +00:00
|
|
|
|
2005-03-26 22:23:48 +00:00
|
|
|
global $wgUseSharedUploads, $wgLang, $wgMemc, $wgDBname,
|
2005-03-24 13:13:08 +00:00
|
|
|
$wgSharedUploadDBname;
|
2004-05-06 06:31:35 +00:00
|
|
|
|
2004-04-24 22:33:06 +00:00
|
|
|
$this->name = $name;
|
2004-08-22 23:55:36 +00:00
|
|
|
$this->title = Title::makeTitleSafe( NS_IMAGE, $this->name );
|
2004-12-02 19:56:00 +00:00
|
|
|
$this->fromSharedDirectory = false;
|
|
|
|
|
$this->imagePath = $this->getFullPath();
|
2005-03-13 15:00:59 +00:00
|
|
|
|
|
|
|
|
$n = strrpos( $name, '.' );
|
|
|
|
|
$this->extension = strtolower( $n ? substr( $name, $n + 1 ) : '' );
|
|
|
|
|
$gis = false;
|
|
|
|
|
$hashedName = md5($this->name);
|
|
|
|
|
$cacheKey = "$wgDBname:Image:".$hashedName;
|
|
|
|
|
$foundCached = false;
|
2004-10-21 05:04:14 +00:00
|
|
|
|
2005-03-13 15:00:59 +00:00
|
|
|
if ( !$recache ) {
|
|
|
|
|
$cachedValues = $wgMemc->get( $cacheKey );
|
|
|
|
|
|
|
|
|
|
if (!empty($cachedValues) && is_array($cachedValues)) {
|
|
|
|
|
if ($wgUseSharedUploads && $cachedValues['fromShared']) {
|
|
|
|
|
# if this is shared file, we need to check if image
|
|
|
|
|
# in shared repository has not changed
|
|
|
|
|
$commonsCachedValues = $wgMemc->get( "$wgSharedUploadDBname:Image:".$hashedName );
|
|
|
|
|
if (!empty($commonsCachedValues) && is_array($commonsCachedValues)) {
|
|
|
|
|
$this->name = $commonsCachedValues['name'];
|
|
|
|
|
$this->imagePath = $commonsCachedValues['imagePath'];
|
|
|
|
|
$this->fileExists = $commonsCachedValues['fileExists'];
|
|
|
|
|
$this->fromSharedDirectory = true;
|
|
|
|
|
$gis = $commonsCachedValues['gis'];
|
|
|
|
|
$foundCached = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$this->name = $cachedValues['name'];
|
|
|
|
|
$this->imagePath = $cachedValues['imagePath'];
|
|
|
|
|
$this->fileExists = $cachedValues['fileExists'];
|
|
|
|
|
$this->fromSharedDirectory = false;
|
|
|
|
|
$gis = $cachedValues['gis'];
|
|
|
|
|
$foundCached = true;
|
|
|
|
|
}
|
2004-10-30 08:40:08 +00:00
|
|
|
}
|
2004-12-02 19:56:00 +00:00
|
|
|
}
|
2004-05-06 06:31:35 +00:00
|
|
|
|
2005-03-13 15:00:59 +00:00
|
|
|
if (!$foundCached) {
|
|
|
|
|
$this->fileExists = file_exists( $this->imagePath);
|
|
|
|
|
|
|
|
|
|
# If the file is not found, and a shared upload directory
|
|
|
|
|
# like the Wikimedia Commons is used, look for it there.
|
|
|
|
|
if (!$this->fileExists && $wgUseSharedUploads) {
|
|
|
|
|
|
|
|
|
|
# In case we're on a wgCapitalLinks=false wiki, we
|
|
|
|
|
# capitalize the first letter of the filename before
|
|
|
|
|
# looking it up in the shared repository.
|
|
|
|
|
$this->name= $wgLang->ucfirst($name);
|
|
|
|
|
|
|
|
|
|
$this->imagePath = $this->getFullPath(true);
|
|
|
|
|
$this->fileExists = file_exists( $this->imagePath);
|
|
|
|
|
$this->fromSharedDirectory = true;
|
|
|
|
|
$name=$this->name;
|
2004-10-06 09:43:00 +00:00
|
|
|
}
|
2005-03-13 15:00:59 +00:00
|
|
|
|
|
|
|
|
if ( $this->fileExists ) {
|
|
|
|
|
# Don't try to get the size of sound and video files, that's bad for performance
|
|
|
|
|
if ( !Image::isKnownImageExtension( $this->extension ) ) {
|
|
|
|
|
$gis = false;
|
|
|
|
|
} elseif( $this->extension == 'svg' ) {
|
|
|
|
|
wfSuppressWarnings();
|
|
|
|
|
$gis = getSVGsize( $this->imagePath );
|
|
|
|
|
wfRestoreWarnings();
|
2004-05-31 23:50:30 +00:00
|
|
|
} else {
|
2005-03-13 15:00:59 +00:00
|
|
|
wfSuppressWarnings();
|
|
|
|
|
$gis = getimagesize( $this->imagePath );
|
|
|
|
|
wfRestoreWarnings();
|
2004-05-31 23:50:30 +00:00
|
|
|
}
|
2004-05-20 12:03:22 +00:00
|
|
|
}
|
2005-03-13 15:00:59 +00:00
|
|
|
|
|
|
|
|
$cachedValues = array('name' => $this->name,
|
|
|
|
|
'imagePath' => $this->imagePath,
|
|
|
|
|
'fileExists' => $this->fileExists,
|
|
|
|
|
'fromShared' => $this->fromSharedDirectory,
|
|
|
|
|
'gis' => $gis);
|
|
|
|
|
|
|
|
|
|
$wgMemc->set( $cacheKey, $cachedValues );
|
|
|
|
|
|
|
|
|
|
if ($wgUseSharedUploads && $this->fromSharedDirectory) {
|
|
|
|
|
$cachedValues['fromShared'] = false;
|
|
|
|
|
$wgMemc->set( "$wgSharedUploadDBname:Image:".$hashedName, $cachedValues );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( $gis !== false ) {
|
|
|
|
|
$this->width = $gis[0];
|
|
|
|
|
$this->height = $gis[1];
|
|
|
|
|
$this->type = $gis[2];
|
|
|
|
|
$this->attr = $gis[3];
|
|
|
|
|
if ( isset( $gis['bits'] ) ) {
|
|
|
|
|
$this->bits = $gis['bits'];
|
|
|
|
|
} else {
|
|
|
|
|
$this->bits = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if($this->fileExists) {
|
|
|
|
|
$this->url = $this->wfImageUrl( $this->name, $this->fromSharedDirectory );
|
|
|
|
|
} else {
|
|
|
|
|
$this->url='';
|
2004-04-24 23:45:11 +00:00
|
|
|
}
|
2004-10-21 05:04:14 +00:00
|
|
|
$this->historyLine = 0;
|
2004-04-24 22:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
2005-03-13 15:00:59 +00:00
|
|
|
/**
|
|
|
|
|
* Remove image metadata from cache if any
|
|
|
|
|
*
|
|
|
|
|
* Don't call this, use the $recache parameter of Image::Image() instead
|
|
|
|
|
*
|
|
|
|
|
* @param string $name the title of an image
|
|
|
|
|
* @static
|
|
|
|
|
*/
|
|
|
|
|
function invalidateMetadataCache( $name ) {
|
|
|
|
|
global $wgMemc, $wgDBname;
|
|
|
|
|
$wgMemc->delete("$wgDBname:Image:".md5($name));
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Factory function
|
|
|
|
|
*
|
|
|
|
|
* Create a new image object from a title object.
|
|
|
|
|
*
|
|
|
|
|
* @param Title $nt Title object. Must be from namespace "image"
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function newFromTitle( $nt ) {
|
2004-04-24 22:33:06 +00:00
|
|
|
$img = new Image( $nt->getDBKey() );
|
|
|
|
|
$img->title = $nt;
|
|
|
|
|
return $img;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the name of this image
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getName() {
|
2004-04-24 22:33:06 +00:00
|
|
|
return $this->name;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the associated title object
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getTitle() {
|
2004-09-14 20:57:54 +00:00
|
|
|
return $this->title;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the URL of the image file
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getURL() {
|
2004-04-24 22:33:06 +00:00
|
|
|
return $this->url;
|
|
|
|
|
}
|
2004-10-05 07:35:19 +00:00
|
|
|
|
|
|
|
|
function getViewURL() {
|
|
|
|
|
if( $this->mustRender() ) {
|
|
|
|
|
return $this->createThumb( $this->getWidth() );
|
|
|
|
|
} else {
|
|
|
|
|
return $this->getURL();
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-04-24 22:33:06 +00:00
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the image path of the image in the
|
|
|
|
|
* local file system as an absolute path
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2004-04-24 22:33:06 +00:00
|
|
|
function getImagePath()
|
|
|
|
|
{
|
|
|
|
|
return $this->imagePath;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the width of the image
|
|
|
|
|
*
|
|
|
|
|
* Returns -1 if the file specified is not a known image type
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getWidth() {
|
2004-04-24 23:45:11 +00:00
|
|
|
return $this->width;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the height of the image
|
|
|
|
|
*
|
|
|
|
|
* Returns -1 if the file specified is not a known image type
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getHeight() {
|
2004-04-24 23:45:11 +00:00
|
|
|
return $this->height;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the size of the image file, in bytes
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getSize() {
|
2004-09-10 00:53:31 +00:00
|
|
|
$st = stat( $this->getImagePath() );
|
2004-12-06 14:51:18 +00:00
|
|
|
if( $st ) {
|
|
|
|
|
return $st['size'];
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2004-09-10 00:53:31 +00:00
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the type of the image
|
|
|
|
|
*
|
|
|
|
|
* - 1 GIF
|
|
|
|
|
* - 2 JPG
|
|
|
|
|
* - 3 PNG
|
|
|
|
|
* - 15 WBMP
|
|
|
|
|
* - 16 XBM
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getType() {
|
2004-04-24 23:45:11 +00:00
|
|
|
return $this->type;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the escapeLocalURL of this image
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getEscapeLocalURL() {
|
2004-04-24 22:33:06 +00:00
|
|
|
return $this->title->escapeLocalURL();
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-12 00:12:06 +00:00
|
|
|
/**
|
|
|
|
|
* Return the escapeFullURL of this image
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getEscapeFullURL() {
|
2004-10-12 00:12:06 +00:00
|
|
|
return $this->title->escapeFullURL();
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the URL of an image, provided its name.
|
|
|
|
|
*
|
2004-10-21 05:04:14 +00:00
|
|
|
* @param string $name Name of the image, without the leading "Image:"
|
|
|
|
|
* @param boolean $fromSharedDirectory Should this be in $wgSharedUploadPath?
|
2004-10-02 00:02:49 +00:00
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function wfImageUrl( $name, $fromSharedDirectory = false ) {
|
2004-12-02 19:56:00 +00:00
|
|
|
global $wgUploadPath,$wgUploadBaseUrl,$wgSharedUploadPath;
|
2004-10-21 05:04:14 +00:00
|
|
|
if($fromSharedDirectory) {
|
2004-10-27 10:51:57 +00:00
|
|
|
$base = '';
|
2004-10-21 05:04:14 +00:00
|
|
|
$path = $wgSharedUploadPath;
|
|
|
|
|
} else {
|
|
|
|
|
$base = $wgUploadBaseUrl;
|
|
|
|
|
$path = $wgUploadPath;
|
|
|
|
|
}
|
2004-12-02 19:56:00 +00:00
|
|
|
$url = "{$base}{$path}" . wfGetHashPath($name, $fromSharedDirectory) . "{$name}";
|
2004-04-24 23:45:11 +00:00
|
|
|
return wfUrlencode( $url );
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Returns true iff the image file exists on disk.
|
|
|
|
|
*
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function exists() {
|
2004-04-24 23:45:11 +00:00
|
|
|
return $this->fileExists;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
*/
|
2004-10-21 05:04:14 +00:00
|
|
|
function thumbUrl( $width, $subdir='thumb') {
|
2004-12-02 19:56:00 +00:00
|
|
|
global $wgUploadPath, $wgUploadBaseUrl,
|
2005-03-26 22:23:48 +00:00
|
|
|
$wgSharedUploadPath,$wgSharedUploadDirectory;
|
2004-10-30 08:40:08 +00:00
|
|
|
$name = $this->thumbName( $width );
|
2004-10-21 05:04:14 +00:00
|
|
|
if($this->fromSharedDirectory) {
|
2004-10-27 10:51:57 +00:00
|
|
|
$base = '';
|
2004-10-21 05:04:14 +00:00
|
|
|
$path = $wgSharedUploadPath;
|
|
|
|
|
} else {
|
|
|
|
|
$base = $wgUploadBaseUrl;
|
|
|
|
|
$path = $wgUploadPath;
|
|
|
|
|
}
|
2004-12-02 19:56:00 +00:00
|
|
|
$url = "{$base}{$path}/{$subdir}" .
|
|
|
|
|
wfGetHashPath($name, $this->fromSharedDirectory)
|
|
|
|
|
. "{$name}";
|
2004-05-04 20:35:37 +00:00
|
|
|
return wfUrlencode($url);
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return the file name of a thumbnail of the specified width
|
|
|
|
|
*
|
|
|
|
|
* @param integer $width Width of the thumbnail image
|
2004-10-30 08:40:08 +00:00
|
|
|
* @param boolean $shared Does the thumbnail come from the shared repository?
|
2004-10-02 00:02:49 +00:00
|
|
|
* @access private
|
|
|
|
|
*/
|
2004-10-30 08:40:08 +00:00
|
|
|
function thumbName( $width, $shared=false ) {
|
2004-10-04 10:55:43 +00:00
|
|
|
$thumb = $width."px-".$this->name;
|
|
|
|
|
if( $this->extension == 'svg' ) {
|
|
|
|
|
# Rasterize SVG vector images to PNG
|
|
|
|
|
$thumb .= '.png';
|
|
|
|
|
}
|
|
|
|
|
return $thumb;
|
2004-05-04 20:35:37 +00:00
|
|
|
}
|
2004-04-24 23:45:11 +00:00
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Create a thumbnail of the image having the specified width/height.
|
|
|
|
|
* The thumbnail will not be created if the width is larger than the
|
|
|
|
|
* image's width. Let the browser do the scaling in this case.
|
|
|
|
|
* The thumbnail is stored on disk and is only computed if the thumbnail
|
|
|
|
|
* file does not exist OR if it is older than the image.
|
|
|
|
|
* Returns the URL.
|
|
|
|
|
*
|
|
|
|
|
* Keeps aspect ratio of original image. If both width and height are
|
|
|
|
|
* specified, the generated image will be no bigger than width x height,
|
|
|
|
|
* and will also have correct aspect ratio.
|
|
|
|
|
*
|
|
|
|
|
* @param integer $width maximum width of the generated thumbnail
|
|
|
|
|
* @param integer $height maximum height of the image (optional)
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2004-09-14 20:57:54 +00:00
|
|
|
function createThumb( $width, $height=-1 ) {
|
2004-12-12 09:56:02 +00:00
|
|
|
$thumb = $this->getThumbnail( $width, $height );
|
|
|
|
|
if( is_null( $thumb ) ) return '';
|
|
|
|
|
return $thumb->getUrl();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* As createThumb, but returns a ThumbnailImage object. This can
|
|
|
|
|
* provide access to the actual file, the real size of the thumb,
|
|
|
|
|
* and can produce a convenient <img> tag for you.
|
|
|
|
|
*
|
|
|
|
|
* @param integer $width maximum width of the generated thumbnail
|
|
|
|
|
* @param integer $height maximum height of the image (optional)
|
|
|
|
|
* @return ThumbnailImage
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
|
|
|
|
function &getThumbnail( $width, $height=-1 ) {
|
2004-09-14 20:57:54 +00:00
|
|
|
if ( $height == -1 ) {
|
|
|
|
|
return $this->renderThumb( $width );
|
|
|
|
|
}
|
|
|
|
|
if ( $width < $this->width ) {
|
|
|
|
|
$thumbheight = $this->height * $width / $this->width;
|
|
|
|
|
$thumbwidth = $width;
|
|
|
|
|
} else {
|
|
|
|
|
$thumbheight = $this->height;
|
|
|
|
|
$thumbwidth = $this->width;
|
|
|
|
|
}
|
|
|
|
|
if ( $thumbheight > $height ) {
|
|
|
|
|
$thumbwidth = $thumbwidth * $height / $thumbheight;
|
|
|
|
|
$thumbheight = $height;
|
|
|
|
|
}
|
2004-12-12 09:56:02 +00:00
|
|
|
$thumb = $this->renderThumb( $thumbwidth );
|
|
|
|
|
if( is_null( $thumb ) ) {
|
|
|
|
|
$thumb = $this->iconThumb();
|
|
|
|
|
}
|
|
|
|
|
return $thumb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return ThumbnailImage
|
|
|
|
|
*/
|
|
|
|
|
function iconThumb() {
|
|
|
|
|
global $wgStylePath, $wgStyleDirectory;
|
|
|
|
|
|
|
|
|
|
$try = array( 'fileicon-' . $this->extension . '.png', 'fileicon.png' );
|
|
|
|
|
foreach( $try as $icon ) {
|
|
|
|
|
$path = '/common/images/' . $icon;
|
|
|
|
|
$filepath = $wgStyleDirectory . $path;
|
|
|
|
|
if( file_exists( $filepath ) ) {
|
|
|
|
|
return new ThumbnailImage( $filepath, $wgStylePath . $path );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return null;
|
2004-09-14 20:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Create a thumbnail of the image having the specified width.
|
|
|
|
|
* The thumbnail will not be created if the width is larger than the
|
|
|
|
|
* image's width. Let the browser do the scaling in this case.
|
|
|
|
|
* The thumbnail is stored on disk and is only computed if the thumbnail
|
|
|
|
|
* file does not exist OR if it is older than the image.
|
2004-12-12 09:56:02 +00:00
|
|
|
* Returns an object which can return the pathname, URL, and physical
|
|
|
|
|
* pixel size of the thumbnail -- or null on failure.
|
2004-10-02 00:02:49 +00:00
|
|
|
*
|
2004-12-12 09:56:02 +00:00
|
|
|
* @return ThumbnailImage
|
2004-10-02 00:02:49 +00:00
|
|
|
* @access private
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-09-14 20:57:54 +00:00
|
|
|
function /* private */ renderThumb( $width ) {
|
2004-04-24 22:33:06 +00:00
|
|
|
global $wgImageMagickConvertCommand;
|
|
|
|
|
global $wgUseImageMagick;
|
|
|
|
|
global $wgUseSquid, $wgInternalServer;
|
2004-05-09 10:55:47 +00:00
|
|
|
|
|
|
|
|
$width = IntVal( $width );
|
|
|
|
|
|
2004-10-30 08:40:08 +00:00
|
|
|
$thumbName = $this->thumbName( $width, $this->fromSharedDirectory );
|
2004-10-21 05:04:14 +00:00
|
|
|
$thumbPath = wfImageThumbDir( $thumbName, 'thumb', $this->fromSharedDirectory ).'/'.$thumbName;
|
2004-05-04 20:35:37 +00:00
|
|
|
$thumbUrl = $this->thumbUrl( $width );
|
2004-10-21 05:04:14 +00:00
|
|
|
#wfDebug ( "Render name: $thumbName path: $thumbPath url: $thumbUrl\n");
|
2004-04-24 23:45:11 +00:00
|
|
|
if ( ! $this->exists() )
|
2004-04-24 22:33:06 +00:00
|
|
|
{
|
|
|
|
|
# If there is no image, there will be no thumbnail
|
2004-12-12 09:56:02 +00:00
|
|
|
return null;
|
2004-04-24 22:33:06 +00:00
|
|
|
}
|
2004-04-29 04:42:52 +00:00
|
|
|
|
|
|
|
|
# Sanity check $width
|
|
|
|
|
if( $width <= 0 ) {
|
|
|
|
|
# BZZZT
|
2004-12-12 09:56:02 +00:00
|
|
|
return null;
|
2004-04-29 04:42:52 +00:00
|
|
|
}
|
2004-05-09 10:52:50 +00:00
|
|
|
|
2004-10-06 10:33:22 +00:00
|
|
|
if( $width > $this->width && !$this->mustRender() ) {
|
2004-04-29 04:42:52 +00:00
|
|
|
# Don't make an image bigger than the source
|
2004-12-12 09:56:02 +00:00
|
|
|
return new ThumbnailImage( $this->getImagePath(), $this->getViewURL() );
|
2004-04-29 04:42:52 +00:00
|
|
|
}
|
2004-04-24 22:33:06 +00:00
|
|
|
|
2004-08-07 05:42:37 +00:00
|
|
|
if ( (! file_exists( $thumbPath ) ) || ( filemtime($thumbPath) < filemtime($this->imagePath) ) ) {
|
2004-10-06 10:33:22 +00:00
|
|
|
if( $this->extension == 'svg' ) {
|
|
|
|
|
global $wgSVGConverters, $wgSVGConverter;
|
|
|
|
|
if( isset( $wgSVGConverters[$wgSVGConverter] ) ) {
|
|
|
|
|
global $wgSVGConverterPath;
|
|
|
|
|
$cmd = str_replace(
|
|
|
|
|
array( '$path/', '$width', '$input', '$output' ),
|
|
|
|
|
array( $wgSVGConverterPath,
|
|
|
|
|
$width,
|
|
|
|
|
escapeshellarg( $this->imagePath ),
|
|
|
|
|
escapeshellarg( $thumbPath ) ),
|
|
|
|
|
$wgSVGConverters[$wgSVGConverter] );
|
|
|
|
|
$conv = shell_exec( $cmd );
|
|
|
|
|
} else {
|
|
|
|
|
$conv = false;
|
|
|
|
|
}
|
|
|
|
|
} elseif ( $wgUseImageMagick ) {
|
2004-04-24 22:33:06 +00:00
|
|
|
# use ImageMagick
|
2004-08-09 01:59:40 +00:00
|
|
|
# Specify white background color, will be used for transparent images
|
|
|
|
|
# in Internet Explorer/Windows instead of default black.
|
2004-04-24 22:33:06 +00:00
|
|
|
$cmd = $wgImageMagickConvertCommand .
|
2004-08-09 01:59:40 +00:00
|
|
|
" -quality 85 -background white -geometry {$width} ".
|
2004-04-24 22:33:06 +00:00
|
|
|
escapeshellarg($this->imagePath) . " " .
|
2004-10-21 05:04:14 +00:00
|
|
|
escapeshellarg($thumbPath);
|
2004-04-24 22:33:06 +00:00
|
|
|
$conv = shell_exec( $cmd );
|
|
|
|
|
} else {
|
|
|
|
|
# Use PHP's builtin GD library functions.
|
|
|
|
|
#
|
|
|
|
|
# First find out what kind of file this is, and select the correct
|
|
|
|
|
# input routine for this.
|
2004-05-20 12:03:22 +00:00
|
|
|
|
|
|
|
|
$truecolor = false;
|
2004-04-24 23:45:11 +00:00
|
|
|
|
|
|
|
|
switch( $this->type ) {
|
2004-04-24 22:33:06 +00:00
|
|
|
case 1: # GIF
|
|
|
|
|
$src_image = imagecreatefromgif( $this->imagePath );
|
|
|
|
|
break;
|
|
|
|
|
case 2: # JPG
|
|
|
|
|
$src_image = imagecreatefromjpeg( $this->imagePath );
|
2004-05-20 12:03:22 +00:00
|
|
|
$truecolor = true;
|
2004-04-24 22:33:06 +00:00
|
|
|
break;
|
|
|
|
|
case 3: # PNG
|
|
|
|
|
$src_image = imagecreatefrompng( $this->imagePath );
|
2004-05-20 12:03:22 +00:00
|
|
|
$truecolor = ( $this->bits > 8 );
|
2004-04-24 22:33:06 +00:00
|
|
|
break;
|
|
|
|
|
case 15: # WBMP for WML
|
|
|
|
|
$src_image = imagecreatefromwbmp( $this->imagePath );
|
|
|
|
|
break;
|
|
|
|
|
case 16: # XBM
|
|
|
|
|
$src_image = imagecreatefromxbm( $this->imagePath );
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2004-08-22 17:24:50 +00:00
|
|
|
return 'Image type not supported';
|
2004-04-24 22:33:06 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2004-04-24 23:45:11 +00:00
|
|
|
$height = floor( $this->height * ( $width/$this->width ) );
|
2004-05-20 12:03:22 +00:00
|
|
|
if ( $truecolor ) {
|
|
|
|
|
$dst_image = imagecreatetruecolor( $width, $height );
|
|
|
|
|
} else {
|
|
|
|
|
$dst_image = imagecreate( $width, $height );
|
|
|
|
|
}
|
2004-04-24 22:33:06 +00:00
|
|
|
imagecopyresampled( $dst_image, $src_image,
|
|
|
|
|
0,0,0,0,
|
2004-04-24 23:45:11 +00:00
|
|
|
$width, $height, $this->width, $this->height );
|
|
|
|
|
switch( $this->type ) {
|
2004-04-24 22:33:06 +00:00
|
|
|
case 1: # GIF
|
|
|
|
|
case 3: # PNG
|
|
|
|
|
case 15: # WBMP
|
|
|
|
|
case 16: # XBM
|
|
|
|
|
#$thumbUrl .= ".png";
|
|
|
|
|
#$thumbPath .= ".png";
|
|
|
|
|
imagepng( $dst_image, $thumbPath );
|
|
|
|
|
break;
|
|
|
|
|
case 2: # JPEG
|
|
|
|
|
#$thumbUrl .= ".jpg";
|
|
|
|
|
#$thumbPath .= ".jpg";
|
|
|
|
|
imageinterlace( $dst_image );
|
|
|
|
|
imagejpeg( $dst_image, $thumbPath, 95 );
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
imagedestroy( $dst_image );
|
|
|
|
|
imagedestroy( $src_image );
|
|
|
|
|
}
|
|
|
|
|
#
|
|
|
|
|
# Check for zero-sized thumbnails. Those can be generated when
|
|
|
|
|
# no disk space is available or some other error occurs
|
|
|
|
|
#
|
2004-12-28 12:31:33 +00:00
|
|
|
if( file_exists( $thumbPath ) ) {
|
2004-12-23 04:54:48 +00:00
|
|
|
$thumbstat = stat( $thumbPath );
|
|
|
|
|
if( $thumbstat['size'] == 0 ) {
|
|
|
|
|
unlink( $thumbPath );
|
|
|
|
|
}
|
2004-04-24 22:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-07 05:42:37 +00:00
|
|
|
# Purge squid
|
|
|
|
|
# This has to be done after the image is updated and present for all machines on NFS,
|
|
|
|
|
# or else the old version might be stored into the squid again
|
|
|
|
|
if ( $wgUseSquid ) {
|
|
|
|
|
$urlArr = Array(
|
|
|
|
|
$wgInternalServer.$thumbUrl
|
|
|
|
|
);
|
|
|
|
|
wfPurgeSquidServers($urlArr);
|
|
|
|
|
}
|
2004-04-24 22:33:06 +00:00
|
|
|
}
|
2004-12-12 09:56:02 +00:00
|
|
|
return new ThumbnailImage( $thumbPath, $thumbUrl );
|
2004-05-08 18:55:22 +00:00
|
|
|
} // END OF function createThumb
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Return the image history of this image, line by line.
|
|
|
|
|
* starts with current version, then old versions.
|
|
|
|
|
* uses $this->historyLine to check which line to return:
|
|
|
|
|
* 0 return line for current version
|
|
|
|
|
* 1 query for old versions, return first one
|
|
|
|
|
* 2, ... return next old version from above query
|
2004-10-02 00:02:49 +00:00
|
|
|
*
|
|
|
|
|
* @access public
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function nextHistoryLine() {
|
2004-08-22 17:24:50 +00:00
|
|
|
$fname = 'Image::nextHistoryLine()';
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbr =& wfGetDB( DB_SLAVE );
|
2004-07-10 03:09:26 +00:00
|
|
|
if ( $this->historyLine == 0 ) {// called for the first time, return line from cur
|
|
|
|
|
$this->historyRes = $dbr->select( 'image',
|
|
|
|
|
array( 'img_size','img_description','img_user','img_user_text','img_timestamp', "'' AS oi_archive_name" ),
|
|
|
|
|
array( 'img_name' => $this->title->getDBkey() ),
|
|
|
|
|
$fname
|
|
|
|
|
);
|
|
|
|
|
if ( 0 == wfNumRows( $this->historyRes ) ) {
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
} else if ( $this->historyLine == 1 ) {
|
|
|
|
|
$this->historyRes = $dbr->select( 'oldimage',
|
|
|
|
|
array( 'oi_size AS img_size', 'oi_description AS img_description', 'oi_user AS img_user',
|
|
|
|
|
'oi_user_text AS img_user_text', 'oi_timestamp AS img_timestamp', 'oi_archive_name'
|
|
|
|
|
), array( 'oi_name' => $this->title->getDBkey() ), $fname, array( 'ORDER BY' => 'oi_timestamp DESC' )
|
|
|
|
|
);
|
2004-05-08 18:55:22 +00:00
|
|
|
}
|
|
|
|
|
$this->historyLine ++;
|
|
|
|
|
|
2004-07-18 08:48:43 +00:00
|
|
|
return $dbr->fetchObject( $this->historyRes );
|
2004-05-08 18:55:22 +00:00
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Reset the history pointer to the first element of the history
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function resetHistory() {
|
2004-05-08 18:55:22 +00:00
|
|
|
$this->historyLine = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-05 07:35:19 +00:00
|
|
|
/**
|
|
|
|
|
* Return true if the file is of a type that can't be directly
|
|
|
|
|
* rendered by typical browsers and needs to be re-rasterized.
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
function mustRender() {
|
|
|
|
|
return ( $this->extension == 'svg' );
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-02 19:56:00 +00:00
|
|
|
/**
|
|
|
|
|
* Return the full filesystem path to the file. Note that this does
|
|
|
|
|
* not mean that a file actually exists under that location.
|
|
|
|
|
*
|
|
|
|
|
* This path depends on whether directory hashing is active or not,
|
|
|
|
|
* i.e. whether the images are all found in the same directory,
|
|
|
|
|
* or in hashed paths like /images/3/3c.
|
|
|
|
|
*
|
|
|
|
|
* @access public
|
|
|
|
|
* @param boolean $fromSharedDirectory Return the path to the file
|
|
|
|
|
* in a shared repository (see $wgUseSharedRepository and related
|
|
|
|
|
* options in DefaultSettings.php) instead of a local one.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function getFullPath( $fromSharedRepository = false ) {
|
2004-12-02 19:56:00 +00:00
|
|
|
global $wgUploadDirectory, $wgSharedUploadDirectory;
|
2004-12-06 14:51:18 +00:00
|
|
|
global $wgHashedUploadDirectory, $wgHashedSharedUploadDirectory;
|
|
|
|
|
|
2004-12-02 19:56:00 +00:00
|
|
|
$dir = $fromSharedRepository ? $wgSharedUploadDirectory :
|
|
|
|
|
$wgUploadDirectory;
|
|
|
|
|
$name = $this->name;
|
2005-02-19 08:19:21 +00:00
|
|
|
$fullpath = $dir . wfGetHashPath($name, $fromSharedRepository) . $name;
|
2004-12-02 19:56:00 +00:00
|
|
|
return $fullpath;
|
|
|
|
|
}
|
|
|
|
|
|
2005-03-13 15:00:59 +00:00
|
|
|
/**
|
|
|
|
|
* @return bool
|
|
|
|
|
* @static
|
|
|
|
|
*/
|
|
|
|
|
function isKnownImageExtension( $ext ) {
|
|
|
|
|
static $extensions = array( 'svg', 'png', 'jpg', 'jpeg', 'gif', 'bmp', 'xbm' );
|
|
|
|
|
return in_array( $ext, $extensions );
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-24 22:33:06 +00:00
|
|
|
} //class
|
2004-05-04 20:35:37 +00:00
|
|
|
|
2004-08-13 15:55:59 +00:00
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the image directory of an image
|
|
|
|
|
* If the directory does not exist, it is created.
|
|
|
|
|
* The result is an absolute path.
|
|
|
|
|
*
|
|
|
|
|
* @param string $fname file name of the image file
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function wfImageDir( $fname ) {
|
2004-09-28 19:54:51 +00:00
|
|
|
global $wgUploadDirectory, $wgHashedUploadDirectory;
|
|
|
|
|
|
|
|
|
|
if (!$wgHashedUploadDirectory) { return $wgUploadDirectory; }
|
2004-08-13 15:55:59 +00:00
|
|
|
|
|
|
|
|
$hash = md5( $fname );
|
|
|
|
|
$oldumask = umask(0);
|
|
|
|
|
$dest = $wgUploadDirectory . '/' . $hash{0};
|
|
|
|
|
if ( ! is_dir( $dest ) ) { mkdir( $dest, 0777 ); }
|
|
|
|
|
$dest .= '/' . substr( $hash, 0, 2 );
|
|
|
|
|
if ( ! is_dir( $dest ) ) { mkdir( $dest, 0777 ); }
|
|
|
|
|
|
|
|
|
|
umask( $oldumask );
|
|
|
|
|
return $dest;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the image directory of an image's thubnail
|
|
|
|
|
* If the directory does not exist, it is created.
|
|
|
|
|
* The result is an absolute path.
|
|
|
|
|
*
|
|
|
|
|
* @param string $fname file name of the thumbnail file, including file size prefix
|
|
|
|
|
* @param string $subdir (optional) subdirectory of the image upload directory that should be used for storing the thumbnail. Default is 'thumb'
|
2004-10-21 05:04:14 +00:00
|
|
|
* @param boolean $shared (optional) use the shared upload directory
|
2004-10-02 00:02:49 +00:00
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function wfImageThumbDir( $fname , $subdir='thumb', $shared=false) {
|
2004-10-21 05:04:14 +00:00
|
|
|
return wfImageArchiveDir( $fname, $subdir, $shared );
|
2004-08-13 15:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the image directory of an image's old version
|
|
|
|
|
* If the directory does not exist, it is created.
|
|
|
|
|
* The result is an absolute path.
|
|
|
|
|
*
|
|
|
|
|
* @param string $fname file name of the thumbnail file, including file size prefix
|
|
|
|
|
* @param string $subdir (optional) subdirectory of the image upload directory that should be used for storing the old version. Default is 'archive'
|
2004-10-21 05:04:14 +00:00
|
|
|
* @param boolean $shared (optional) use the shared upload directory (only relevant for other functions which call this one)
|
2004-10-02 00:02:49 +00:00
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function wfImageArchiveDir( $fname , $subdir='archive', $shared=false ) {
|
2004-10-21 05:04:14 +00:00
|
|
|
global $wgUploadDirectory, $wgHashedUploadDirectory,
|
|
|
|
|
$wgSharedUploadDirectory, $wgHashedSharedUploadDirectory;
|
|
|
|
|
$dir = $shared ? $wgSharedUploadDirectory : $wgUploadDirectory;
|
2004-10-30 08:40:08 +00:00
|
|
|
$hashdir = $shared ? $wgHashedSharedUploadDirectory : $wgHashedUploadDirectory;
|
2004-10-21 05:04:14 +00:00
|
|
|
if (!$hashdir) { return $dir.'/'.$subdir; }
|
2004-08-13 15:55:59 +00:00
|
|
|
$hash = md5( $fname );
|
|
|
|
|
$oldumask = umask(0);
|
|
|
|
|
# Suppress warning messages here; if the file itself can't
|
|
|
|
|
# be written we'll worry about it then.
|
2004-10-21 05:04:14 +00:00
|
|
|
$archive = $dir.'/'.$subdir;
|
2004-08-13 15:55:59 +00:00
|
|
|
if ( ! is_dir( $archive ) ) { @mkdir( $archive, 0777 ); }
|
|
|
|
|
$archive .= '/' . $hash{0};
|
|
|
|
|
if ( ! is_dir( $archive ) ) { @mkdir( $archive, 0777 ); }
|
|
|
|
|
$archive .= '/' . substr( $hash, 0, 2 );
|
|
|
|
|
if ( ! is_dir( $archive ) ) { @mkdir( $archive, 0777 ); }
|
|
|
|
|
|
|
|
|
|
umask( $oldumask );
|
|
|
|
|
return $archive;
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-02 19:56:00 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Return the hash path component of an image path (URL or filesystem),
|
|
|
|
|
* e.g. "/3/3c/", or just "/" if hashing is not used.
|
|
|
|
|
*
|
|
|
|
|
* @param $dbkey The filesystem / database name of the file
|
|
|
|
|
* @param $fromSharedDirectory Use the shared file repository? It may
|
|
|
|
|
* use different hash settings from the local one.
|
|
|
|
|
*/
|
|
|
|
|
function wfGetHashPath ( $dbkey, $fromSharedDirectory = false ) {
|
|
|
|
|
global $wgHashedSharedUploadDirectory, $wgSharedUploadDirectory;
|
2005-02-19 12:41:18 +00:00
|
|
|
global $wgHashedUploadDirectory;
|
2004-12-02 19:56:00 +00:00
|
|
|
|
|
|
|
|
$ishashed = $fromSharedDirectory ? $wgHashedSharedUploadDirectory :
|
2005-02-19 08:19:21 +00:00
|
|
|
$wgHashedUploadDirectory;
|
2004-12-02 19:56:00 +00:00
|
|
|
if($ishashed) {
|
|
|
|
|
$hash = md5($dbkey);
|
2005-01-20 10:14:45 +00:00
|
|
|
return '/' . $hash{0} . '/' . substr( $hash, 0, 2 ) . '/';
|
2004-12-02 19:56:00 +00:00
|
|
|
} else {
|
|
|
|
|
return '/';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Record an image upload in the upload log.
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function wfRecordUpload( $name, $oldver, $size, $desc, $copyStatus = '', $source = '' ) {
|
2004-08-13 15:55:59 +00:00
|
|
|
global $wgUser, $wgLang, $wgTitle, $wgOut, $wgDeferredUpdateList;
|
|
|
|
|
global $wgUseCopyrightUpload;
|
|
|
|
|
|
|
|
|
|
$fname = 'wfRecordUpload';
|
|
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
|
|
|
|
|
|
|
|
|
# img_name must be unique
|
2004-10-11 04:10:41 +00:00
|
|
|
if ( !$dbw->indexUnique( 'image', 'img_name' ) && !$dbw->indexExists('image','PRIMARY') ) {
|
2004-08-13 15:55:59 +00:00
|
|
|
wfDebugDieBacktrace( 'Database schema not up to date, please run maintenance/archives/patch-image_name_unique.sql' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
$size = IntVal( $size );
|
|
|
|
|
|
2005-01-20 10:14:45 +00:00
|
|
|
if ( $wgUseCopyrightUpload ) {
|
2004-08-13 15:55:59 +00:00
|
|
|
$textdesc = '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $desc . "\n" .
|
|
|
|
|
'== ' . wfMsg ( 'filestatus' ) . " ==\n" . $copyStatus . "\n" .
|
|
|
|
|
'== ' . wfMsg ( 'filesource' ) . " ==\n" . $source ;
|
2005-01-20 10:14:45 +00:00
|
|
|
}
|
2004-08-13 15:55:59 +00:00
|
|
|
else $textdesc = $desc ;
|
|
|
|
|
|
|
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
|
|
|
|
|
# Test to see if the row exists using INSERT IGNORE
|
|
|
|
|
# This avoids race conditions by locking the row until the commit, and also
|
|
|
|
|
# doesn't deadlock. SELECT FOR UPDATE causes a deadlock for every race condition.
|
2004-10-24 07:10:33 +00:00
|
|
|
$dbw->insert( 'image',
|
2004-08-13 15:55:59 +00:00
|
|
|
array(
|
|
|
|
|
'img_name' => $name,
|
|
|
|
|
'img_size'=> $size,
|
2004-09-09 07:13:06 +00:00
|
|
|
'img_timestamp' => $dbw->timestamp($now),
|
2004-08-13 15:55:59 +00:00
|
|
|
'img_description' => $desc,
|
|
|
|
|
'img_user' => $wgUser->getID(),
|
|
|
|
|
'img_user_text' => $wgUser->getName(),
|
2004-12-19 08:00:50 +00:00
|
|
|
), $fname, 'IGNORE'
|
2004-08-13 15:55:59 +00:00
|
|
|
);
|
2004-08-22 23:55:36 +00:00
|
|
|
$descTitle = Title::makeTitleSafe( NS_IMAGE, $name );
|
2004-08-13 15:55:59 +00:00
|
|
|
|
|
|
|
|
if ( $dbw->affectedRows() ) {
|
|
|
|
|
# Successfully inserted, this is a new image
|
|
|
|
|
$id = $descTitle->getArticleID();
|
|
|
|
|
|
|
|
|
|
if ( $id == 0 ) {
|
2005-01-30 19:30:42 +00:00
|
|
|
$article = new Article( $descTitle );
|
2005-03-24 13:13:08 +00:00
|
|
|
$article->insertNewArticle( $textdesc, $desc, false, false, true );
|
2004-08-13 15:55:59 +00:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
# Collision, this is an update of an image
|
|
|
|
|
# Get current image row for update
|
2004-10-24 07:10:33 +00:00
|
|
|
$s = $dbw->selectRow( 'image', array( 'img_name','img_size','img_timestamp','img_description',
|
2004-08-13 15:55:59 +00:00
|
|
|
'img_user','img_user_text' ), array( 'img_name' => $name ), $fname, 'FOR UPDATE' );
|
|
|
|
|
|
|
|
|
|
# Insert it into oldimage
|
2004-10-24 07:10:33 +00:00
|
|
|
$dbw->insert( 'oldimage',
|
2004-08-13 15:55:59 +00:00
|
|
|
array(
|
|
|
|
|
'oi_name' => $s->img_name,
|
|
|
|
|
'oi_archive_name' => $oldver,
|
|
|
|
|
'oi_size' => $s->img_size,
|
2004-09-09 07:13:06 +00:00
|
|
|
'oi_timestamp' => $dbw->timestamp($s->img_timestamp),
|
2004-08-13 15:55:59 +00:00
|
|
|
'oi_description' => $s->img_description,
|
|
|
|
|
'oi_user' => $s->img_user,
|
|
|
|
|
'oi_user_text' => $s->img_user_text
|
|
|
|
|
), $fname
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
# Update the current image row
|
2004-10-24 07:10:33 +00:00
|
|
|
$dbw->update( 'image',
|
2004-08-13 15:55:59 +00:00
|
|
|
array( /* SET */
|
|
|
|
|
'img_size' => $size,
|
2004-09-09 07:13:06 +00:00
|
|
|
'img_timestamp' => $dbw->timestamp(),
|
2004-08-13 15:55:59 +00:00
|
|
|
'img_user' => $wgUser->getID(),
|
|
|
|
|
'img_user_text' => $wgUser->getName(),
|
|
|
|
|
'img_description' => $desc,
|
|
|
|
|
), array( /* WHERE */
|
|
|
|
|
'img_name' => $name
|
|
|
|
|
), $fname
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
# Invalidate the cache for the description page
|
|
|
|
|
$descTitle->invalidateCache();
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-24 08:11:46 +00:00
|
|
|
$log = new LogPage( 'upload' );
|
|
|
|
|
$log->addEntry( 'upload', $descTitle, $desc );
|
2004-08-13 15:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
2004-10-02 00:02:49 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the image URL of an image's old version
|
|
|
|
|
*
|
|
|
|
|
* @param string $fname file name of the image file
|
|
|
|
|
* @param string $subdir (optional) subdirectory of the image upload directory that is used by the old version. Default is 'archive'
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
2005-01-20 10:14:45 +00:00
|
|
|
function wfImageArchiveUrl( $name, $subdir='archive' ) {
|
2004-09-28 19:54:51 +00:00
|
|
|
global $wgUploadPath, $wgHashedUploadDirectory;
|
2004-08-13 15:55:59 +00:00
|
|
|
|
2004-09-28 19:54:51 +00:00
|
|
|
if ($wgHashedUploadDirectory) {
|
|
|
|
|
$hash = md5( substr( $name, 15) );
|
|
|
|
|
$url = $wgUploadPath.'/'.$subdir.'/' . $hash{0} . '/' .
|
|
|
|
|
substr( $hash, 0, 2 ) . '/'.$name;
|
|
|
|
|
} else {
|
|
|
|
|
$url = $wgUploadPath.'/'.$subdir.'/'.$name;
|
|
|
|
|
}
|
2004-08-13 15:55:59 +00:00
|
|
|
return wfUrlencode($url);
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-06 09:43:00 +00:00
|
|
|
/**
|
|
|
|
|
* Return a rounded pixel equivalent for a labeled CSS/SVG length.
|
|
|
|
|
* http://www.w3.org/TR/SVG11/coords.html#UnitIdentifiers
|
|
|
|
|
*
|
|
|
|
|
* @param string $length
|
|
|
|
|
* @return int Length in pixels
|
|
|
|
|
*/
|
|
|
|
|
function scaleSVGUnit( $length ) {
|
|
|
|
|
static $unitLength = array(
|
|
|
|
|
'px' => 1.0,
|
|
|
|
|
'pt' => 1.25,
|
|
|
|
|
'pc' => 15.0,
|
|
|
|
|
'mm' => 3.543307,
|
|
|
|
|
'cm' => 35.43307,
|
|
|
|
|
'in' => 90.0,
|
|
|
|
|
'' => 1.0, // "User units" pixels by default
|
|
|
|
|
'%' => 2.0, // Fake it!
|
|
|
|
|
);
|
|
|
|
|
if( preg_match( '/^(\d+)(em|ex|px|pt|pc|cm|mm|in|%|)$/', $length, $matches ) ) {
|
|
|
|
|
$length = FloatVal( $matches[1] );
|
|
|
|
|
$unit = $matches[2];
|
|
|
|
|
return round( $length * $unitLength[$unit] );
|
|
|
|
|
} else {
|
|
|
|
|
// Assume pixels
|
|
|
|
|
return round( FloatVal( $length ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Compatible with PHP getimagesize()
|
|
|
|
|
* @todo support gzipped SVGZ
|
|
|
|
|
* @todo check XML more carefully
|
|
|
|
|
* @todo sensible defaults
|
|
|
|
|
*
|
|
|
|
|
* @param string $filename
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
function getSVGsize( $filename ) {
|
|
|
|
|
$width = 256;
|
|
|
|
|
$height = 256;
|
|
|
|
|
|
|
|
|
|
// Read a chunk of the file
|
|
|
|
|
$f = fopen( $filename, "rt" );
|
|
|
|
|
if( !$f ) return false;
|
|
|
|
|
$chunk = fread( $f, 4096 );
|
|
|
|
|
fclose( $f );
|
|
|
|
|
|
|
|
|
|
// Uber-crappy hack! Run through a real XML parser.
|
|
|
|
|
if( !preg_match( '/<svg\s*([^>]*)\s*>/s', $chunk, $matches ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
$tag = $matches[1];
|
|
|
|
|
if( preg_match( '/\bwidth\s*=\s*("[^"]+"|\'[^\']+\')/s', $tag, $matches ) ) {
|
|
|
|
|
$width = scaleSVGUnit( trim( substr( $matches[1], 1, -1 ) ) );
|
|
|
|
|
}
|
|
|
|
|
if( preg_match( '/\bheight\s*=\s*("[^"]+"|\'[^\']+\')/s', $tag, $matches ) ) {
|
|
|
|
|
$height = scaleSVGUnit( trim( substr( $matches[1], 1, -1 ) ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return array( $width, $height, 'SVG',
|
|
|
|
|
"width=\"$width\" height=\"$height\"" );
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-12 09:56:02 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Wrapper class for thumbnail images
|
2005-01-27 19:51:47 +00:00
|
|
|
* @package MediaWiki
|
2004-12-12 09:56:02 +00:00
|
|
|
*/
|
|
|
|
|
class ThumbnailImage {
|
|
|
|
|
/**
|
|
|
|
|
* @param string $path Filesystem path to the thumb
|
|
|
|
|
* @param string $url URL path to the thumb
|
|
|
|
|
* @access private
|
|
|
|
|
*/
|
|
|
|
|
function ThumbnailImage( $path, $url ) {
|
|
|
|
|
$this->url = $url;
|
|
|
|
|
$this->path = $path;
|
|
|
|
|
$size = @getimagesize( $this->path );
|
|
|
|
|
if( $size ) {
|
|
|
|
|
$this->width = $size[0];
|
|
|
|
|
$this->height = $size[1];
|
|
|
|
|
} else {
|
|
|
|
|
$this->width = 0;
|
|
|
|
|
$this->height = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-01-20 10:14:45 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return string The thumbnail URL
|
|
|
|
|
*/
|
2004-12-12 09:56:02 +00:00
|
|
|
function getUrl() {
|
|
|
|
|
return $this->url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return HTML <img ... /> tag for the thumbnail, will include
|
|
|
|
|
* width and height attributes and a blank alt text (as required).
|
|
|
|
|
*
|
|
|
|
|
* You can set or override additional attributes by passing an
|
|
|
|
|
* associative array of name => data pairs. The data will be escaped
|
|
|
|
|
* for HTML output, so should be in plaintext.
|
|
|
|
|
*
|
|
|
|
|
* @param array $attribs
|
|
|
|
|
* @return string
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
|
|
|
|
function toHtml( $attribs = array() ) {
|
|
|
|
|
$attribs['src'] = $this->url;
|
|
|
|
|
$attribs['width'] = $this->width;
|
|
|
|
|
$attribs['height'] = $this->height;
|
|
|
|
|
if( !isset( $attribs['alt'] ) ) $attribs['alt'] = '';
|
|
|
|
|
|
|
|
|
|
$html = '<img ';
|
|
|
|
|
foreach( $attribs as $name => $data ) {
|
|
|
|
|
$html .= $name . '="' . htmlspecialchars( $data ) . '" ';
|
|
|
|
|
}
|
|
|
|
|
$html .= '/>';
|
|
|
|
|
return $html;
|
|
|
|
|
}
|
2004-12-28 12:31:33 +00:00
|
|
|
|
2005-01-20 10:14:45 +00:00
|
|
|
/**
|
|
|
|
|
* Return the size of the thumbnail file, in bytes or false if the file
|
|
|
|
|
* can't be stat().
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
|
|
|
|
function getSize() {
|
|
|
|
|
$st = stat( $this->path );
|
|
|
|
|
if( $st ) {
|
|
|
|
|
return $st['size'];
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-12-12 09:56:02 +00:00
|
|
|
}
|
2005-01-30 19:30:42 +00:00
|
|
|
?>
|