22use Wikimedia\Timestamp\ConvertibleTimestamp;
53 $nameLower = strtolower(
$name );
54 if ( in_array( $nameLower, [
'range',
'if-modified-since' ],
true ) ) {
55 $optHeaders[$nameLower] =
$header;
57 $rawHeaders[] =
"$name: $header";
60 return [ $rawHeaders, $optHeaders ];
71 $this->obResetFunc =
$params[
'obResetFunc'] ?? [ __CLASS__,
'resetOutputBuffers' ];
72 $this->streamMimeFunc =
$params[
'streamMimeFunc'] ?? [ __CLASS__,
'contentTypeFromPath' ];
87 $headers = [], $sendErrors =
true, $optHeaders = [], $flags = 0
90 if ( ( ( $flags & self::STREAM_HEADLESS ) == 0 || $headers ) && headers_sent() ) {
91 echo
"Headers already sent, terminating.\n";
103 Wikimedia\suppressWarnings();
104 $info = stat( $this->path );
105 Wikimedia\restoreWarnings();
107 if ( !is_array( $info ) ) {
115 $mtimeCT =
new ConvertibleTimestamp( $info[
'mtime'] );
116 $headerFunc(
'Last-Modified: ' . $mtimeCT->getTimestamp( TS_RFC2822 ) );
118 if ( ( $flags & self::STREAM_ALLOW_OB ) == 0 ) {
119 call_user_func( $this->obResetFunc );
122 $type = call_user_func( $this->streamMimeFunc, $this->path );
124 $headerFunc(
"Content-type: $type" );
130 $headerFunc(
'Content-type: application/x-wiki' );
134 if ( isset( $optHeaders[
'if-modified-since'] ) ) {
135 $modsince = preg_replace(
'/;.*$/',
'', $optHeaders[
'if-modified-since'] );
136 if ( $mtimeCT->getTimestamp( TS_UNIX ) <= strtotime( $modsince ) ) {
137 ini_set(
'zlib.output_compression', 0 );
148 if ( isset( $optHeaders[
'range'] ) ) {
150 if ( is_array( $range ) ) {
152 $headerFunc(
'Content-Length: ' . $range[2] );
153 $headerFunc(
"Content-Range: bytes {$range[0]}-{$range[1]}/{$info['size']}" );
154 } elseif ( $range ===
'invalid' ) {
157 $headerFunc(
'Cache-Control: no-cache' );
158 $headerFunc(
'Content-Type: text/html; charset=utf-8' );
159 $headerFunc(
'Content-Range: bytes */' . $info[
'size'] );
164 $headerFunc(
'Content-Length: ' . $info[
'size'] );
168 $headerFunc(
'Content-Length: ' . $info[
'size'] );
171 if ( is_array( $range ) ) {
172 $handle = fopen( $this->path,
'rb' );
175 fseek( $handle, $range[0] );
176 $remaining = $range[2];
177 while ( $remaining > 0 && $ok ) {
178 $bytes = min( $remaining, 8 * 1024 );
179 $data = fread( $handle, $bytes );
180 $remaining -= $bytes;
188 return readfile( $this->path ) !==
false;
202 if ( ( $flags & self::STREAM_HEADLESS ) == 0 ) {
204 header(
'Cache-Control: no-cache' );
205 header(
'Content-Type: text/html; charset=utf-8' );
207 $encFile = htmlspecialchars(
$fname );
208 $encScript = htmlspecialchars( $_SERVER[
'SCRIPT_NAME'] );
209 echo
"<!DOCTYPE html><html><body>
210 <h1>File not found</h1>
211 <p>Although this PHP script ($encScript) exists, the file requested for output
212 ($encFile) does not.</p>
227 if ( preg_match(
'#^bytes=(\d*)-(\d*)$#', $range, $m ) ) {
228 list( , $start, $end ) = $m;
229 if ( $start ===
'' && $end ===
'' ) {
230 $absRange = [ 0, $size - 1 ];
231 } elseif ( $start ===
'' ) {
232 $absRange = [ $size - $end, $size - 1 ];
233 } elseif ( $end ===
'' ) {
234 $absRange = [ $start, $size - 1 ];
236 $absRange = [ $start, $end ];
238 if ( $absRange[0] >= 0 && $absRange[1] >= $absRange[0] ) {
239 if ( $absRange[0] < $size ) {
240 $absRange[1] = min( $absRange[1], $size - 1 );
241 $absRange[2] = $absRange[1] - $absRange[0] + 1;
243 } elseif ( $absRange[0] == 0 && $size == 0 ) {
244 return 'unrecognized';
249 return 'unrecognized';
253 while ( ob_get_status() ) {
254 if ( !ob_end_clean() ) {
269 $ext = strrchr( $filename,
'.' );
270 $ext =
$ext ===
false ?
'' : strtolower( substr(
$ext, 1 ) );
283 return 'unknown/unknown';
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Functions related to the output of file content.
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.
static resetOutputBuffers()
static contentTypeFromPath( $filename)
Determine the file type of a file based on the path.
static parseRange( $range, $size)
Convert a Range header value to an absolute (start, end) range tuple.
__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 header( $code)
Output an HTTP status code header.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
while(( $__line=Maintenance::readconsole()) !==false) print
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
Allows to change the fields on the form that will be generated $name
processing should stop and the error should be shown to the user * false
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
if(!is_readable( $file)) $ext