2015-08-24 23:43:38 +00:00
|
|
|
<?php
|
|
|
|
|
2019-04-17 11:59:14 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
|
2015-08-24 23:43:38 +00:00
|
|
|
/**
|
|
|
|
* A small wrapper around ObjectCache to manage
|
|
|
|
* storing the last time a user has seen notifications
|
|
|
|
*/
|
|
|
|
class EchoSeenTime {
|
|
|
|
|
|
|
|
/**
|
2015-09-03 01:11:10 +00:00
|
|
|
* Allowed notification types
|
2018-08-13 07:25:22 +00:00
|
|
|
* @var string[]
|
2015-08-24 23:43:38 +00:00
|
|
|
*/
|
2016-12-05 18:51:07 +00:00
|
|
|
private static $allowedTypes = [ 'alert', 'message' ];
|
2015-08-24 23:43:38 +00:00
|
|
|
|
|
|
|
/**
|
2015-09-03 01:11:10 +00:00
|
|
|
* @var User
|
2015-08-24 23:43:38 +00:00
|
|
|
*/
|
2015-09-03 01:11:10 +00:00
|
|
|
private $user;
|
2015-08-24 23:43:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param User $user A logged in user
|
|
|
|
*/
|
|
|
|
private function __construct( User $user ) {
|
|
|
|
$this->user = $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param User $user
|
|
|
|
* @return EchoSeenTime
|
|
|
|
*/
|
|
|
|
public static function newFromUser( User $user ) {
|
|
|
|
return new self( $user );
|
|
|
|
}
|
|
|
|
|
2016-09-08 19:22:24 +00:00
|
|
|
/**
|
|
|
|
* Hold onto a cache for our operations. Static so it can reuse the same
|
|
|
|
* in-process cache in different instances.
|
|
|
|
*
|
|
|
|
* @return BagOStuff
|
|
|
|
*/
|
|
|
|
private static function cache() {
|
|
|
|
static $c = null;
|
|
|
|
|
2016-09-13 23:18:29 +00:00
|
|
|
// Use main stash for persistent storage, and
|
2016-09-08 19:22:24 +00:00
|
|
|
// wrap it with CachedBagOStuff for an in-process
|
|
|
|
// cache. (T144534)
|
|
|
|
if ( $c === null ) {
|
|
|
|
$c = new CachedBagOStuff(
|
2019-04-17 11:59:14 +00:00
|
|
|
MediaWikiServices::getInstance()->getMainObjectStash()
|
2016-09-08 19:22:24 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $c;
|
|
|
|
}
|
|
|
|
|
2015-08-24 23:43:38 +00:00
|
|
|
/**
|
2016-07-20 03:02:33 +00:00
|
|
|
* @param string $type Type of seen time to get
|
|
|
|
* @param int $format Format to return time in, defaults to TS_MW
|
2018-08-13 07:32:22 +00:00
|
|
|
* @return string|false Timestamp in specified format, or false if no stored time
|
2015-08-24 23:43:38 +00:00
|
|
|
*/
|
2016-09-23 18:46:44 +00:00
|
|
|
public function getTime( $type = 'all', $format = TS_MW ) {
|
2016-12-05 18:51:07 +00:00
|
|
|
$vals = [];
|
2015-09-03 01:11:10 +00:00
|
|
|
if ( $type === 'all' ) {
|
|
|
|
foreach ( self::$allowedTypes as $allowed ) {
|
2016-07-29 00:03:56 +00:00
|
|
|
// Use TS_MW, then convert later, so max works properly for
|
|
|
|
// all formats.
|
2016-09-23 18:46:44 +00:00
|
|
|
$vals[] = $this->getTime( $allowed, TS_MW );
|
2015-09-03 01:11:10 +00:00
|
|
|
}
|
2015-10-01 13:48:52 +00:00
|
|
|
|
2016-08-01 19:11:34 +00:00
|
|
|
return wfTimestamp( $format, min( $vals ) );
|
2015-09-03 01:11:10 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 20:00:35 +00:00
|
|
|
if ( !$this->validateType( $type ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-09-23 18:46:44 +00:00
|
|
|
$data = self::cache()->get( $this->getMemcKey( $type ) );
|
2016-09-13 20:00:35 +00:00
|
|
|
|
|
|
|
if ( $data === false ) {
|
|
|
|
// Check if the user still has it set in their preferences
|
|
|
|
$data = $this->user->getOption( 'echo-seen-time', false );
|
2015-08-24 23:43:38 +00:00
|
|
|
}
|
2016-09-06 17:38:01 +00:00
|
|
|
|
|
|
|
if ( $data === false ) {
|
2016-09-09 21:46:11 +00:00
|
|
|
// There is still no time set, so set time to the UNIX epoch.
|
|
|
|
// We can't remember their real seen time, so reset everything to
|
|
|
|
// unseen.
|
|
|
|
$data = wfTimestamp( TS_MW, 1 );
|
2016-09-13 20:00:35 +00:00
|
|
|
$this->setTime( $data, $type );
|
2016-07-20 03:02:33 +00:00
|
|
|
}
|
2016-09-06 17:38:01 +00:00
|
|
|
return wfTimestamp( $format, $data );
|
2015-08-24 23:43:38 +00:00
|
|
|
}
|
|
|
|
|
2016-07-20 22:20:59 +00:00
|
|
|
/**
|
|
|
|
* Sets the seen time
|
|
|
|
*
|
|
|
|
* @param string $time Time, in TS_MW format
|
|
|
|
* @param string $type Type of seen time to set
|
|
|
|
*/
|
2016-09-13 20:00:35 +00:00
|
|
|
public function setTime( $time, $type = 'all' ) {
|
2015-09-03 01:11:10 +00:00
|
|
|
if ( $type === 'all' ) {
|
|
|
|
foreach ( self::$allowedTypes as $allowed ) {
|
|
|
|
$this->setTime( $time, $allowed );
|
|
|
|
}
|
2016-09-23 19:11:37 +00:00
|
|
|
return;
|
2015-09-03 01:11:10 +00:00
|
|
|
}
|
2016-09-23 19:11:37 +00:00
|
|
|
|
|
|
|
if ( !$this->validateType( $type ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write to the in-memory cache immediately, and defer writing to
|
|
|
|
// the real cache
|
|
|
|
$key = $this->getMemcKey( $type );
|
|
|
|
$cache = self::cache();
|
|
|
|
$cache->set( $key, $time, 0, BagOStuff::WRITE_CACHE_ONLY );
|
|
|
|
DeferredUpdates::addCallableUpdate( function () use ( $key, $time, $cache ) {
|
|
|
|
$cache->set( $key, $time );
|
|
|
|
} );
|
2015-09-03 01:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate the given type, make sure it is allowed.
|
|
|
|
*
|
|
|
|
* @param string $type Given type
|
|
|
|
* @return bool Type is allowed
|
|
|
|
*/
|
|
|
|
private function validateType( $type ) {
|
|
|
|
return in_array( $type, self::$allowedTypes );
|
2015-08-24 23:43:38 +00:00
|
|
|
}
|
2016-09-13 23:18:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Build a memcached key.
|
|
|
|
*
|
|
|
|
* @param string $type Given notification type
|
|
|
|
* @return string Memcached key
|
|
|
|
*/
|
|
|
|
protected function getMemcKey( $type = 'all' ) {
|
2019-04-17 11:59:14 +00:00
|
|
|
$localKey = self::cache()->makeKey(
|
|
|
|
'echo', 'seen', $type, 'time', $this->user->getId()
|
|
|
|
);
|
2016-09-13 23:18:29 +00:00
|
|
|
|
|
|
|
if ( !$this->user->getOption( 'echo-cross-wiki-notifications' ) ) {
|
|
|
|
return $localKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
$lookup = CentralIdLookup::factory();
|
|
|
|
$globalId = $lookup->centralIdFromLocalUser( $this->user, CentralIdLookup::AUDIENCE_RAW );
|
|
|
|
|
|
|
|
if ( !$globalId ) {
|
|
|
|
return $localKey;
|
|
|
|
}
|
|
|
|
|
2019-04-17 11:59:14 +00:00
|
|
|
return self::cache()->makeGlobalKey(
|
|
|
|
'echo', 'seen', $type, 'time', $globalId
|
|
|
|
);
|
2016-09-13 23:18:29 +00:00
|
|
|
}
|
2015-08-24 23:43:38 +00:00
|
|
|
}
|