mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 01:10:07 +00:00
3536de166e
The compare with DEFAULT_TS_DB does not work, because postgres using different timestamp format on the database Bug: T244898 Change-Id: I81fe88f78d94499ae9082a4fb6b1191bd432f977
154 lines
3.5 KiB
PHP
154 lines
3.5 KiB
PHP
<?php
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use MediaWiki\User\UserIdentity;
|
|
|
|
/**
|
|
* Manages what wikis a user has unread notifications on
|
|
*/
|
|
class EchoUnreadWikis {
|
|
|
|
private const DEFAULT_TS = '00000000000000';
|
|
private const DEFAULT_TS_DB = '00010101010101';
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @var MWEchoDbFactory
|
|
*/
|
|
private $dbFactory;
|
|
|
|
/**
|
|
* @param int $id Central user id
|
|
*/
|
|
public function __construct( $id ) {
|
|
$this->id = $id;
|
|
$this->dbFactory = MWEchoDbFactory::newFromDefault();
|
|
}
|
|
|
|
/**
|
|
* Use the user id provided by the CentralIdLookup
|
|
*
|
|
* @param UserIdentity $user
|
|
* @return EchoUnreadWikis|false
|
|
*/
|
|
public static function newFromUser( UserIdentity $user ) {
|
|
$id = MediaWikiServices::getInstance()
|
|
->getCentralIdLookup()
|
|
->centralIdFromLocalUser( $user, CentralIdLookup::AUDIENCE_RAW );
|
|
if ( !$id ) {
|
|
return false;
|
|
}
|
|
|
|
return new self( $id );
|
|
}
|
|
|
|
/**
|
|
* @param int $index DB_* constant
|
|
* @return bool|\Wikimedia\Rdbms\IDatabase
|
|
*/
|
|
private function getDB( $index ) {
|
|
return $this->dbFactory->getSharedDb( $index );
|
|
}
|
|
|
|
/**
|
|
* @return array[][]
|
|
*/
|
|
public function getUnreadCounts() {
|
|
$dbr = $this->getDB( DB_REPLICA );
|
|
if ( $dbr === false ) {
|
|
return [];
|
|
}
|
|
|
|
$rows = $dbr->select(
|
|
'echo_unread_wikis',
|
|
[
|
|
'euw_wiki',
|
|
'euw_alerts', 'euw_alerts_ts',
|
|
'euw_messages', 'euw_messages_ts',
|
|
],
|
|
[ 'euw_user' => $this->id ],
|
|
__METHOD__
|
|
);
|
|
|
|
$wikis = [];
|
|
foreach ( $rows as $row ) {
|
|
if ( !$row->euw_alerts && !$row->euw_messages ) {
|
|
// This shouldn't happen, but lets be safe...
|
|
continue;
|
|
}
|
|
$wikis[$row->euw_wiki] = [
|
|
EchoAttributeManager::ALERT => [
|
|
'count' => $row->euw_alerts,
|
|
'ts' => wfTimestamp( TS_MW, $row->euw_alerts_ts ) === static::DEFAULT_TS_DB ?
|
|
static::DEFAULT_TS : wfTimestamp( TS_MW, $row->euw_alerts_ts ),
|
|
],
|
|
EchoAttributeManager::MESSAGE => [
|
|
'count' => $row->euw_messages,
|
|
'ts' => wfTimestamp( TS_MW, $row->euw_messages_ts ) === static::DEFAULT_TS_DB ?
|
|
static::DEFAULT_TS : wfTimestamp( TS_MW, $row->euw_messages_ts ),
|
|
],
|
|
];
|
|
}
|
|
|
|
return $wikis;
|
|
}
|
|
|
|
/**
|
|
* @param string $wiki Wiki code
|
|
* @param int $alertCount Number of alerts
|
|
* @param MWTimestamp|bool $alertTime Timestamp of most recent unread alert, or
|
|
* false meaning no timestamp because there are no unread alerts.
|
|
* @param int $msgCount Number of messages
|
|
* @param MWTimestamp|bool $msgTime Timestamp of most recent message, or
|
|
* false meaning no timestamp because there are no unread messages.
|
|
*/
|
|
public function updateCount( $wiki, $alertCount, $alertTime, $msgCount, $msgTime ) {
|
|
$dbw = $this->getDB( DB_PRIMARY );
|
|
if ( $dbw === false || $dbw->isReadOnly() ) {
|
|
return;
|
|
}
|
|
|
|
$conditions = [
|
|
'euw_user' => $this->id,
|
|
'euw_wiki' => $wiki,
|
|
];
|
|
|
|
if ( $alertCount || $msgCount ) {
|
|
$values = [
|
|
'euw_alerts' => $alertCount,
|
|
'euw_alerts_ts' => $dbw->timestamp(
|
|
$alertTime
|
|
? $alertTime->getTimestamp( TS_MW )
|
|
: static::DEFAULT_TS_DB
|
|
),
|
|
'euw_messages' => $msgCount,
|
|
'euw_messages_ts' => $dbw->timestamp(
|
|
$msgTime
|
|
? $msgTime->getTimestamp( TS_MW )
|
|
: static::DEFAULT_TS_DB
|
|
),
|
|
];
|
|
|
|
// when there is unread alert(s) and/or message(s), upsert the row
|
|
$dbw->upsert(
|
|
'echo_unread_wikis',
|
|
$conditions + $values,
|
|
[ [ 'euw_user', 'euw_wiki' ] ],
|
|
$values,
|
|
__METHOD__
|
|
);
|
|
} else {
|
|
// No unread notifications, delete the row
|
|
$dbw->delete(
|
|
'echo_unread_wikis',
|
|
$conditions,
|
|
__METHOD__
|
|
);
|
|
}
|
|
}
|
|
}
|