title =& $title; $this->name = $title->getDBkey(); $this->metadata = serialize ( array() ) ; $n = strrpos( $this->name, '.' ); $this->extension = strtolower( $n ? substr( $this->name, $n + 1 ) : '' ); $this->historyLine = 0; $this->dataLoaded = false; } /** * Get the memcached keys * Returns an array, first element is the local cache key, second is the shared cache key, if there is one */ function getCacheKeys( $shared = false ) { global $wgDBname, $wgUseSharedUploads, $wgSharedUploadDBname, $wgCacheSharedUploads; $foundCached = false; $hashedName = md5($this->name); $keys = array( "$wgDBname:Image:$hashedName" ); if ( $wgUseSharedUploads && $wgSharedUploadDBname && $wgCacheSharedUploads ) { $keys[] = "$wgSharedUploadDBname:Image:$hashedName"; } return $keys; } /** * Try to load image metadata from memcached. Returns true on success. */ function loadFromCache() { global $wgUseSharedUploads, $wgMemc; $fname = 'Image::loadFromMemcached'; wfProfileIn( $fname ); $this->dataLoaded = false; $keys = $this->getCacheKeys(); $cachedValues = $wgMemc->get( $keys[0] ); // Check if the key existed and belongs to this version of MediaWiki if (!empty($cachedValues) && is_array($cachedValues) && isset($cachedValues['version']) && ( $cachedValues['version'] == MW_IMAGE_VERSION ) && $cachedValues['fileExists'] && isset( $cachedValues['mime'] ) && isset( $cachedValues['metadata'] ) ) { if ( $wgUseSharedUploads && $cachedValues['fromShared']) { # if this is shared file, we need to check if image # in shared repository has not changed if ( isset( $keys[1] ) ) { $commonsCachedValues = $wgMemc->get( $keys[1] ); if (!empty($commonsCachedValues) && is_array($commonsCachedValues) && isset($commonsCachedValues['version']) && ( $commonsCachedValues['version'] == MW_IMAGE_VERSION ) && isset($commonsCachedValues['mime'])) { wfDebug( "Pulling image metadata from shared repository cache\n" ); $this->name = $commonsCachedValues['name']; $this->imagePath = $commonsCachedValues['imagePath']; $this->fileExists = $commonsCachedValues['fileExists']; $this->width = $commonsCachedValues['width']; $this->height = $commonsCachedValues['height']; $this->bits = $commonsCachedValues['bits']; $this->type = $commonsCachedValues['type']; $this->mime = $commonsCachedValues['mime']; $this->metadata = $commonsCachedValues['metadata']; $this->size = $commonsCachedValues['size']; $this->fromSharedDirectory = true; $this->dataLoaded = true; $this->imagePath = $this->getFullPath(true); } } } else { wfDebug( "Pulling image metadata from local cache\n" ); $this->name = $cachedValues['name']; $this->imagePath = $cachedValues['imagePath']; $this->fileExists = $cachedValues['fileExists']; $this->width = $cachedValues['width']; $this->height = $cachedValues['height']; $this->bits = $cachedValues['bits']; $this->type = $cachedValues['type']; $this->mime = $cachedValues['mime']; $this->metadata = $cachedValues['metadata']; $this->size = $cachedValues['size']; $this->fromSharedDirectory = false; $this->dataLoaded = true; $this->imagePath = $this->getFullPath(); } } if ( $this->dataLoaded ) { wfIncrStats( 'image_cache_hit' ); } else { wfIncrStats( 'image_cache_miss' ); } wfProfileOut( $fname ); return $this->dataLoaded; } /** * Save the image metadata to memcached */ function saveToCache() { global $wgMemc; $this->load(); $keys = $this->getCacheKeys(); if ( $this->fileExists ) { // We can't cache negative metadata for non-existent files, // because if the file later appears in commons, the local // keys won't be purged. $cachedValues = array( 'version' => MW_IMAGE_VERSION, 'name' => $this->name, 'imagePath' => $this->imagePath, 'fileExists' => $this->fileExists, 'fromShared' => $this->fromSharedDirectory, 'width' => $this->width, 'height' => $this->height, 'bits' => $this->bits, 'type' => $this->type, 'mime' => $this->mime, 'metadata' => $this->metadata, 'size' => $this->size ); $wgMemc->set( $keys[0], $cachedValues ); } else { // However we should clear them, so they aren't leftover // if we've deleted the file. $wgMemc->delete( $keys[0] ); } } /** * Load metadata from the file itself */ function loadFromFile() { global $wgUseSharedUploads, $wgSharedUploadDirectory, $wgLang, $wgShowEXIF; $fname = 'Image::loadFromFile'; wfProfileIn( $fname ); $this->imagePath = $this->getFullPath(); $this->fileExists = file_exists( $this->imagePath ); $this->fromSharedDirectory = false; $gis = array(); if (!$this->fileExists) wfDebug("$fname: ".$this->imagePath." not found locally!\n"); # If the file is not found, and a shared upload directory is used, look for it there. if (!$this->fileExists && $wgUseSharedUploads && $wgSharedUploadDirectory) { # 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. $sharedImage = Image::newFromName( $wgLang->ucfirst($this->name) ); $this->fileExists = file_exists( $sharedImage->getFullPath(true) ); if ( $this->fileExists ) { $this->name = $sharedImage->name; $this->imagePath = $this->getFullPath(true); $this->fromSharedDirectory = true; } } if ( $this->fileExists ) { $magic=& wfGetMimeMagic(); $this->mime = $magic->guessMimeType($this->imagePath,true); $this->type = $magic->getMediaType($this->imagePath,$this->mime); # Get size in bytes $this->size = filesize( $this->imagePath ); $magic=& wfGetMimeMagic(); # Height and width if( $this->mime == 'image/svg' ) { wfSuppressWarnings(); $gis = wfGetSVGsize( $this->imagePath ); wfRestoreWarnings(); } elseif ( !$magic->isPHPImageType( $this->mime ) ) { # Don't try to get the width and height of sound and video files, that's bad for performance $gis[0]= 0; //width $gis[1]= 0; //height $gis[2]= 0; //unknown $gis[3]= ""; //width height string } else { wfSuppressWarnings(); $gis = getimagesize( $this->imagePath ); wfRestoreWarnings(); } wfDebug("$fname: ".$this->imagePath." loaded, ".$this->size." bytes, ".$this->mime.".\n"); } else { $gis[0]= 0; //width $gis[1]= 0; //height $gis[2]= 0; //unknown $gis[3]= ""; //width height string $this->mime = NULL; $this->type = MEDIATYPE_UNKNOWN; wfDebug("$fname: ".$this->imagePath." NOT FOUND!\n"); } $this->width = $gis[0]; $this->height = $gis[1]; #NOTE: $gis[2] contains a code for the image type. This is no longer used. #NOTE: we have to set this flag early to avoid load() to be called # be some of the functions below. This may lead to recursion or other bad things! # as ther's only one thread of execution, this should be safe anyway. $this->dataLoaded = true; if ($this->fileExists && $wgShowEXIF) $this->metadata = serialize ( $this->retrieveExifData() ) ; else $this->metadata = serialize ( array() ) ; if ( isset( $gis['bits'] ) ) $this->bits = $gis['bits']; else $this->bits = 0; wfProfileOut( $fname ); } /** * Load image metadata from the DB */ function loadFromDB() { global $wgUseSharedUploads, $wgSharedUploadDBname, $wgSharedUploadDBprefix, $wgLang; $fname = 'Image::loadFromDB'; wfProfileIn( $fname ); $dbr =& wfGetDB( DB_SLAVE ); $this->checkDBSchema($dbr); $row = $dbr->selectRow( 'image', array( 'img_size', 'img_width', 'img_height', 'img_bits', 'img_media_type', 'img_major_mime', 'img_minor_mime', 'img_metadata' ), array( 'img_name' => $this->name ), $fname ); if ( $row ) { $this->fromSharedDirectory = false; $this->fileExists = true; $this->loadFromRow( $row ); $this->imagePath = $this->getFullPath(); // Check for rows from a previous schema, quietly upgrade them if ( is_null($this->type) ) { $this->upgradeRow(); } } elseif ( $wgUseSharedUploads && $wgSharedUploadDBname ) { # 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. $name = $wgLang->ucfirst($this->name); $row = $dbr->selectRow( "`$wgSharedUploadDBname`.{$wgSharedUploadDBprefix}image", array( 'img_size', 'img_width', 'img_height', 'img_bits', 'img_media_type', 'img_major_mime', 'img_minor_mime', 'img_metadata' ), array( 'img_name' => $name ), $fname ); if ( $row ) { $this->fromSharedDirectory = true; $this->fileExists = true; $this->imagePath = $this->getFullPath(true); $this->name = $name; $this->loadFromRow( $row ); // Check for rows from a previous schema, quietly upgrade them if ( is_null($this->type) ) { $this->upgradeRow(); } } } if ( !$row ) { $this->size = 0; $this->width = 0; $this->height = 0; $this->bits = 0; $this->type = 0; $this->fileExists = false; $this->fromSharedDirectory = false; $this->metadata = serialize ( array() ) ; } # Unconditionally set loaded=true, we don't want the accessors constantly rechecking $this->dataLoaded = true; wfProfileOut( $fname ); } /* * Load image metadata from a DB result row */ function loadFromRow( &$row ) { $this->size = $row->img_size; $this->width = $row->img_width; $this->height = $row->img_height; $this->bits = $row->img_bits; $this->type = $row->img_media_type; $major= $row->img_major_mime; $minor= $row->img_minor_mime; if (!$major) $this->mime = "unknown/unknown"; else { if (!$minor) $minor= "unknown"; $this->mime = $major.'/'.$minor; } $this->metadata = $row->img_metadata; if ( $this->metadata == "" ) $this->metadata = serialize ( array() ) ; $this->dataLoaded = true; } /** * Load image metadata from cache or DB, unless already loaded */ function load() { global $wgSharedUploadDBname, $wgUseSharedUploads; if ( !$this->dataLoaded ) { if ( !$this->loadFromCache() ) { $this->loadFromDB(); if ( !$wgSharedUploadDBname && $wgUseSharedUploads ) { $this->loadFromFile(); } elseif ( $this->fileExists ) { $this->saveToCache(); } } $this->dataLoaded = true; } } /** * Metadata was loaded from the database, but the row had a marker indicating it needs to be * upgraded from the 1.4 schema, which had no width, height, bits or type. Upgrade the row. */ function upgradeRow() { global $wgDBname, $wgSharedUploadDBname; $fname = 'Image::upgradeRow'; wfProfileIn( $fname ); $this->loadFromFile(); $dbw =& wfGetDB( DB_MASTER ); if ( $this->fromSharedDirectory ) { if ( !$wgSharedUploadDBname ) { wfProfileOut( $fname ); return; } // Write to the other DB using selectDB, not database selectors // This avoids breaking replication in MySQL $dbw->selectDB( $wgSharedUploadDBname ); } $this->checkDBSchema($dbw); if (strpos($this->mime,'/')!==false) { list($major,$minor)= explode('/',$this->mime,2); } else { $major= $this->mime; $minor= "unknown"; } wfDebug("$fname: upgrading ".$this->name." to 1.5 schema\n"); $dbw->update( 'image', array( 'img_width' => $this->width, 'img_height' => $this->height, 'img_bits' => $this->bits, 'img_media_type' => $this->type, 'img_major_mime' => $major, 'img_minor_mime' => $minor, 'img_metadata' => $this->metadata, ), array( 'img_name' => $this->name ), $fname ); if ( $this->fromSharedDirectory ) { $dbw->selectDB( $wgDBname ); } wfProfileOut( $fname ); } /** * Return the name of this image * @access public */ function getName() { return $this->name; } /** * Return the associated title object * @access public */ function getTitle() { return $this->title; } /** * Return the URL of the image file * @access public */ function getURL() { if ( !$this->url ) { $this->load(); if($this->fileExists) { $this->url = Image::imageUrl( $this->name, $this->fromSharedDirectory ); } else { $this->url = ''; } } return $this->url; } function getViewURL() { if( $this->mustRender()) { if( $this->canRender() ) { return $this->createThumb( $this->getWidth() ); } else { wfDebug('Image::getViewURL(): supposed to render '.$this->name.' ('.$this->mime."), but can't!\n"); return $this->getURL(); #hm... return NULL? } } else { return $this->getURL(); } } /** * Return the image path of the image in the * local file system as an absolute path * @access public */ function getImagePath() { $this->load(); return $this->imagePath; } /** * Return the width of the image * * Returns -1 if the file specified is not a known image type * @access public */ function getWidth() { $this->load(); return $this->width; } /** * Return the height of the image * * Returns -1 if the file specified is not a known image type * @access public */ function getHeight() { $this->load(); return $this->height; } /** * Return the size of the image file, in bytes * @access public */ function getSize() { $this->load(); return $this->size; } /** * Returns the mime type of the file. */ function getMimeType() { $this->load(); return $this->mime; } /** * Return the type of the media in the file. * Use the value returned by this function with the MEDIATYPE_xxx constants. */ function getMediaType() { $this->load(); return $this->type; } /** * Checks if the file can be presented to the browser as a bitmap. * * Currently, this checks if the file is an image format * that can be converted to a format * supported by all browsers (namely GIF, PNG and JPEG), * or if it is an SVG image and SVG conversion is enabled. * * @todo remember the result of this check. */ function canRender() { global $wgUseImageMagick; if( $this->getWidth()<=0 || $this->getHeight()<=0 ) return false; $mime= $this->getMimeType(); if (!$mime || $mime==='unknown' || $mime==='unknown/unknown') return false; #if it's SVG, check if ther's a converter enabled if ($mime === 'image/svg') { global $wgSVGConverters, $wgSVGConverter; if ($wgSVGConverter && isset( $wgSVGConverters[$wgSVGConverter])) { return true; } } #image formats available on ALL browsers if ( $mime === 'image/gif' || $mime === 'image/png' || $mime === 'image/jpeg' ) return true; #image formats that can be converted to the above formats if ($wgUseImageMagick) { #convertable by ImageMagick (there are more...) if ( $mime === 'image/vnd.wap.wbmp' || $mime === 'image/x-xbitmap' || $mime === 'image/x-xpixmap' #|| $mime === 'image/x-icon' #file may be split into multiple parts || $mime === 'image/x-portable-anymap' || $mime === 'image/x-portable-bitmap' || $mime === 'image/x-portable-graymap' || $mime === 'image/x-portable-pixmap' #|| $mime === 'image/x-photoshop' #this takes a lot of CPU and RAM! || $mime === 'image/x-rgb' || $mime === 'image/x-bmp' || $mime === 'image/tiff' ) return true; } else { #convertable by the PHP GD image lib if ( $mime === 'image/vnd.wap.wbmp' || $mime === 'image/x-xbitmap' ) return true; } return false; } /** * Return true if the file is of a type that can't be directly * rendered by typical browsers and needs to be re-rasterized. * * This returns true for everything but the bitmap types * supported by all browsers, i.e. JPEG; GIF and PNG. It will * also return true for any non-image formats. * * @return bool */ function mustRender() { $mime= $this->getMimeType(); if ( $mime === "image/gif" || $mime === "image/png" || $mime === "image/jpeg" ) return false; return true; } /** * Determines if this media file may be shown inline on a page. * * This is currently synonymous to canRender(), but this could be * extended to also allow inline display of other media, * like flash animations or videos. If you do so, please keep in mind that * that could be a security risk. */ function allowInlineDisplay() { return $this->canRender(); } /** * Determines if this media file is in a format that is unlikely to * contain viruses or malicious content. It uses the global * $wgTrustedMediaFormats list to determine if the file is safe. * * This is used to show a warning on the description page of non-safe files. * It may also be used to disallow direct [[media:...]] links to such files. * * Note that this function will always return ture if allowInlineDisplay() * or isTrustedFile() is true for this file. */ function isSafeFile() { if ($this->allowInlineDisplay()) return true; if ($this->isTrustedFile()) return true; global $wgTrustedMediaFormats; $type= $this->getMediaType(); $mime= $this->getMimeType(); #wfDebug("Image::isSafeFile: type= $type, mime= $mime\n"); if (!$type || $type===MEDIATYPE_UNKNOWN) return false; #unknown type, not trusted if ( in_array( $type, $wgTrustedMediaFormats) ) return true; if ($mime==="unknown/unknown") return false; #unknown type, not trusted if ( in_array( $mime, $wgTrustedMediaFormats) ) return true; return false; } /** Returns true if the file is flagegd as trusted. Files flagged that way * can be linked to directly, even if that is not allowed for this type of * file normally. * * This is a dummy function right now and always returns false. It could be * implemented to extract a flag from the database. The trusted flag could be * set on upload, if the user has sufficient privileges, to bypass script- * and html-filters. It may even be coupeled with cryptographics signatures * or such. */ function isTrustedFile() { #this could be implemented to check a flag in the databas, #look for signatures, etc return false; } /** * Return the escapeLocalURL of this image * @access public */ function getEscapeLocalURL() { $this->getTitle(); return $this->title->escapeLocalURL(); } /** * Return the escapeFullURL of this image * @access public */ function getEscapeFullURL() { $this->getTitle(); return $this->title->escapeFullURL(); } /** * Return the URL of an image, provided its name. * * @param string $name Name of the image, without the leading "Image:" * @param boolean $fromSharedDirectory Should this be in $wgSharedUploadPath? * @return string URL of $name image * @access public * @static */ function imageUrl( $name, $fromSharedDirectory = false ) { global $wgUploadPath,$wgUploadBaseUrl,$wgSharedUploadPath; if($fromSharedDirectory) { $base = ''; $path = $wgSharedUploadPath; } else { $base = $wgUploadBaseUrl; $path = $wgUploadPath; } $url = "{$base}{$path}" . wfGetHashPath($name, $fromSharedDirectory) . "{$name}"; return wfUrlencode( $url ); } /** * Returns true if the image file exists on disk. * @return boolean Whether image file exist on disk. * @access public */ function exists() { $this->load(); return $this->fileExists; } /** * @todo document * @access private */ function thumbUrl( $width, $subdir='thumb') { global $wgUploadPath, $wgUploadBaseUrl, $wgSharedUploadPath,$wgSharedUploadDirectory, $wgSharedThumbnailScriptPath, $wgThumbnailScriptPath; // Generate thumb.php URL if possible $script = false; $url = false; if ( $this->fromSharedDirectory ) { if ( $wgSharedThumbnailScriptPath ) { $script = $wgSharedThumbnailScriptPath; } } else { if ( $wgThumbnailScriptPath ) { $script = $wgThumbnailScriptPath; } } if ( $script ) { $url = $script . '?f=' . urlencode( $this->name ) . '&w=' . urlencode( $width ); if( $this->mustRender() ) { $url.= '&r=1'; } } else { $name = $this->thumbName( $width ); if($this->fromSharedDirectory) { $base = ''; $path = $wgSharedUploadPath; } else { $base = $wgUploadBaseUrl; $path = $wgUploadPath; } if ( Image::isHashed( $this->fromSharedDirectory ) ) { $url = "{$base}{$path}/{$subdir}" . wfGetHashPath($this->name, $this->fromSharedDirectory) . $this->name.'/'.$name; $url = wfUrlencode( $url ); } else { $url = "{$base}{$path}/{$subdir}/{$name}"; } } return array( $script !== false, $url ); } /** * Return the file name of a thumbnail of the specified width * * @param integer $width Width of the thumbnail image * @param boolean $shared Does the thumbnail come from the shared repository? * @access private */ function thumbName( $width ) { $thumb = $width."px-".$this->name; if( $this->mustRender() ) { if( $this->canRender() ) { # Rasterize to PNG (for SVG vector images, etc) $thumb .= '.png'; } else { #should we use iconThumb here to get a symbolic thumbnail? #or should we fail with an internal error? return NULL; //can't make bitmap } } return $thumb; } /** * 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 */ function createThumb( $width, $height=-1 ) { $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 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 ) { if ( $height == -1 ) { return $this->renderThumb( $width ); } $this->load(); if ($this->canRender()) { 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; } $thumb = $this->renderThumb( $thumbwidth ); } else $thumb= NULL; #not a bitmap or renderable image, don't try. 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/icons/' . $icon; $filepath = $wgStyleDirectory . $path; if( file_exists( $filepath ) ) { return new ThumbnailImage( $wgStylePath . $path, 120, 120 ); } } return null; } /** * 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. * Returns an object which can return the pathname, URL, and physical * pixel size of the thumbnail -- or null on failure. * * @return ThumbnailImage * @access private */ function renderThumb( $width, $useScript = true ) { global $wgUseSquid, $wgInternalServer; global $wgThumbnailScriptPath, $wgSharedThumbnailScriptPath; $width = IntVal( $width ); $this->load(); if ( ! $this->exists() ) { # If there is no image, there will be no thumbnail return null; } # Sanity check $width if( $width <= 0 || $this->width <= 0) { # BZZZT return null; } if( $width >= $this->width && !$this->mustRender() ) { # Don't make an image bigger than the source return new ThumbnailImage( $this->getViewURL(), $this->getWidth(), $this->getHeight() ); } $height = floor( $this->height * ( $width/$this->width ) ); list( $isScriptUrl, $url ) = $this->thumbUrl( $width ); if ( $isScriptUrl && $useScript ) { // Use thumb.php to render the image return new ThumbnailImage( $url, $width, $height ); } $thumbName = $this->thumbName( $width, $this->fromSharedDirectory ); $thumbPath = wfImageThumbDir( $this->name, $this->fromSharedDirectory ).'/'.$thumbName; if ( !file_exists( $thumbPath ) ) { $oldThumbPath = wfDeprecatedThumbDir( $thumbName, 'thumb', $this->fromSharedDirectory ). '/'.$thumbName; $done = false; if ( file_exists( $oldThumbPath ) ) { if ( filemtime($oldThumbPath) >= filemtime($this->imagePath) ) { rename( $oldThumbPath, $thumbPath ); $done = true; } else { unlink( $oldThumbPath ); } } if ( !$done ) { $this->reallyRenderThumb( $thumbPath, $width, $height ); # 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 ) { if ( substr( $url, 0, 4 ) == 'http' ) { $urlArr = array( $url ); } else { $urlArr = array( $wgInternalServer.$url ); } wfPurgeSquidServers($urlArr); } } } return new ThumbnailImage( $url, $width, $height, $thumbPath ); } // END OF function renderThumb /** * Really render a thumbnail * Call this only for images for which canRender() returns true. * * @access private */ function reallyRenderThumb( $thumbPath, $width, $height ) { global $wgSVGConverters, $wgSVGConverter, $wgUseImageMagick, $wgImageMagickConvertCommand; $this->load(); if( $this->mime === "image/svg" ) { #Right now we have only SVG global $wgSVGConverters, $wgSVGConverter; if( isset( $wgSVGConverters[$wgSVGConverter] ) ) { global $wgSVGConverterPath; $cmd = str_replace( array( '$path/', '$width', '$input', '$output' ), array( $wgSVGConverterPath, $width, wfEscapeShellArg( $this->imagePath ), wfEscapeShellArg( $thumbPath ) ), $wgSVGConverters[$wgSVGConverter] ); $conv = shell_exec( $cmd ); } else { $conv = false; } } elseif ( $wgUseImageMagick ) { # use ImageMagick # Specify white background color, will be used for transparent images # in Internet Explorer/Windows instead of default black. $cmd = $wgImageMagickConvertCommand . " -quality 85 -background white -geometry {$width} ". wfEscapeShellArg($this->imagePath) . " " . wfEscapeShellArg($thumbPath); wfDebug("reallyRenderThumb: running ImageMagick: $cmd"); $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. $typemap = array( 'image/gif' => array( 'imagecreatefromgif', 'palette', 'imagegif' ), 'image/jpeg' => array( 'imagecreatefromjpeg', 'truecolor', array( &$this, 'imageJpegWrapper' ) ), 'image/png' => array( 'imagecreatefrompng', 'bits', 'imagepng' ), 'image/vnd.wap.wmbp' => array( 'imagecreatefromwbmp', 'palette', 'imagewbmp' ), 'image/xbm' => array( 'imagecreatefromxbm', 'palette', 'imagexbm' ), ); if( !isset( $typemap[$this->mime] ) ) { $err = 'Image type not supported'; wfDebug( "$err\n" ); return $err; } list( $loader, $colorStyle, $saveType ) = $typemap[$this->mime]; if( !function_exists( $loader ) ) { $err = "Incomplete GD library configuration: missing function $loader"; wfDebug( "$err\n" ); return $err; } if( $colorStyle == 'palette' ) { $truecolor = false; } elseif( $colorStyle == 'truecolor' ) { $truecolor = true; } elseif( $colorStyle == 'bits' ) { $truecolor = ( $this->bits > 8 ); } $src_image = call_user_func( $loader, $this->imagePath ); if ( $truecolor ) { $dst_image = imagecreatetruecolor( $width, $height ); } else { $dst_image = imagecreate( $width, $height ); } imagecopyresampled( $dst_image, $src_image, 0,0,0,0, $width, $height, $this->width, $this->height ); call_user_func( $saveType, $dst_image, $thumbPath ); 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 # if( file_exists( $thumbPath ) ) { $thumbstat = stat( $thumbPath ); if( $thumbstat['size'] == 0 ) { unlink( $thumbPath ); } } } function imageJpegWrapper( $dst_image, $thumbPath ) { imageinterlace( $dst_image ); imagejpeg( $dst_image, $thumbPath, 95 ); } /** * Get all thumbnail names previously generated for this image */ function getThumbnails( $shared = false ) { if ( Image::isHashed( $shared ) ) { $this->load(); $files = array(); $dir = wfImageThumbDir( $this->name, $shared ); // This generates an error on failure, hence the @ $handle = @opendir( $dir ); if ( $handle ) { while ( false !== ( $file = readdir($handle) ) ) { if ( $file{0} != '.' ) { $files[] = $file; } } closedir( $handle ); } } else { $files = array(); } return $files; } /** * Delete all previously generated thumbnails, refresh metadata in memcached and purge the squid */ function purgeCache( $archiveFiles = array(), $shared = false ) { global $wgInternalServer, $wgUseSquid; // Refresh metadata cache clearstatcache(); $this->loadFromFile(); $this->saveToCache(); // Delete thumbnails $files = $this->getThumbnails( $shared ); $dir = wfImageThumbDir( $this->name, $shared ); $urls = array(); foreach ( $files as $file ) { if ( preg_match( '/^(\d+)px/', $file, $m ) ) { $urls[] = $wgInternalServer . $this->thumbUrl( $m[1], $this->fromSharedDirectory ); @unlink( "$dir/$file" ); } } // Purge the squid if ( $wgUseSquid ) { $urls[] = $wgInternalServer . $this->getViewURL(); foreach ( $archiveFiles as $file ) { $urls[] = $wgInternalServer . wfImageArchiveUrl( $file ); } wfPurgeSquidServers( $urls ); } } function checkDBSchema(&$db) { # img_name must be unique if ( !$db->indexUnique( 'image', 'img_name' ) && !$db->indexExists('image','PRIMARY') ) { wfDebugDieBacktrace( 'Database schema not up to date, please run maintenance/archives/patch-image_name_unique.sql' ); } #new fields must exist if ( !$db->fieldExists( 'image', 'img_media_type' ) || !$db->fieldExists( 'image', 'img_metadata' ) || !$db->fieldExists( 'image', 'img_width' ) ) { wfDebugDieBacktrace( 'Database schema not up to date, please run maintenance/update.php' ); } } /** * 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 * * @access public */ function nextHistoryLine() { $fname = 'Image::nextHistoryLine()'; $dbr =& wfGetDB( DB_SLAVE ); $this->checkDBSchema($dbr); 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' ) ); } $this->historyLine ++; return $dbr->fetchObject( $this->historyRes ); } /** * Reset the history pointer to the first element of the history * @access public */ function resetHistory() { $this->historyLine = 0; } /** * 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. * */ function getFullPath( $fromSharedRepository = false ) { global $wgUploadDirectory, $wgSharedUploadDirectory; global $wgHashedUploadDirectory, $wgHashedSharedUploadDirectory; $dir = $fromSharedRepository ? $wgSharedUploadDirectory : $wgUploadDirectory; // $wgSharedUploadDirectory may be false, if thumb.php is used if ( $dir ) { $fullpath = $dir . wfGetHashPath($this->name, $fromSharedRepository) . $this->name; } else { $fullpath = false; } return $fullpath; } /** * @return bool * @static */ function isHashed( $shared ) { global $wgHashedUploadDirectory, $wgHashedSharedUploadDirectory; return $shared ? $wgHashedSharedUploadDirectory : $wgHashedUploadDirectory; } /** * Record an image upload in the upload log and the image table */ function recordUpload( $oldver, $desc, $copyStatus = '', $source = '' ) { global $wgUser, $wgLang, $wgTitle, $wgOut, $wgDeferredUpdateList; global $wgUseCopyrightUpload, $wgUseSquid, $wgPostCommitUpdateList; $fname = 'Image::recordUpload'; $dbw =& wfGetDB( DB_MASTER ); $this->checkDBSchema($dbw); // Delete thumbnails and refresh the metadata cache $this->purgeCache(); // Fail now if the image isn't there if ( !$this->fileExists || $this->fromSharedDirectory ) { wfDebug( "Image::recordUpload: File ".$this->imagePath." went missing!\n" ); return false; } if ( $wgUseCopyrightUpload ) { $textdesc = '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $desc . "\n" . '== ' . wfMsg ( 'filestatus' ) . " ==\n" . $copyStatus . "\n" . '== ' . wfMsg ( 'filesource' ) . " ==\n" . $source ; } else { $textdesc = $desc; } $now = $dbw->timestamp(); #split mime type if (strpos($this->mime,'/')!==false) { list($major,$minor)= explode('/',$this->mime,2); } else { $major= $this->mime; $minor= "unknown"; } # 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. $dbw->insert( 'image', array( 'img_name' => $this->name, 'img_size'=> $this->size, 'img_width' => IntVal( $this->width ), 'img_height' => IntVal( $this->height ), 'img_bits' => $this->bits, 'img_media_type' => $this->type, 'img_major_mime' => $major, 'img_minor_mime' => $minor, 'img_timestamp' => $now, 'img_description' => $desc, 'img_user' => $wgUser->getID(), 'img_user_text' => $wgUser->getName(), 'img_metadata' => $this->metadata, ), $fname, 'IGNORE' ); $descTitle = $this->getTitle(); $purgeURLs = array(); if ( $dbw->affectedRows() ) { # Successfully inserted, this is a new image $id = $descTitle->getArticleID(); if ( $id == 0 ) { $article = new Article( $descTitle ); $article->insertNewArticle( $textdesc, $desc, false, false, true ); } } else { # Collision, this is an update of an image # Insert previous contents into oldimage $dbw->insertSelect( 'oldimage', 'image', array( 'oi_name' => 'img_name', 'oi_archive_name' => $dbw->addQuotes( $oldver ), 'oi_size' => 'img_size', 'oi_width' => 'img_width', 'oi_height' => 'img_height', 'oi_bits' => 'img_bits', 'oi_timestamp' => 'img_timestamp', 'oi_description' => 'img_description', 'oi_user' => 'img_user', 'oi_user_text' => 'img_user_text', ), array( 'img_name' => $this->name ), $fname ); # Update the current image row $dbw->update( 'image', array( /* SET */ 'img_size' => $this->size, 'img_width' => intval( $this->width ), 'img_height' => intval( $this->height ), 'img_bits' => $this->bits, 'img_media_type' => $this->type, 'img_major_mime' => $major, 'img_minor_mime' => $minor, 'img_timestamp' => $now, 'img_description' => $desc, 'img_user' => $wgUser->getID(), 'img_user_text' => $wgUser->getName(), 'img_metadata' => $this->metadata, ), array( /* WHERE */ 'img_name' => $this->name ), $fname ); # Invalidate the cache for the description page $descTitle->invalidateCache(); $purgeURLs[] = $descTitle->getInternalURL(); } # Invalidate cache for all pages using this image $linksTo = $this->getLinksTo(); if ( $wgUseSquid ) { $u = SquidUpdate::newFromTitles( $linksTo, $purgeURLs ); array_push( $wgPostCommitUpdateList, $u ); } Title::touchArray( $linksTo ); $log = new LogPage( 'upload' ); $log->addEntry( 'upload', $descTitle, $desc ); return true; } /** * Get an array of Title objects which are articles which use this image * Also adds their IDs to the link cache * * This is mostly copied from Title::getLinksTo() */ function getLinksTo( $options = '' ) { global $wgLinkCache; $fname = 'Image::getLinksTo'; wfProfileIn( $fname ); if ( $options ) { $db =& wfGetDB( DB_MASTER ); } else { $db =& wfGetDB( DB_SLAVE ); } extract( $db->tableNames( 'page', 'imagelinks' ) ); $encName = $db->addQuotes( $this->name ); $sql = "SELECT page_namespace,page_title,page_id FROM $page,$imagelinks WHERE page_id=il_from AND il_to=$encName $options"; $res = $db->query( $sql, $fname ); $retVal = array(); if ( $db->numRows( $res ) ) { while ( $row = $db->fetchObject( $res ) ) { if ( $titleObj = Title::makeTitle( $row->page_namespace, $row->page_title ) ) { $wgLinkCache->addGoodLinkObj( $row->page_id, $titleObj ); $retVal[] = $titleObj; } } } $db->freeResult( $res ); return $retVal; } /** * Retrive Exif data from the database * * Retrive Exif data from the database and prune unrecognized tags * and/or tags with invalid contents * * @return array */ function retrieveExifData () { if ( $this->getMimeType() !== "image/jpeg" ) return array (); $exif = new Exif( $this->imagePath ); return $exif->getFilteredData(); } function getExifData () { global $wgRequest; if ( $this->metadata === '0' ) return array(); $purge = $wgRequest->getVal( 'action' ) == 'purge'; $ret = unserialize ( $this->metadata ); $oldver = isset( $ret['MEDIAWIKI_EXIF_VERSION'] ) ? $ret['MEDIAWIKI_EXIF_VERSION'] : 0; $newver = Exif::version(); if ( !count( $ret ) || $purge || $oldver != $newver ) { $this->updateExifData( $newver ); } if ( isset( $ret['MEDIAWIKI_EXIF_VERSION'] ) ) unset( $ret['MEDIAWIKI_EXIF_VERSION'] ); $format = new FormatExif( $ret ); return $format->getFormattedData(); } function updateExifData( $version ) { $fname = 'Image:updateExifData'; if ( $this->getImagePath() === false ) # Not a local image return; # Get EXIF data from image $exif = $this->retrieveExifData(); if ( count( $exif ) ) { $exif['MEDIAWIKI_EXIF_VERSION'] = $version; $this->metadata = serialize( $exif ); } else { $this->metadata = '0'; } # Update EXIF data in database $dbw =& wfGetDB( DB_MASTER ); $this->checkDBSchema($dbw); $dbw->update( 'image', array( 'img_metadata' => $this->metadata ), array( 'img_name' => $this->name ), $fname ); } } //class /** * Returns the image directory of an image * If the directory does not exist, it is created. * The result is an absolute path. * * This function is called from thumb.php before Setup.php is included * * @param string $fname file name of the image file * @access public */ function wfImageDir( $fname ) { global $wgUploadDirectory, $wgHashedUploadDirectory; if (!$wgHashedUploadDirectory) { return $wgUploadDirectory; } $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; } /** * Returns the image directory of an image's thubnail * If the directory does not exist, it is created. * The result is an absolute path. * * This function is called from thumb.php before Setup.php is included * * @param string $fname file name of the original image file * @param string $subdir (optional) subdirectory of the image upload directory that should be used for storing the thumbnail. Default is 'thumb' * @param boolean $shared (optional) use the shared upload directory * @access public */ function wfImageThumbDir( $fname, $shared = false ) { $base = wfImageArchiveDir( $fname, 'thumb', $shared ); if ( Image::isHashed( $shared ) ) { $dir = "$base/$fname"; if ( !is_dir( $base ) ) { $oldumask = umask(0); @mkdir( $base, 0777 ); umask( $oldumask ); } if ( ! is_dir( $dir ) ) { $oldumask = umask(0); @mkdir( $dir, 0777 ); umask( $oldumask ); } } else { $dir = $base; } return $dir; } /** * Old thumbnail directory, kept for conversion */ function wfDeprecatedThumbDir( $thumbName , $subdir='thumb', $shared=false) { return wfImageArchiveDir( $thumbName, $subdir, $shared ); } /** * 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. * * This function is called from thumb.php before Setup.php is included * * @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' * @param boolean $shared (optional) use the shared upload directory (only relevant for other functions which call this one) * @access public */ function wfImageArchiveDir( $fname , $subdir='archive', $shared=false ) { global $wgUploadDirectory, $wgHashedUploadDirectory, $wgSharedUploadDirectory, $wgHashedSharedUploadDirectory; $dir = $shared ? $wgSharedUploadDirectory : $wgUploadDirectory; $hashdir = $shared ? $wgHashedSharedUploadDirectory : $wgHashedUploadDirectory; if (!$hashdir) { return $dir.'/'.$subdir; } $hash = md5( $fname ); $oldumask = umask(0); # Suppress warning messages here; if the file itself can't # be written we'll worry about it then. wfSuppressWarnings(); $archive = $dir.'/'.$subdir; 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 ); } wfRestoreWarnings(); umask( $oldumask ); return $archive; } /* * 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; global $wgHashedUploadDirectory; if( Image::isHashed( $fromSharedDirectory ) ) { $hash = md5($dbkey); return '/' . $hash{0} . '/' . substr( $hash, 0, 2 ) . '/'; } else { return '/'; } } /** * 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 */ function wfImageArchiveUrl( $name, $subdir='archive' ) { global $wgUploadPath, $wgHashedUploadDirectory; if ($wgHashedUploadDirectory) { $hash = md5( substr( $name, 15) ); $url = $wgUploadPath.'/'.$subdir.'/' . $hash{0} . '/' . substr( $hash, 0, 2 ) . '/'.$name; } else { $url = $wgUploadPath.'/'.$subdir.'/'.$name; } return wfUrlencode($url); } /** * 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 wfScaleSVGUnit( $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 wfGetSVGsize( $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( '/]*)\s*>/s', $chunk, $matches ) ) { return false; } $tag = $matches[1]; if( preg_match( '/\bwidth\s*=\s*("[^"]+"|\'[^\']+\')/s', $tag, $matches ) ) { $width = wfScaleSVGUnit( trim( substr( $matches[1], 1, -1 ) ) ); } if( preg_match( '/\bheight\s*=\s*("[^"]+"|\'[^\']+\')/s', $tag, $matches ) ) { $height = wfScaleSVGUnit( trim( substr( $matches[1], 1, -1 ) ) ); } return array( $width, $height, 'SVG', "width=\"$width\" height=\"$height\"" ); } /** * Determine if an image exists on the 'bad image list' * * @param string $name The image to check * @return bool */ function wfIsBadImage( $name ) { global $wgContLang; static $titleList = false; if ( $titleList === false ) { $titleList = array(); $lines = explode("\n", wfMsgForContent( 'bad_image_list' )); foreach ( $lines as $line ) { if ( preg_match( '/^\*\s*\[{2}:(' . $wgContLang->getNsText( NS_IMAGE ) . ':.*?)\]{2}/', $line, $m ) ) { $t = Title::newFromText( $m[1] ); $titleList[$t->getDBkey()] = 1; } } } return array_key_exists( $name, $titleList ); } /** * Wrapper class for thumbnail images * @package MediaWiki */ class ThumbnailImage { /** * @param string $path Filesystem path to the thumb * @param string $url URL path to the thumb * @access private */ function ThumbnailImage( $url, $width, $height, $path = false ) { $this->url = $url; $this->width = $width; $this->height = $height; $this->path = $path; } /** * @return string The thumbnail URL */ function getUrl() { return $this->url; } /** * Return HTML 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 = ' $data ) { $html .= $name . '="' . htmlspecialchars( $data ) . '" '; } $html .= '/>'; return $html; } } ?>