wiki.techinc.nl/includes/deferred/CdnCacheUpdate.php

356 lines
10 KiB
PHP
Raw Normal View History

<?php
/**
* 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
*
* @file
*/
2004-01-30 16:06:22 +00:00
use MediaWiki\MediaWikiServices;
use Wikimedia\Assert\Assert;
/**
* Handles purging the appropriate CDN objects given a list of URLs or Title instances
* @ingroup Cache
*/
class CdnCacheUpdate implements DeferrableUpdate, MergeableUpdate {
/** @var array[] List of (URL, rebound purge delay) tuples */
private $urlTuples = [];
/** @var array[] List of (Title, rebound purge delay) tuples */
private $titleTuples = [];
/** @var int Maximum seconds of rebound purge delay (sanity) */
const MAX_REBOUND_DELAY = 300;
/**
* @param string[]|Title[] $targets Collection of URLs/titles to be purged from CDN
* @param array $options Options map. Supports:
* - reboundDelay: how many seconds after the first purge to send a rebound purge.
* No rebound purge will be sent if this is not positive. [Default: 0]
*/
public function __construct( array $targets, array $options = [] ) {
$delay = min(
(int)max( $options['reboundDelay'] ?? 0, 0 ),
self::MAX_REBOUND_DELAY
);
foreach ( $targets as $target ) {
if ( $target instanceof Title ) {
$this->titleTuples[] = [ $target, $delay ];
} else {
$this->urlTuples[] = [ $target, $delay ];
}
}
2004-03-08 09:43:36 +00:00
}
2004-01-30 16:06:22 +00:00
public function merge( MergeableUpdate $update ) {
/** @var self $update */
Assert::parameterType( __CLASS__, $update, '$update' );
'@phan-var self $update';
$this->urlTuples = array_merge( $this->urlTuples, $update->urlTuples );
$this->titleTuples = array_merge( $this->titleTuples, $update->titleTuples );
}
/**
* Create an update object from an array of Title objects, or a TitleArray object
2011-04-25 22:41:54 +00:00
*
* @param Traversable|Title[] $titles
* @param string[] $urls
* @return CdnCacheUpdate
* @deprecated Since 1.35 Use HtmlCacheUpdater instead
*/
public static function newFromTitles( $titles, $urls = [] ) {
return new CdnCacheUpdate( array_merge( $titles, $urls ) );
}
public function doUpdate() {
// Resolve the final list of URLs just before purging them (T240083)
$reboundDelayByUrl = $this->resolveReboundDelayByUrl();
// Send the immediate purges to CDN
self::purge( array_keys( $reboundDelayByUrl ) );
$immediatePurgeTimestamp = time();
// Get the URLs that need rebound purges, grouped by seconds of purge delay
$urlsWithReboundByDelay = [];
foreach ( $reboundDelayByUrl as $url => $delay ) {
if ( $delay > 0 ) {
$urlsWithReboundByDelay[$delay][] = $url;
}
}
// Enqueue delayed purge jobs for these URLs (usually only one job)
$jobs = [];
foreach ( $urlsWithReboundByDelay as $delay => $urls ) {
$jobs[] = new CdnPurgeJob( [
'urls' => $urls,
'jobReleaseTimestamp' => $immediatePurgeTimestamp + $delay
] );
}
JobQueueGroup::singleton()->lazyPush( $jobs );
}
2011-04-25 22:41:54 +00:00
/**
* Purges a list of CDN nodes defined in $wgCdnServers.
2011-04-25 22:41:54 +00:00
* $urlArr should contain the full URLs to purge as values
* (example: $urlArr[] = 'http://my.host/something')
*
* @param string[] $urls List of full URLs to purge
2011-04-25 22:41:54 +00:00
*/
public static function purge( array $urls ) {
global $wgCdnServers, $wgHTCPRouting;
if ( !$urls ) {
return;
}
// Remove duplicate URLs from list
$urls = array_unique( $urls );
wfDebugLog( 'squid', __METHOD__ . ': ' . implode( ' ', $urls ) );
// Reliably broadcast the purge to all edge nodes
$ts = microtime( true );
$relayerGroup = MediaWikiServices::getInstance()->getEventRelayerGroup();
$relayerGroup->getRelayer( 'cdn-url-purges' )->notifyMulti(
'cdn-url-purges',
array_map(
function ( $url ) use ( $ts ) {
return [
'url' => $url,
'timestamp' => $ts,
];
},
$urls
)
);
// Send lossy UDP broadcasting if enabled
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
if ( $wgHTCPRouting ) {
self::HTCPPurge( $urls );
}
// Do direct server purges if enabled (this does not scale very well)
if ( $wgCdnServers ) {
self::naivePurge( $urls );
}
2004-06-30 02:02:43 +00:00
}
/**
* @return string[] List of URLs
*/
public function getUrls() {
return array_keys( $this->resolveReboundDelayByUrl() );
}
/**
* @return int[] Map of (URL => rebound purge delay)
*/
private function resolveReboundDelayByUrl() {
/** @var Title $title */
// Avoid multiple queries for getCdnUrls() call
$lb = MediaWikiServices::getInstance()->getLinkBatchFactory()->newLinkBatch();
foreach ( $this->titleTuples as list( $title, $delay ) ) {
$lb->addObj( $title );
}
$lb->execute();
$reboundDelayByUrl = [];
// Resolve the titles into CDN URLs
foreach ( $this->titleTuples as list( $title, $delay ) ) {
foreach ( $title->getCdnUrls() as $url ) {
// Use the highest rebound for duplicate URLs in order to handle the most lag
$reboundDelayByUrl[$url] = max( $reboundDelayByUrl[$url] ?? 0, $delay );
}
}
foreach ( $this->urlTuples as list( $url, $delay ) ) {
// Use the highest rebound for duplicate URLs in order to handle the most lag
$reboundDelayByUrl[$url] = max( $reboundDelayByUrl[$url] ?? 0, $delay );
}
return $reboundDelayByUrl;
}
2011-07-12 19:59:35 +00:00
/**
* Send Hyper Text Caching Protocol (HTCP) CLR requests
*
2011-07-12 19:59:35 +00:00
* @throws MWException
* @param string[] $urls Collection of URLs to purge
2011-07-12 19:59:35 +00:00
*/
private static function HTCPPurge( array $urls ) {
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
global $wgHTCPRouting, $wgHTCPMulticastTTL;
// HTCP CLR operation
$htcpOpCLR = 4;
// @todo FIXME: PHP doesn't support these socket constants (include/linux/in.h)
if ( !defined( "IPPROTO_IP" ) ) {
define( "IPPROTO_IP", 0 );
define( "IP_MULTICAST_LOOP", 34 );
define( "IP_MULTICAST_TTL", 33 );
}
// pfsockopen doesn't work because we need set_sock_opt
$conn = socket_create( AF_INET, SOCK_DGRAM, SOL_UDP );
if ( !$conn ) {
$errstr = socket_strerror( socket_last_error() );
wfDebugLog( 'squid', __METHOD__ .
": Error opening UDP socket: $errstr" );
return;
}
// Set socket options
socket_set_option( $conn, IPPROTO_IP, IP_MULTICAST_LOOP, 0 );
if ( $wgHTCPMulticastTTL != 1 ) {
// Set multicast time to live (hop count) option on socket
socket_set_option( $conn, IPPROTO_IP, IP_MULTICAST_TTL,
$wgHTCPMulticastTTL );
}
// Get sequential trx IDs for packet loss counting
$idGenerator = MediaWikiServices::getInstance()->getGlobalIdGenerator();
$ids = $idGenerator->newSequentialPerNodeIDs(
'squidhtcppurge', 32,
count( $urls ),
$idGenerator::QUICK_VOLATILE
);
foreach ( $urls as $url ) {
if ( !is_string( $url ) ) {
throw new MWException( 'Bad purge URL' );
}
$url = self::expand( $url );
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
$conf = self::getRuleForURL( $url, $wgHTCPRouting );
if ( !$conf ) {
wfDebugLog( 'squid', __METHOD__ .
"No HTCP rule configured for URL {$url} , skipping" );
continue;
}
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
if ( isset( $conf['host'] ) && isset( $conf['port'] ) ) {
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
// Normalize single entries
$conf = [ $conf ];
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
}
foreach ( $conf as $subconf ) {
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
if ( !isset( $subconf['host'] ) || !isset( $subconf['port'] ) ) {
throw new MWException( "Invalid HTCP rule for URL $url\n" );
}
}
// Construct a minimal HTCP request diagram
// as per RFC 2756
// Opcode 'CLR', no response desired, no auth
$htcpTransID = current( $ids );
next( $ids );
$htcpSpecifier = pack( 'na4na*na8n',
4, 'HEAD', strlen( $url ), $url,
8, 'HTTP/1.0', 0 );
$htcpDataLen = 8 + 2 + strlen( $htcpSpecifier );
$htcpLen = 4 + $htcpDataLen + 2;
// Note! Squid gets the bit order of the first
// word wrong, wrt the RFC. Apparently no other
// implementation exists, so adapt to Squid
$htcpPacket = pack( 'nxxnCxNxxa*n',
$htcpLen, $htcpDataLen, $htcpOpCLR,
$htcpTransID, $htcpSpecifier, 2 );
wfDebugLog( 'squid', __METHOD__ .
"Purging URL $url via HTCP" );
foreach ( $conf as $subconf ) {
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
socket_sendto( $conn, $htcpPacket, $htcpLen, 0,
$subconf['host'], $subconf['port'] );
}
}
}
/**
* Send HTTP PURGE requests for each of the URLs to all of the cache servers
*
* @param string[] $urls
* @throws Exception
*/
private static function naivePurge( array $urls ) {
global $wgCdnServers, $wgVersion;
$reqs = [];
foreach ( $urls as $url ) {
$urlInfo = wfParseUrl( self::expand( $url ) );
$urlHost = strlen( $urlInfo['port'] ?? null )
? IP::combineHostAndPort( $urlInfo['host'], $urlInfo['port'] )
: $urlInfo['host'];
$urlPath = strlen( $urlInfo['query'] ?? null )
? wfAppendQuery( $urlInfo['path'], $urlInfo['query'] )
: $urlInfo['path'];
$baseReq = [
'method' => 'PURGE',
'url' => $urlPath,
'headers' => [
'Host' => $urlHost,
'Connection' => 'Keep-Alive',
'Proxy-Connection' => 'Keep-Alive',
'User-Agent' => "MediaWiki/$wgVersion " . __CLASS__
]
];
foreach ( $wgCdnServers as $server ) {
$reqs[] = ( $baseReq + [ 'proxy' => $server ] );
}
}
$http = new MultiHttpClient( [ 'maxConnsPerHost' => 8, 'usePipelining' => true ] );
$http->runMulti( $reqs );
}
/**
* Expand local URLs to fully-qualified URLs using the internal protocol
* and host defined in $wgInternalServer. Input that's already fully-
* qualified will be passed through unchanged.
*
* This is used to generate purge URLs that may be either local to the
* main wiki or include a non-native host, such as images hosted on a
* second internal server.
*
* Client functions should not need to call this.
*
* @param string $url
* @return string
*/
private static function expand( $url ) {
return wfExpandUrl( $url, PROTO_INTERNAL );
}
/**
* Find the HTCP routing rule to use for a given URL.
* @param string $url URL to match
$wgHTCPMulticastRouting rename + multi hosts support This patch does two things: A) rename $wgHTCPMulticastRouting to $wgHTCPRouting since you can have MediaWiki send purge packets over unicast. B) add support for multi hosts purge in the few cases one want to split the multicast groups per cache role but still want to purge more than one cache group. A) rename The rename adds deprecation notices in the comments and adds a back compatibility layer in the case someone is already using this feature. Given Wikimedia Foundation is not even using it, it is very unlikely, but yet: better safe than sorry. My logic is flawed sometime, so that needs a bit of review :) There is two levels of deprecations to watch for: - pre mw1.20 which useds $wgHTCPMulticastAddress and $wgHTCPMulticastPort - pre mw1.22 (aka before this patch) that used $wgHTCPMulticastRouting The resulting configuration should be properly loaded in $wgHTCPRouting. B) multi hosts The HTCP routing let you split purges to different hosts according to the URL. In some case, we want to be able to purge an URL from more than one multicast group. A Wikimedia example would be to send text related purges to the text and mobiles caches while upload purges are sent to the upload caches. An abstracted example would be: $wgHTCPRouting = array( // upload URLs to upload caches '/(upload|thumbs)/' => array( 'host' => '<ip for upload caches>' ), // Everything else to text & mobile '' => array( array( 'host' => '<ip for text caches>' ), array( 'host' => '<ip for mobile caches>' ), ), ); Change-Id: Ie87f6b81007f47f9cb439371743f3ad9a4b0c774
2013-07-02 10:50:48 +00:00
* @param array $rules Array of rules, see $wgHTCPRouting for format and behavior
* @return mixed Element of $rules that matched, or false if nothing matched
*/
private static function getRuleForURL( $url, $rules ) {
foreach ( $rules as $regex => $routing ) {
if ( $regex === '' || preg_match( $regex, $url ) ) {
return $routing;
}
}
return false;
}
2004-01-30 16:06:22 +00:00
}