* Also added getBlob() and getBlobs() methods. These don't require passing ResourceLoader as argument. In preparation for T113092. Change-Id: I3239c45f0243eca1eaf85bc53fca736e4c9a209c
420 lines
12 KiB
PHP
420 lines
12 KiB
PHP
<?php
|
|
/**
|
|
* Resource message blobs storage used by ResourceLoader.
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
/**
|
|
* This class provides access to the message blobs used by ResourceLoader modules.
|
|
*
|
|
* A message blob is a JSON object containing the interface messages for a
|
|
* certain module in a certain language. These message blobs are cached
|
|
* in the automatically invalidated when one of their constituent messages,
|
|
* or the module definition, is changed.
|
|
*/
|
|
class MessageBlobStore {
|
|
/**
|
|
* In-process cache for message blobs.
|
|
*
|
|
* Keyed by language code, then module name.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $blobCache = array();
|
|
|
|
/* @var ResourceLoader */
|
|
protected $resourceloader;
|
|
|
|
/**
|
|
* @param ResourceLoader $resourceloader
|
|
*/
|
|
public function __construct( ResourceLoader $resourceloader = null ) {
|
|
$this->resourceloader = $resourceloader;
|
|
}
|
|
|
|
/**
|
|
* Get the message blob for a module
|
|
*
|
|
* @since 1.27
|
|
* @param ResourceLoaderModule $module
|
|
* @param string $lang Language code
|
|
* @return string JSON
|
|
*/
|
|
public function getBlob( ResourceLoaderModule $module, $lang ) {
|
|
$blobs = $this->getBlobs( array( $module->getName() => $module ), $lang );
|
|
return $blobs[$module->getName()];
|
|
}
|
|
|
|
/**
|
|
* Get the message blobs for a set of modules
|
|
*
|
|
* @since 1.27
|
|
* @param ResourceLoader $resourceLoader
|
|
* @param array $modules Array of module objects keyed by module name
|
|
* @param string $lang Language code
|
|
* @return array An array mapping module names to message blobs
|
|
*/
|
|
public function getBlobs( $modules, $lang ) {
|
|
if ( !count( $modules ) ) {
|
|
return array();
|
|
}
|
|
|
|
$blobs = array();
|
|
|
|
// Try in-process cache
|
|
$missingFromCache = array();
|
|
foreach ( $modules as $name => $module ) {
|
|
if ( isset( $this->blobCache[$lang][$name] ) ) {
|
|
$blobs[$name] = $this->blobCache[$lang][$name];
|
|
} else {
|
|
$missingFromCache[$name] = $module;
|
|
}
|
|
}
|
|
|
|
// Try DB cache
|
|
if ( $missingFromCache ) {
|
|
$blobs += $this->getFromDB( $missingFromCache, $lang );
|
|
}
|
|
|
|
// Generate new blobs for any remaining modules and store in DB
|
|
$missingFromDb = array_diff( array_keys( $modules ), array_keys( $blobs ) );
|
|
foreach ( $missingFromDb as $name ) {
|
|
$blob = $this->insertMessageBlob( $name, $modules[$name], $lang );
|
|
if ( $blob ) {
|
|
$blobs[$name] = $blob;
|
|
}
|
|
}
|
|
|
|
// Update in-process cache
|
|
if ( isset( $this->blobCache[$lang] ) ) {
|
|
$this->blobCache[$lang] += $blobs;
|
|
} else {
|
|
$this->blobCache[$lang] = $blobs;
|
|
}
|
|
|
|
return $blobs;
|
|
}
|
|
|
|
/**
|
|
* Get the message blobs for a set of modules
|
|
*
|
|
* @deprecated since 1.27 Use getBlobs() instead
|
|
* @return array
|
|
*/
|
|
public function get( ResourceLoader $resourceLoader, $modules, $lang ) {
|
|
return $this->getBlobs( $modules, $lang );
|
|
}
|
|
|
|
/**
|
|
* Generate and insert a new message blob. If the blob was already
|
|
* present, it is not regenerated; instead, the preexisting blob
|
|
* is fetched and returned.
|
|
*
|
|
* @param string $name Module name
|
|
* @param ResourceLoaderModule $module
|
|
* @param string $lang Language code
|
|
* @return string JSON blob
|
|
*/
|
|
public function insertMessageBlob( $name, ResourceLoaderModule $module, $lang ) {
|
|
$blob = $this->generateMessageBlob( $module, $lang );
|
|
|
|
if ( !$blob ) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
$success = $dbw->insert( 'msg_resource', array(
|
|
'mr_lang' => $lang,
|
|
'mr_resource' => $name,
|
|
'mr_blob' => $blob,
|
|
'mr_timestamp' => $dbw->timestamp()
|
|
),
|
|
__METHOD__,
|
|
array( 'IGNORE' )
|
|
);
|
|
|
|
if ( $success && $dbw->affectedRows() == 0 ) {
|
|
// Blob was already present, fetch it
|
|
$blob = $dbw->selectField( 'msg_resource', 'mr_blob', array(
|
|
'mr_resource' => $name,
|
|
'mr_lang' => $lang,
|
|
),
|
|
__METHOD__
|
|
);
|
|
}
|
|
} catch ( DBError $e ) {
|
|
wfDebug( __METHOD__ . " failed to update DB: $e\n" );
|
|
}
|
|
return $blob;
|
|
}
|
|
|
|
/**
|
|
* Update the message blob for a given module in a given language
|
|
*
|
|
* @param string $name Module name
|
|
* @param ResourceLoaderModule $module
|
|
* @param string $lang Language code
|
|
* @return string|null Regenerated message blob, or null if there was no blob for
|
|
* the given module/language pair.
|
|
*/
|
|
public function updateModule( $name, ResourceLoaderModule $module, $lang ) {
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
$row = $dbw->selectRow( 'msg_resource', 'mr_blob',
|
|
array( 'mr_resource' => $name, 'mr_lang' => $lang ),
|
|
__METHOD__
|
|
);
|
|
if ( !$row ) {
|
|
return null;
|
|
}
|
|
|
|
$newBlob = $this->generateMessageBlob( $module, $lang );
|
|
|
|
try {
|
|
$newRow = array(
|
|
'mr_resource' => $name,
|
|
'mr_lang' => $lang,
|
|
'mr_blob' => $newBlob,
|
|
'mr_timestamp' => $dbw->timestamp()
|
|
);
|
|
|
|
$dbw->replace( 'msg_resource',
|
|
array( array( 'mr_resource', 'mr_lang' ) ),
|
|
$newRow, __METHOD__
|
|
);
|
|
} catch ( Exception $e ) {
|
|
wfDebug( __METHOD__ . " failed to update DB: $e\n" );
|
|
}
|
|
return $newBlob;
|
|
}
|
|
|
|
/**
|
|
* Update a single message in all message blobs it occurs in.
|
|
*
|
|
* @param string $key Message key
|
|
*/
|
|
public function updateMessage( $key ) {
|
|
try {
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
|
|
// Keep running until the updates queue is empty.
|
|
// Due to update conflicts, the queue might not be emptied
|
|
// in one iteration.
|
|
$updates = null;
|
|
do {
|
|
$updates = $this->getUpdatesForMessage( $key, $updates );
|
|
|
|
foreach ( $updates as $k => $update ) {
|
|
// Update the row on the condition that it
|
|
// didn't change since we fetched it by putting
|
|
// the timestamp in the WHERE clause.
|
|
$success = $dbw->update( 'msg_resource',
|
|
array(
|
|
'mr_blob' => $update['newBlob'],
|
|
'mr_timestamp' => $dbw->timestamp() ),
|
|
array(
|
|
'mr_resource' => $update['resource'],
|
|
'mr_lang' => $update['lang'],
|
|
'mr_timestamp' => $update['timestamp'] ),
|
|
__METHOD__
|
|
);
|
|
|
|
// Only requeue conflicted updates.
|
|
// If update() returned false, don't retry, for
|
|
// fear of getting into an infinite loop
|
|
if ( !( $success && $dbw->affectedRows() == 0 ) ) {
|
|
// Not conflicted
|
|
unset( $updates[$k] );
|
|
}
|
|
}
|
|
} while ( count( $updates ) );
|
|
|
|
} catch ( Exception $e ) {
|
|
wfDebug( __METHOD__ . " failed to update DB: $e\n" );
|
|
}
|
|
}
|
|
|
|
public function clear() {
|
|
try {
|
|
// Not using TRUNCATE, because that needs extra permissions,
|
|
// which maybe not granted to the database user.
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
$dbw->delete( 'msg_resource', '*', __METHOD__ );
|
|
} catch ( Exception $e ) {
|
|
wfDebug( __METHOD__ . " failed to update DB: $e\n" );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return ResourceLoader
|
|
*/
|
|
protected function getResourceLoader() {
|
|
// For back-compat this class supports instantiation without passing ResourceLoader
|
|
// Lazy-initialise this property because most callers don't need it.
|
|
if ( $this->resourceloader === null ) {
|
|
wfDebug( __CLASS__ . ' created without a ResourceLoader instance' );
|
|
$this->resourceloader = new ResourceLoader();
|
|
}
|
|
|
|
return $this->resourceloader;
|
|
}
|
|
|
|
/**
|
|
* Create an update queue for updateMessage()
|
|
*
|
|
* @param string $key Message key
|
|
* @param array $prevUpdates Updates queue to refresh or null to build a fresh update queue
|
|
* @return array Updates queue
|
|
*/
|
|
private function getUpdatesForMessage( $key, $prevUpdates = null ) {
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
|
|
if ( is_null( $prevUpdates ) ) {
|
|
$rl = $this->getResourceLoader();
|
|
$moduleNames = $rl->getModulesByMessage( $key );
|
|
// Fetch all blobs referencing $key
|
|
$res = $dbw->select(
|
|
array( 'msg_resource' ),
|
|
array( 'mr_resource', 'mr_lang', 'mr_blob', 'mr_timestamp' ),
|
|
array(
|
|
'mr_resource' => $moduleNames,
|
|
),
|
|
__METHOD__
|
|
);
|
|
} else {
|
|
// Refetch the blobs referenced by $prevUpdates
|
|
|
|
// Reorganize the (resource, lang) pairs in the format
|
|
// expected by makeWhereFrom2d()
|
|
$twoD = array();
|
|
|
|
foreach ( $prevUpdates as $update ) {
|
|
$twoD[$update['resource']][$update['lang']] = true;
|
|
}
|
|
|
|
$res = $dbw->select( 'msg_resource',
|
|
array( 'mr_resource', 'mr_lang', 'mr_blob', 'mr_timestamp' ),
|
|
$dbw->makeWhereFrom2d( $twoD, 'mr_resource', 'mr_lang' ),
|
|
__METHOD__
|
|
);
|
|
}
|
|
|
|
// Build the new updates queue
|
|
$updates = array();
|
|
|
|
foreach ( $res as $row ) {
|
|
$updates[] = array(
|
|
'resource' => $row->mr_resource,
|
|
'lang' => $row->mr_lang,
|
|
'timestamp' => $row->mr_timestamp,
|
|
'newBlob' => $this->reencodeBlob( $row->mr_blob, $key, $row->mr_lang )
|
|
);
|
|
}
|
|
|
|
return $updates;
|
|
}
|
|
|
|
/**
|
|
* @param string $key Message key
|
|
* @param string $lang Language code
|
|
* @return string
|
|
*/
|
|
protected function fetchMessage( $key, $lang ) {
|
|
$message = wfMessage( $key )->inLanguage( $lang );
|
|
if ( !$message->exists() ) {
|
|
wfDebugLog( 'resourceloader', __METHOD__ . " failed to find: '$key' ($lang)" );
|
|
}
|
|
return $message->plain();
|
|
}
|
|
|
|
/**
|
|
* Reencode a message blob with the updated value for a message
|
|
*
|
|
* @param string $blob Message blob (JSON object)
|
|
* @param string $key Message key
|
|
* @param string $lang Language code
|
|
* @return string Message blob with $key replaced with its new value
|
|
*/
|
|
private function reencodeBlob( $blob, $key, $lang ) {
|
|
$decoded = FormatJson::decode( $blob, true );
|
|
$decoded[$key] = $this->fetchMessage( $key, $lang );
|
|
return FormatJson::encode( (object)$decoded );
|
|
}
|
|
|
|
/**
|
|
* Get the message blobs for a set of modules from the database.
|
|
* Modules whose blobs are not in the database are silently dropped.
|
|
*
|
|
* @param array $modules Array of module objects by name
|
|
* @param string $lang Language code
|
|
* @throws MWException
|
|
* @return array Array mapping module names to blobs
|
|
*/
|
|
private function getFromDB( $modules, $lang ) {
|
|
if ( !count( $modules ) ) {
|
|
return array();
|
|
}
|
|
|
|
$retval = array();
|
|
$dbr = wfGetDB( DB_SLAVE );
|
|
$res = $dbr->select( 'msg_resource',
|
|
array( 'mr_blob', 'mr_resource', 'mr_timestamp' ),
|
|
array( 'mr_resource' => array_keys( $modules ), 'mr_lang' => $lang ),
|
|
__METHOD__
|
|
);
|
|
|
|
foreach ( $res as $row ) {
|
|
if ( !isset( $modules[ $row->mr_resource ] ) ) {
|
|
// This shouldn't be possible
|
|
throw new MWException( __METHOD__ . ' passed an invalid module name' );
|
|
}
|
|
$module = $modules[ $row->mr_resource ];
|
|
|
|
// Update the module's blob if the list of messages changed
|
|
$blobKeys = array_keys( FormatJson::decode( $row->mr_blob, true ) );
|
|
$moduleMsgs = array_values( array_unique( $module->getMessages() ) );
|
|
if ( $blobKeys !== $moduleMsgs ) {
|
|
$retval[$row->mr_resource] = $this->updateModule( $row->mr_resource, $module, $lang );
|
|
} else {
|
|
$retval[$row->mr_resource] = $row->mr_blob;
|
|
}
|
|
}
|
|
|
|
return $retval;
|
|
}
|
|
|
|
/**
|
|
* Generate the message blob for a given module in a given language.
|
|
*
|
|
* @param ResourceLoaderModule $module
|
|
* @param string $lang Language code
|
|
* @return string JSON blob
|
|
*/
|
|
private function generateMessageBlob( ResourceLoaderModule $module, $lang ) {
|
|
$messages = array();
|
|
|
|
foreach ( $module->getMessages() as $key ) {
|
|
$messages[$key] = $this->fetchMessage( $key, $lang );
|
|
}
|
|
|
|
return FormatJson::encode( (object)$messages );
|
|
}
|
|
}
|