1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
<?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
* @author Roan Kattouw
* @author Trevor Parscal
*/
namespace MediaWiki\ResourceLoader;
use MediaWiki\Json\FormatJson;
use MediaWiki\MediaWikiServices;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use Wikimedia\ObjectCache\WANObjectCache;
use Wikimedia\Rdbms\Database;
/**
* This class generates message blobs for use by ResourceLoader.
*
* A message blob is a JSON object containing the interface messages for a
* certain module in a certain language.
*
* @ingroup ResourceLoader
* @since 1.17
*/
class MessageBlobStore implements LoggerAwareInterface {
/** @var ResourceLoader */
private $resourceloader;
/** @var LoggerInterface */
protected $logger;
/** @var WANObjectCache */
protected $wanCache;
/**
* @param ResourceLoader $rl
* @param LoggerInterface|null $logger
* @param WANObjectCache|null $wanObjectCache
*/
public function __construct(
ResourceLoader $rl,
?LoggerInterface $logger,
?WANObjectCache $wanObjectCache
) {
$this->resourceloader = $rl;
$this->logger = $logger ?: new NullLogger();
// NOTE: when changing this assignment, make sure the code in the instantiator for
// LocalisationCache which calls MessageBlobStore::clearGlobalCacheEntry() uses the
// same cache object.
$this->wanCache = $wanObjectCache ?: MediaWikiServices::getInstance()
->getMainWANObjectCache();
}
/**
* @since 1.27
* @param LoggerInterface $logger
*/
public function setLogger( LoggerInterface $logger ) {
$this->logger = $logger;
}
/**
* Get the message blob for a module
*
* @since 1.27
* @param Module $module
* @param string $lang Language code
* @return string JSON
*/
public function getBlob( Module $module, $lang ) {
$blobs = $this->getBlobs( [ $module->getName() => $module ], $lang );
return $blobs[$module->getName()];
}
/**
* Get the message blobs for a set of modules
*
* @since 1.27
* @param Module[] $modules Array of module objects keyed by name
* @param string $lang Language code
* @return string[] An array mapping module names to message blobs
*/
public function getBlobs( array $modules, $lang ) {
// Each cache key for a message blob by module name and language code also has a generic
// check key without language code. This is used to invalidate any and all language subkeys
// that exist for a module from the updateMessage() method.
$checkKeys = [
self::makeGlobalPurgeKey( $this->wanCache )
];
$cacheKeys = [];
foreach ( $modules as $name => $module ) {
$cacheKey = $this->makeBlobCacheKey( $name, $lang, $module );
$cacheKeys[$name] = $cacheKey;
$checkKeys[$cacheKey][] = $this->makeModulePurgeKey( $name );
}
$curTTLs = [];
$result = $this->wanCache->getMulti( array_values( $cacheKeys ), $curTTLs, $checkKeys );
$blobs = [];
foreach ( $modules as $name => $module ) {
$key = $cacheKeys[$name];
if ( !isset( $result[$key] ) || $curTTLs[$key] === null || $curTTLs[$key] < 0 ) {
$blobs[$name] = $this->recacheMessageBlob( $key, $module, $lang );
} else {
// Use unexpired cache
$blobs[$name] = $result[$key];
}
}
return $blobs;
}
/**
* Global check key for ::clear()
*
* @param WANObjectCache $cache
* @return string Cache key
*/
private static function makeGlobalPurgeKey( WANObjectCache $cache ) {
return $cache->makeGlobalKey( 'resourceloader-messageblob' );
}
/**
* Per-module check key, for ::updateMessage()
*
* @param string $name
* @return string Cache key
*/
private function makeModulePurgeKey( $name ) {
return $this->wanCache->makeKey( 'resourceloader-messageblob', $name );
}
/**
* @param string $name
* @param string $lang
* @param Module $module
* @return string Cache key
*/
private function makeBlobCacheKey( $name, $lang, Module $module ) {
$messages = array_values( array_unique( $module->getMessages() ) );
sort( $messages );
return $this->wanCache->makeKey( 'resourceloader-messageblob',
$name,
$lang,
md5( json_encode( $messages ) )
);
}
/**
* @since 1.27
* @param string $cacheKey
* @param Module $module
* @param string $lang
* @return string JSON blob
*/
protected function recacheMessageBlob( $cacheKey, Module $module, $lang ) {
$blob = $this->generateMessageBlob( $module, $lang );
$cache = $this->wanCache;
$dbr = MediaWikiServices::getInstance()->getConnectionProvider()->getReplicaDatabase();
$cache->set( $cacheKey, $blob,
// Add part of a day to TTL to avoid all modules expiring at once
$cache::TTL_WEEK + mt_rand( 0, $cache::TTL_DAY ),
Database::getCacheSetOptions( $dbr )
);
return $blob;
}
/**
* Invalidate cache keys for modules using this message key.
* Called by MessageCache when a message has changed.
*
* @param string $key Message key
*/
public function updateMessage( $key ): void {
$moduleNames = $this->resourceloader->getModulesByMessage( $key );
foreach ( $moduleNames as $moduleName ) {
// Use the default holdoff TTL to account for database replica DB lag
// which can affect MessageCache.
$this->wanCache->touchCheckKey( $this->makeModulePurgeKey( $moduleName ) );
}
}
/**
* Invalidate cache keys for all known modules.
*
* Used by purgeMessageBlobStore.php
*/
public function clear() {
self::clearGlobalCacheEntry( $this->wanCache );
}
/**
* Invalidate cache keys for all known modules.
*
* Used by LocalisationCache and DatabaseUpdater after regenerating l10n cache.
*
* @param WANObjectCache $cache
*/
public static function clearGlobalCacheEntry( WANObjectCache $cache ) {
// Disable holdoff TTL because:
// - LocalisationCache is populated by messages on-disk and don't have DB lag,
// thus there is no need for hold off. We only clear it after new localisation
// updates are known to be deployed to all servers.
// - This global check key invalidates message blobs for all modules for all wikis
// in cache contexts (e.g. languages, skins). Setting a hold-off on this key could
// cause a cache stampede since no values would be stored for several seconds.
$cache->touchCheckKey( self::makeGlobalPurgeKey( $cache ), $cache::HOLDOFF_TTL_NONE );
}
/**
* @since 1.27
* @param string $key Message key
* @param string $lang Language code
* @return string|null
*/
protected function fetchMessage( $key, $lang ) {
$message = wfMessage( $key )->inLanguage( $lang );
if ( !$message->exists() ) {
$this->logger->warning( 'Failed to find {messageKey} ({lang})', [
'messageKey' => $key,
'lang' => $lang,
] );
$value = null;
} else {
$value = $message->plain();
}
return $value;
}
/**
* Generate the message blob for a given module in a given language.
*
* @param Module $module
* @param string $lang Language code
* @return string JSON blob
*/
private function generateMessageBlob( Module $module, $lang ) {
$messages = [];
foreach ( $module->getMessages() as $key ) {
$value = $this->fetchMessage( $key, $lang );
// If the message does not exist, omit it from the blob so that
// client-side mw.message may do its own existence handling.
if ( $value !== null ) {
$messages[$key] = $value;
}
}
$json = FormatJson::encode( (object)$messages, false, FormatJson::UTF8_OK );
// @codeCoverageIgnoreStart
if ( $json === false ) {
$this->logger->warning( 'Failed to encode message blob for {module} ({lang})', [
'module' => $module->getName(),
'lang' => $lang,
] );
$json = '{}';
}
// codeCoverageIgnoreEnd
return $json;
}
}
|