Index: branches/wmf/1.16wmf4/includes/media/Bitmap.php |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | $physicalHeight = $params['physicalHeight']; |
64 | 64 | $clientWidth = $params['width']; |
65 | 65 | $clientHeight = $params['height']; |
66 | | - $descriptionUrl = isset( $params['descriptionUrl'] ) ? "File source: ". $params['descriptionUrl'] : ''; |
| 66 | + $comment = isset( $params['descriptionUrl'] ) ? "File source: ". $params['descriptionUrl'] : ''; |
67 | 67 | $srcWidth = $image->getWidth(); |
68 | 68 | $srcHeight = $image->getHeight(); |
69 | 69 | $mimeType = $image->getMimeType(); |
— | — | @@ -113,7 +113,7 @@ |
114 | 114 | |
115 | 115 | $quality = ''; |
116 | 116 | $sharpen = ''; |
117 | | - $frame = ''; |
| 117 | + $scene = false; |
118 | 118 | $animation = ''; |
119 | 119 | if ( $mimeType == 'image/jpeg' ) { |
120 | 120 | $quality = "-quality 80"; // 80% |
— | — | @@ -127,7 +127,7 @@ |
128 | 128 | if( $this->getImageArea( $image, $srcWidth, $srcHeight ) > $wgMaxAnimatedGifArea ) { |
129 | 129 | // Extract initial frame only; we're so big it'll |
130 | 130 | // be a total drag. :P |
131 | | - $frame = '[0]'; |
| 131 | + $scene = 0; |
132 | 132 | } else { |
133 | 133 | // Coalesce is needed to scale animated GIFs properly (bug 1017). |
134 | 134 | $animation = ' -coalesce '; |
— | — | @@ -149,18 +149,19 @@ |
150 | 150 | |
151 | 151 | $cmd = |
152 | 152 | $tempEnv . |
153 | | - wfEscapeShellArg($wgImageMagickConvertCommand) . |
| 153 | + wfEscapeShellArg( $wgImageMagickConvertCommand ) . |
154 | 154 | " {$quality} -background white -size {$physicalWidth} ". |
155 | | - wfEscapeShellArg($srcPath . $frame) . |
| 155 | + wfEscapeShellArg( $this->escapeMagickInput( $srcPath, $scene ) ) . |
156 | 156 | $animation . |
157 | 157 | // For the -resize option a "!" is needed to force exact size, |
158 | 158 | // or ImageMagick may decide your ratio is wrong and slice off |
159 | 159 | // a pixel. |
160 | 160 | " -thumbnail " . wfEscapeShellArg( "{$physicalWidth}x{$physicalHeight}!" ) . |
161 | | - " -set comment " . wfEscapeShellArg( str_replace( '%', '%%', $descriptionUrl ) ) . |
| 161 | + // Add the source url as a comment to the thumb. |
| 162 | + " -set comment " . wfEscapeShellArg( $this->escapeMagickProperty( $comment ) ) . |
162 | 163 | " -depth 8 $sharpen " . |
163 | | - wfEscapeShellArg($dstPath) . " 2>&1"; |
164 | | - wfDebug( __METHOD__.": running ImageMagick: $cmd\n"); |
| 164 | + wfEscapeShellArg( $this->escapeMagickOutput( $dstPath ) ) . " 2>&1"; |
| 165 | + wfDebug( __METHOD__.": running ImageMagick: $cmd\n" ); |
165 | 166 | wfProfileIn( 'convert' ); |
166 | 167 | $err = wfShellExec( $cmd, $retval ); |
167 | 168 | wfProfileOut( 'convert' ); |
— | — | @@ -251,6 +252,90 @@ |
252 | 253 | } |
253 | 254 | } |
254 | 255 | |
| 256 | + /** |
| 257 | + * Escape a string for ImageMagick's property input (e.g. -set -comment) |
| 258 | + * See InterpretImageProperties() in magick/property.c |
| 259 | + */ |
| 260 | + function escapeMagickProperty( $s ) { |
| 261 | + // Double the backslashes |
| 262 | + $s = str_replace( '\\', '\\\\', $s ); |
| 263 | + // Double the percents |
| 264 | + $s = str_replace( '%', '%%', $s ); |
| 265 | + // Escape initial - or @ |
| 266 | + if ( strlen( $s ) > 0 && ( $s[0] === '-' || $s[0] === '@' ) ) { |
| 267 | + $s = '\\' . $s; |
| 268 | + } |
| 269 | + return $s; |
| 270 | + } |
| 271 | + |
| 272 | + /** |
| 273 | + * Escape a string for ImageMagick's input filenames. See ExpandFilenames() |
| 274 | + * and GetPathComponent() in magick/utility.c. |
| 275 | + * |
| 276 | + * This won't work with an initial ~ or @, so input files should be prefixed |
| 277 | + * with the directory name. |
| 278 | + * |
| 279 | + * Glob character unescaping is broken in ImageMagick before 6.6.1-5, but |
| 280 | + * it's broken in a way that doesn't involve trying to convert every file |
| 281 | + * in a directory, so we're better off escaping and waiting for the bugfix |
| 282 | + * to filter down to users. |
| 283 | + * |
| 284 | + * @param $path string The file path |
| 285 | + * @param $scene string The scene specification, or false if there is none |
| 286 | + */ |
| 287 | + function escapeMagickInput( $path, $scene = false ) { |
| 288 | + # Die on initial metacharacters (caller should prepend path) |
| 289 | + $firstChar = substr( $path, 0, 1 ); |
| 290 | + if ( $firstChar === '~' || $firstChar === '@' ) { |
| 291 | + throw new MWException( __METHOD__.': cannot escape this path name' ); |
| 292 | + } |
| 293 | + |
| 294 | + # Escape glob chars |
| 295 | + $path = preg_replace( '/[*?\[\]{}]/', '\\\\\0', $path ); |
| 296 | + |
| 297 | + return $this->escapeMagickPath( $path, $scene ); |
| 298 | + } |
| 299 | + |
| 300 | + /** |
| 301 | + * Escape a string for ImageMagick's output filename. See |
| 302 | + * InterpretImageFilename() in magick/image.c. |
| 303 | + */ |
| 304 | + function escapeMagickOutput( $path, $scene = false ) { |
| 305 | + $path = str_replace( '%', '%%', $path ); |
| 306 | + return $this->escapeMagickPath( $path, $scene ); |
| 307 | + } |
| 308 | + |
| 309 | + /** |
| 310 | + * Armour a string against ImageMagick's GetPathComponent(). This is a |
| 311 | + * helper function for escapeMagickInput() and escapeMagickOutput(). |
| 312 | + * |
| 313 | + * @param $path string The file path |
| 314 | + * @param $scene string The scene specification, or false if there is none |
| 315 | + */ |
| 316 | + protected function escapeMagickPath( $path, $scene = false ) { |
| 317 | + # Die on format specifiers (other than drive letters). The regex is |
| 318 | + # meant to match all the formats you get from "convert -list format" |
| 319 | + if ( preg_match( '/^([a-zA-Z0-9-]+):/', $path, $m ) ) { |
| 320 | + if ( wfIsWindows() && is_dir( $m[0] ) ) { |
| 321 | + // OK, it's a drive letter |
| 322 | + // ImageMagick has a similar exception, see IsMagickConflict() |
| 323 | + } else { |
| 324 | + throw new MWException( __METHOD__.': unexpected colon character in path name' ); |
| 325 | + } |
| 326 | + } |
| 327 | + |
| 328 | + # If there are square brackets, add a do-nothing scene specification |
| 329 | + # to force a literal interpretation |
| 330 | + if ( $scene === false ) { |
| 331 | + if ( strpos( $path, '[' ) !== false ) { |
| 332 | + $path .= '[0--1]'; |
| 333 | + } |
| 334 | + } else { |
| 335 | + $path .= "[$scene]"; |
| 336 | + } |
| 337 | + return $path; |
| 338 | + } |
| 339 | + |
255 | 340 | static function imageJpegWrapper( $dst_image, $thumbPath ) { |
256 | 341 | imageinterlace( $dst_image ); |
257 | 342 | imagejpeg( $dst_image, $thumbPath, 95 ); |
Property changes on: branches/wmf/1.16wmf4/includes/media/Bitmap.php |
___________________________________________________________________ |
Name: svn:mergeinfo |
258 | 343 | - /branches/REL1_15/phase3/includes/media/Bitmap.php:51646 |
/branches/sqlite/includes/media/Bitmap.php:58211-58321 |
/branches/wmf-deployment/includes/media/Bitmap.php:53381,60970 |
/trunk/phase3/includes/media/Bitmap.php:63549,63764,63897-63901,64691-64692,64932,65401 |
259 | 344 | + /branches/REL1_15/phase3/includes/media/Bitmap.php:51646 |
/branches/sqlite/includes/media/Bitmap.php:58211-58321 |
/branches/wmf-deployment/includes/media/Bitmap.php:53381,60970 |
/trunk/phase3/includes/media/Bitmap.php:63549,63764,63897-63901,64691-64692,64932,64935-64936,64947,65401,65467 |
Property changes on: branches/wmf/1.16wmf4/includes/media |
___________________________________________________________________ |
Name: svn:mergeinfo |
260 | 345 | + /branches/REL1_15/phase3/includes/media:51646 |
/branches/sqlite/includes/media:58211-58321 |
/branches/wmf-deployment/includes/media:53381,60970 |
/trunk/phase3/includes/media:63549,63764,63897-63901,64935-64936,64947,65467 |