|
MediaWiki REL1_39
|
Functions related to the output of file content. More...
Public Member Functions | |
| __construct ( $path, array $params=[]) | |
| stream ( $headers=[], $sendErrors=true, $optHeaders=[], $flags=0) | |
| Stream a file to the browser, adding all the headings and fun stuff. | |
Static Public Member Functions | |
| static | parseRange ( $range, $size) |
| Convert a Range header value to an absolute (start, end) range tuple. | |
| static | preprocessHeaders ( $headers) |
| Takes HTTP headers in a name => value format and converts them to the weird format expected by stream(). | |
| static | send404Message ( $fname, $flags=0) |
| Send out a standard 404 message for a file. | |
Public Attributes | |
| const | STREAM_ALLOW_OB = 2 |
| const | STREAM_HEADLESS = 1 |
Static Protected Member Functions | |
| static | contentTypeFromPath ( $filename) |
| Determine the file type of a file based on the path. | |
| static | resetOutputBuffers () |
Protected Attributes | |
| callable | $obResetFunc |
| string | $path |
| callable | $streamMimeFunc |
Functions related to the output of file content.
Definition at line 31 of file HTTPFileStreamer.php.
| HTTPFileStreamer::__construct | ( | $path, | |
| array | $params = [] ) |
| string | $path | Local filesystem path to a file |
| array | $params | Options map, which includes:
|
Definition at line 71 of file HTTPFileStreamer.php.
References $path.
|
staticprotected |
Determine the file type of a file based on the path.
| string | $filename | Storage path or file system path |
Definition at line 271 of file HTTPFileStreamer.php.
References $ext.
|
static |
Convert a Range header value to an absolute (start, end) range tuple.
| string | $range | Range header value |
| int | $size | File size |
Definition at line 228 of file HTTPFileStreamer.php.
Referenced by stream().
|
static |
Takes HTTP headers in a name => value format and converts them to the weird format expected by stream().
| string[] | $headers |
Definition at line 51 of file HTTPFileStreamer.php.
References $header.
Referenced by wfImageAuthMain().
|
staticprotected |
Definition at line 255 of file HTTPFileStreamer.php.
|
static |
Send out a standard 404 message for a file.
| string | $fname | Full name and path of the file to stream |
| int | $flags | Bitfield of STREAM_* constants |
Definition at line 204 of file HTTPFileStreamer.php.
Referenced by FileBackendStore\doStreamFile(), SwiftFileBackend\doStreamFile(), and stream().
| HTTPFileStreamer::stream | ( | $headers = [], | |
| $sendErrors = true, | |||
| $optHeaders = [], | |||
| $flags = 0 ) |
Stream a file to the browser, adding all the headings and fun stuff.
Headers sent include: Content-type, Content-Length, Last-Modified, and Content-Disposition.
| array | $headers | Any additional headers to send if the file exists |
| bool | $sendErrors | Send error messages if errors occur (like 404) |
| array | $optHeaders | HTTP request header map (e.g. "range") (use lowercase keys) |
| int | $flags | Bitfield of STREAM_* constants |
Definition at line 88 of file HTTPFileStreamer.php.
References $header, $type, parseRange(), print, send404Message(), and STREAM_HEADLESS.
|
protected |
Definition at line 35 of file HTTPFileStreamer.php.
|
protected |
Definition at line 33 of file HTTPFileStreamer.php.
Referenced by __construct().
|
protected |
Definition at line 37 of file HTTPFileStreamer.php.
| const HTTPFileStreamer::STREAM_ALLOW_OB = 2 |
Definition at line 42 of file HTTPFileStreamer.php.
Referenced by FileBackendStore\doStreamFile().
| const HTTPFileStreamer::STREAM_HEADLESS = 1 |
Definition at line 40 of file HTTPFileStreamer.php.
Referenced by FileBackendStore\doStreamFile(), SwiftFileBackend\doStreamFile(), and stream().