3 * Base class for the output of file transformation methods.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Base class for the output of MediaHandler::doTransform() and File::transform().
29 abstract class MediaTransformOutput
{
35 var $width, $height, $url, $page, $path, $lang;
38 * @var array Associative array mapping optional supplementary image files
39 * from pixel density (eg 1.5 or 2) to additional URLs.
41 public $responsiveUrls = array();
43 protected $storagePath = false;
46 * @return integer Width of the output box
48 public function getWidth() {
53 * @return integer Height of the output box
55 public function getHeight() {
60 * Get the final extension of the thumbnail.
61 * Returns false for scripted transformations.
62 * @return string|false
64 public function getExtension() {
65 return $this->path ? FileBackend
::extensionFromPath( $this->path
) : false;
69 * @return string|false The thumbnail URL
71 public function getUrl() {
76 * @return string|bool The permanent thumbnail storage path
78 public function getStoragePath() {
79 return $this->storagePath
;
83 * @param string $storagePath The permanent storage path
86 public function setStoragePath( $storagePath ) {
87 $this->storagePath
= $storagePath;
91 * Fetch HTML for this transform output
93 * @param array $options Associative array of options. Boolean options
94 * should be indicated with a value of true for true, and false or
97 * alt Alternate text or caption
98 * desc-link Boolean, show a description link
99 * file-link Boolean, show a file download link
100 * custom-url-link Custom URL to link to
101 * custom-title-link Custom Title object to link to
102 * valign vertical-align property, if the output is an inline element
103 * img-class Class applied to the "<img>" tag, if there is such a tag
105 * For images, desc-link and file-link are implemented as a click-through. For
106 * sounds and videos, they may be displayed in other ways.
110 abstract public function toHtml( $options = array() );
113 * This will be overridden to return true in error classes
116 public function isError() {
121 * Check if an output thumbnail file actually exists.
122 * This will return false if there was an error, the
123 * thumbnail is to be handled client-side only, or if
124 * transformation was deferred via TRANSFORM_LATER.
128 public function hasFile() {
129 // If TRANSFORM_LATER, $this->path will be false.
130 // Note: a null path means "use the source file".
131 return ( !$this->isError() && ( $this->path ||
$this->path
=== null ) );
135 * Check if the output thumbnail is the same as the source.
136 * This can occur if the requested width was bigger than the source.
140 public function fileIsSource() {
141 return ( !$this->isError() && $this->path
=== null );
145 * Get the path of a file system copy of the thumbnail.
146 * Callers should never write to this path.
148 * @return string|bool Returns false if there isn't one
150 public function getLocalCopyPath() {
151 if ( $this->isError() ) {
153 } elseif ( $this->path
=== null ) {
154 return $this->file
->getLocalRefPath(); // assume thumb was not scaled
155 } elseif ( FileBackend
::isStoragePath( $this->path
) ) {
156 $be = $this->file
->getRepo()->getBackend();
157 // The temp file will be process cached by FileBackend
158 $fsFile = $be->getLocalReference( array( 'src' => $this->path
) );
159 return $fsFile ?
$fsFile->getPath() : false;
161 return $this->path
; // may return false
166 * Stream the file if there were no errors
168 * @param array $headers Additional HTTP headers to send on success
169 * @return Bool success
171 public function streamFile( $headers = array() ) {
172 if ( !$this->path
) {
174 } elseif ( FileBackend
::isStoragePath( $this->path
) ) {
175 $be = $this->file
->getRepo()->getBackend();
176 return $be->streamFile( array( 'src' => $this->path
, 'headers' => $headers ) )->isOK();
178 return StreamFile
::stream( $this->getLocalCopyPath(), $headers );
183 * Wrap some XHTML text in an anchor tag with the given attributes
185 * @param $linkAttribs array
186 * @param $contents string
190 protected function linkWrap( $linkAttribs, $contents ) {
191 if ( $linkAttribs ) {
192 return Xml
::tags( 'a', $linkAttribs, $contents );
199 * @param $title string
200 * @param $params string|array Query parameters to add
203 public function getDescLinkAttribs( $title = null, $params = array() ) {
204 if ( is_array( $params ) ) {
209 if ( $this->page
&& $this->page
!== 1 ) {
210 $query['page'] = $this->page
;
213 $query['lang'] = $this->lang
;
216 if ( is_string( $params ) && $params !== '' ) {
217 $query = $params . '&' . wfArrayToCgi( $query );
221 'href' => $this->file
->getTitle()->getLocalURL( $query ),
225 $attribs['title'] = $title;
232 * Media transform output for images
236 class ThumbnailImage
extends MediaTransformOutput
{
238 * Get a thumbnail object from a file and parameters.
239 * If $path is set to null, the output file is treated as a source copy.
240 * If $path is set to false, no output file will be created.
241 * $parameters should include, as a minimum, (file) 'width' and 'height'.
242 * It may also include a 'page' parameter for multipage files.
244 * @param $file File object
245 * @param string $url URL path to the thumb
246 * @param $path String|bool|null: filesystem path to the thumb
247 * @param array $parameters Associative array of parameters
250 function __construct( $file, $url, $path = false, $parameters = array() ) {
251 # Previous parameters:
252 # $file, $url, $width, $height, $path = false, $page = false
259 if ( is_array( $parameters ) ) {
260 $actualParams = $parameters +
$defaults;
262 # Using old format, should convert. Later a warning could be added here.
263 $numArgs = func_num_args();
264 $actualParams = array(
266 'height' => $parameters,
267 'page' => ( $numArgs > 5 ) ?
func_get_arg( 5 ) : false
269 $path = ( $numArgs > 4 ) ?
func_get_arg( 4 ) : false;
276 # These should be integers when they get here.
277 # If not, there's a bug somewhere. But let's at
278 # least produce valid HTML code regardless.
279 $this->width
= round( $actualParams['width'] );
280 $this->height
= round( $actualParams['height'] );
282 $this->page
= $actualParams['page'];
283 $this->lang
= $actualParams['lang'];
287 * Return HTML <img ... /> tag for the thumbnail, will include
288 * width and height attributes and a blank alt text (as required).
290 * @param array $options Associative array of options. Boolean options
291 * should be indicated with a value of true for true, and false or
294 * alt HTML alt attribute
295 * title HTML title attribute
296 * desc-link Boolean, show a description link
297 * file-link Boolean, show a file download link
298 * valign vertical-align property, if the output is an inline element
299 * img-class Class applied to the \<img\> tag, if there is such a tag
300 * desc-query String, description link query params
301 * custom-url-link Custom URL to link to
302 * custom-title-link Custom Title object to link to
303 * custom target-link Value of the target attribute, for custom-target-link
304 * parser-extlink-* Attributes added by parser for external links:
305 * parser-extlink-rel: add rel="nofollow"
306 * parser-extlink-target: link target, but overridden by custom-target-link
308 * For images, desc-link and file-link are implemented as a click-through. For
309 * sounds and videos, they may be displayed in other ways.
311 * @throws MWException
314 function toHtml( $options = array() ) {
315 if ( count( func_get_args() ) == 2 ) {
316 throw new MWException( __METHOD__
. ' called in the old style' );
319 $alt = empty( $options['alt'] ) ?
'' : $options['alt'];
321 $query = empty( $options['desc-query'] ) ?
'' : $options['desc-query'];
323 if ( !empty( $options['custom-url-link'] ) ) {
324 $linkAttribs = array( 'href' => $options['custom-url-link'] );
325 if ( !empty( $options['title'] ) ) {
326 $linkAttribs['title'] = $options['title'];
328 if ( !empty( $options['custom-target-link'] ) ) {
329 $linkAttribs['target'] = $options['custom-target-link'];
330 } elseif ( !empty( $options['parser-extlink-target'] ) ) {
331 $linkAttribs['target'] = $options['parser-extlink-target'];
333 if ( !empty( $options['parser-extlink-rel'] ) ) {
334 $linkAttribs['rel'] = $options['parser-extlink-rel'];
336 } elseif ( !empty( $options['custom-title-link'] ) ) {
337 $title = $options['custom-title-link'];
338 $linkAttribs = array(
339 'href' => $title->getLinkURL(),
340 'title' => empty( $options['title'] ) ?
$title->getFullText() : $options['title']
342 } elseif ( !empty( $options['desc-link'] ) ) {
343 $linkAttribs = $this->getDescLinkAttribs( empty( $options['title'] ) ?
null : $options['title'], $query );
344 } elseif ( !empty( $options['file-link'] ) ) {
345 $linkAttribs = array( 'href' => $this->file
->getURL() );
347 $linkAttribs = false;
353 'width' => $this->width
,
354 'height' => $this->height
356 if ( !empty( $options['valign'] ) ) {
357 $attribs['style'] = "vertical-align: {$options['valign']}";
359 if ( !empty( $options['img-class'] ) ) {
360 $attribs['class'] = $options['img-class'];
363 // Additional densities for responsive images, if specified.
364 if ( !empty( $this->responsiveUrls
) ) {
365 $attribs['srcset'] = Html
::srcSet( $this->responsiveUrls
);
368 wfRunHooks( 'ThumbnailBeforeProduceHTML', array( $this, &$attribs, &$linkAttribs ) );
370 return $this->linkWrap( $linkAttribs, Xml
::element( 'img', $attribs ) );
376 * Basic media transform error class
380 class MediaTransformError
extends MediaTransformOutput
{
381 var $htmlMsg, $textMsg, $width, $height, $url, $path;
383 function __construct( $msg, $width, $height /*, ... */ ) {
384 $args = array_slice( func_get_args(), 3 );
385 $htmlArgs = array_map( 'htmlspecialchars', $args );
386 $htmlArgs = array_map( 'nl2br', $htmlArgs );
388 $this->htmlMsg
= wfMessage( $msg )->rawParams( $htmlArgs )->escaped();
389 $this->textMsg
= wfMessage( $msg )->rawParams( $htmlArgs )->text();
390 $this->width
= intval( $width );
391 $this->height
= intval( $height );
396 function toHtml( $options = array() ) {
397 return "<div class=\"MediaTransformError\" style=\"" .
398 "width: {$this->width}px; height: {$this->height}px; display:inline-block;\">" .
404 return $this->textMsg
;
407 function getHtmlMsg() {
408 return $this->htmlMsg
;
417 * Shortcut class for parameter validation errors
421 class TransformParameterError
extends MediaTransformError
{
422 function __construct( $params ) {
423 parent
::__construct( 'thumbnail_error',
424 max( isset( $params['width'] ) ?
$params['width'] : 0, 120 ),
425 max( isset( $params['height'] ) ?
$params['height'] : 0, 120 ),
426 wfMessage( 'thumbnail_invalid_params' )->text() );