MediaWiki REL1_39
|
The web entry point for retrieving media thumbnails, created by a MediaHandler subclass or proxy request if FileRepo::getThumbProxyUrl is configured. More...
Go to the source code of this file.
Functions | |
wfExtractThumbParams ( $file, $params) | |
Convert a thumbnail name (122px-foo.png) to parameters, using file handler. | |
wfExtractThumbRequestInfo ( $thumbRel) | |
Convert pathinfo type parameter, into normal request parameters. | |
wfGenerateThumbnail (File $file, array $params, $thumbName, $thumbPath) | |
Actually try to generate a new thumbnail. | |
wfProxyThumbnailRequest ( $img, $thumbName) | |
Proxies thumbnail request to a service that handles thumbnailing. | |
wfStreamThumb (array $params) | |
Stream a thumbnail specified by parameters. | |
wfThumbError ( $status, $msgHtml, $msgText=null, $context=[]) | |
Output a thumbnail generation error message. | |
wfThumbErrorText ( $status, $msgText) | |
Output a thumbnail generation error message. | |
wfThumbHandle404 () | |
Handle a thumbnail request via thumbnail file URL. | |
wfThumbMain () | |
Variables | |
if (!defined('MW_ENTRY_POINT')) | |
const | MW_NO_OUTPUT_COMPRESSION 1 |
The web entry point for retrieving media thumbnails, created by a MediaHandler subclass or proxy request if FileRepo::getThumbProxyUrl is configured.
This script may also resize an image on-demand, if it isn't found in the configured FileBackend storage.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. http://www.gnu.org/copyleft/gpl.html
Definition in file thumb.php.
wfExtractThumbParams | ( | $file, | |
$params ) |
Convert a thumbnail name (122px-foo.png) to parameters, using file handler.
Definition at line 591 of file thumb.php.
References $file, and $matches.
Referenced by wfStreamThumb().
wfExtractThumbRequestInfo | ( | $thumbRel | ) |
Convert pathinfo type parameter, into normal request parameters.
So for example, if the request was redirected from /w/images/thumb/a/ab/Foo.png/120px-Foo.png. The $thumbRel parameter of this function would be set to "a/ab/Foo.png/120px-Foo.png". This method is responsible for turning that into an array with the following keys:
Transform specific parameters are set later via wfExtractThumbParams().
string | $thumbRel | Thumbnail path relative to the thumb zone |
Definition at line 552 of file thumb.php.
Referenced by wfThumbHandle404().
wfGenerateThumbnail | ( | File | $file, |
array | $params, | ||
$thumbName, | |||
$thumbPath ) |
Actually try to generate a new thumbnail.
File | $file | |
array | $params | |
string | $thumbName | |
string | $thumbPath |
Definition at line 455 of file thumb.php.
References $cache, $file, $wgAttemptFailureEpoch, PoolCounterWork\execute(), and wfMessage().
Referenced by wfStreamThumb().
wfProxyThumbnailRequest | ( | $img, | |
$thumbName ) |
Proxies thumbnail request to a service that handles thumbnailing.
File | $img | |
string | $thumbName |
Definition at line 413 of file thumb.php.
Referenced by wfStreamThumb().
wfStreamThumb | ( | array | $params | ) |
Stream a thumbnail specified by parameters.
array | $params | List of thumbnailing parameters. In addition to parameters passed to the MediaHandler, this may also includes the keys: f (for filename), archived (if archived file), temp (if temp file), w (alias for width), p (alias for page), r (ignored; historical), rel404 (path for render on 404 to verify hash path correct), thumbName (thumbnail name to potentially extract more parameters from e.g. 'lossy-page1-120px-Foo.tiff' would add page, lossy and width to the parameters) |
Definition at line 105 of file thumb.php.
References $title, $wgVaryOnXFP, MWException\getHTML(), MessageSpecifier\getKey(), NS_FILE, PROTO_CURRENT, wfExpandUrl(), wfExtractThumbParams(), wfGenerateThumbnail(), wfMessage(), wfProxyThumbnailRequest(), wfThumbError(), wfThumbErrorText(), wfThumbIsStandard(), and wfTimestamp().
Referenced by wfThumbHandle404(), and wfThumbMain().
wfThumbError | ( | $status, | |
$msgHtml, | |||
$msgText = null, | |||
$context = [] ) |
Output a thumbnail generation error message.
int | $status | |
string | $msgHtml | HTML |
string | null | $msgText | Short error description, for internal logging. Defaults to $msgHtml. Only used for HTTP 500 errors. |
array | $context | Error context, for internal logging. Only used for HTTP 500 errors. |
Definition at line 654 of file thumb.php.
References $content, $debug, $wgShowHostnames, and wfHostname().
Referenced by wfStreamThumb(), wfThumbErrorText(), and wfThumbHandle404().
wfThumbErrorText | ( | $status, | |
$msgText ) |
Output a thumbnail generation error message.
int | $status | |
string | $msgText | Plain text (will be html escaped) |
Definition at line 640 of file thumb.php.
References wfThumbError().
Referenced by wfStreamThumb().
wfThumbHandle404 | ( | ) |
Handle a thumbnail request via thumbnail file URL.
Definition at line 66 of file thumb.php.
References $wgThumbPath, wfExtractThumbRequestInfo(), wfStreamThumb(), and wfThumbError().
Referenced by wfThumbMain().
wfThumbMain | ( | ) |
Definition at line 43 of file thumb.php.
References $mediawiki, $wgRequest, $wgTrivialMimeDetection, wfStreamThumb(), and wfThumbHandle404().
if(!defined( 'MW_ENTRY_POINT')) | ( | ! | defined'MW_ENTRY_POINT' | ) |