74 $parts = explode(
':', $server, 2 );
75 $this->host = $parts[0];
76 $this->
port = isset( $parts[1] ) ? $parts[1] : 80;
86 if ( $this->socket !== null ) {
92 $this->
log(
"DNS error" );
96 $this->socket = socket_create( AF_INET, SOCK_STREAM, SOL_TCP );
97 socket_set_nonblock( $this->socket );
98 MediaWiki\suppressWarnings();
99 $ok = socket_connect( $this->socket,
$ip, $this->
port );
100 MediaWiki\restoreWarnings();
102 $error = socket_last_error( $this->socket );
103 if ( $error !== self::EINPROGRESS ) {
104 $this->
log(
"connection error: " . socket_strerror( $error ) );
118 if ( $this->readState ==
'idle' ) {
133 if ( !strlen( $this->writeBuffer ) ) {
150 if ( $this->ip === null ) {
154 throw new MWException(
'$wgSquidServers does not support IPv6' );
156 MediaWiki\suppressWarnings();
157 $this->ip = gethostbyname( $this->host );
158 if ( $this->ip === $this->host ) {
161 MediaWiki\restoreWarnings();
173 $this->socket =
false;
180 if ( $this->socket ) {
181 MediaWiki\suppressWarnings();
182 socket_set_block( $this->socket );
183 socket_shutdown( $this->socket );
184 socket_close( $this->socket );
185 MediaWiki\restoreWarnings();
187 $this->socket = null;
188 $this->readBuffer =
'';
201 if ( $wgSquidPurgeUseHostHeader ) {
203 $host = $url[
'host'];
204 if ( isset( $url[
'port'] ) && strlen( $url[
'port'] ) > 0 ) {
205 $host .=
":" . $url[
'port'];
207 $path = $url[
'path'];
208 if ( isset( $url[
'query'] ) && is_string( $url[
'query'] ) ) {
211 $request[] =
"PURGE $path HTTP/1.1";
216 $request[] =
"Connection: Keep-Alive";
217 $request[] =
"Proxy-Connection: Keep-Alive";
223 $this->requests[] = implode(
"\r\n",
$request );
224 if ( $this->currentRequestIndex === null ) {
233 return strlen( $this->writeBuffer ) == 0 && $this->readState ==
'idle';
240 if ( !strlen( $this->writeBuffer ) ) {
248 if ( strlen( $this->writeBuffer ) <= self::BUFFER_SIZE ) {
252 $buf = substr( $this->writeBuffer, 0, self::BUFFER_SIZE );
255 MediaWiki\suppressWarnings();
256 $bytesSent = socket_send(
$socket, $buf, strlen( $buf ),
$flags );
257 MediaWiki\restoreWarnings();
259 if ( $bytesSent ===
false ) {
260 $error = socket_last_error(
$socket );
261 if ( $error != self::EAGAIN && $error != self::EINTR ) {
262 $this->
log(
'write error: ' . socket_strerror( $error ) );
268 $this->writeBuffer = substr( $this->writeBuffer, $bytesSent );
281 MediaWiki\suppressWarnings();
282 $bytesRead = socket_recv(
$socket, $buf, self::BUFFER_SIZE, 0 );
283 MediaWiki\restoreWarnings();
284 if ( $bytesRead ===
false ) {
285 $error = socket_last_error(
$socket );
286 if ( $error != self::EAGAIN && $error != self::EINTR ) {
287 $this->
log(
'read error: ' . socket_strerror( $error ) );
291 } elseif ( $bytesRead === 0 ) {
297 $this->readBuffer .= $buf;
306 switch ( $this->readState ) {
311 $lines = explode(
"\r\n", $this->readBuffer, 2 );
312 if ( count(
$lines ) < 2 ) {
315 if ( $this->readState ==
'status' ) {
320 $this->readBuffer =
$lines[1];
323 if ( $this->bodyRemaining !== null ) {
324 if ( $this->bodyRemaining > strlen( $this->readBuffer ) ) {
325 $this->bodyRemaining -= strlen( $this->readBuffer );
326 $this->readBuffer =
'';
329 $this->readBuffer = substr( $this->readBuffer, $this->bodyRemaining );
330 $this->bodyRemaining = 0;
336 $this->readBuffer =
'';
340 throw new MWException( __METHOD__ .
': unexpected state' );
348 if ( !preg_match(
'!^HTTP/(\d+)\.(\d+) (\d{3}) (.*)$!',
$line, $m ) ) {
349 $this->
log(
'invalid status line' );
356 $this->
log(
"unexpected status code: $status $reason" );
360 $this->readState =
'header';
367 if ( preg_match(
'/^Content-Length: (\d+)$/i',
$line, $m ) ) {
368 $this->bodyRemaining = intval( $m[1] );
369 } elseif (
$line ===
'' ) {
370 $this->readState =
'body';
375 if ( $this->currentRequestIndex !== null ) {
376 unset( $this->requests[$this->currentRequestIndex] );
378 if ( count( $this->requests ) ) {
379 $this->readState =
'status';
380 $this->currentRequestIndex =
key( $this->requests );
383 $this->readState =
'idle';
384 $this->currentRequestIndex = null;
385 $this->writeBuffer =
'';
387 $this->bodyRemaining = null;
393 protected function log( $msg ) {
394 wfDebugLog(
'squid', __CLASS__ .
" ($this->host): $msg" );
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
mixed $currentRequestIndex
getSocket()
Open a socket if there isn't one open already, return it.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
static isIPv6($ip)
Given a string, determine if it as valid IP in IPv6 only.
when a variable name is used in a it is silently declared as a new local masking the global
getWriteSocketsForSelect()
Get write socket array for select()
static userAgent()
A standard user-agent we can use for external requests.
getReadSocketsForSelect()
Get read socket array for select()
$wgSquidPurgeUseHostHeader
Whether to use a Host header in purge requests sent to the proxy servers configured in $wgSquidServer...
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
doWrites()
Perform pending writes.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
wfAppendQuery($url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
An HTTP 1.0 client built for the purposes of purging Squid and Varnish.
static isIPv4($ip)
Given a string, determine if it as valid IP in IPv4 only.
__construct($server, $options=[])
markDown()
Close the socket and ignore any future purge requests.
static expand($url)
Expand local URLs to fully-qualified URLs using the internal protocol and host defined in $wgInternal...
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
error also a ContextSource you ll probably need to make sure the header is varied on $request
getIP()
Get the host's IP address.
queuePurge($url)
Queue a purge operation.
close()
Close the socket but allow it to be reopened for future purge requests.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
resource null $socket
The socket resource, or null for unconnected, or false for disabled due to error. ...
wfParseUrl($url)
parse_url() work-alike, but non-broken.
storage can be distributed across multiple and multiple web servers can use the same cache cluster *********************W A R N I N G ***********************Memcached has no security or authentication Please ensure that your server is appropriately and that the port(s) used for memcached servers are not publicly accessible.Otherwise