mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 01:10:07 +00:00
33126b69aa
In preparation of Code Sniffer based updates. Change-Id: Id5d43332b44a37665d57dc24ef8c432bc65b2f6a
92 lines
2 KiB
PHP
92 lines
2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* A small wrapper around ObjectCache to manage
|
|
* storing the last time a user has seen notifications
|
|
*/
|
|
class EchoSeenTime {
|
|
|
|
/**
|
|
* Allowed notification types
|
|
* @var array
|
|
*/
|
|
private static $allowedTypes = array( 'alert', 'message' );
|
|
|
|
/**
|
|
* @var User
|
|
*/
|
|
private $user;
|
|
|
|
/**
|
|
* @var BagOStuff
|
|
*/
|
|
private $cache;
|
|
|
|
/**
|
|
* @param User $user A logged in user
|
|
*/
|
|
private function __construct( User $user ) {
|
|
$this->user = $user;
|
|
$this->cache = ObjectCache::getInstance( 'db-replicated' );
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @return EchoSeenTime
|
|
*/
|
|
public static function newFromUser( User $user ) {
|
|
return new self( $user );
|
|
}
|
|
|
|
/**
|
|
* @param int $flags BagOStuff::READ_LATEST to use the master
|
|
* @return string|bool false if no stored time
|
|
*/
|
|
public function getTime( $type = 'all', $flags = 0 ) {
|
|
$vals = array();
|
|
if ( $type === 'all' ) {
|
|
foreach ( self::$allowedTypes as $allowed ) {
|
|
$vals[] = $this->getTime( $allowed );
|
|
}
|
|
|
|
return max( $vals );
|
|
}
|
|
|
|
if ( $this->validateType( $type ) ) {
|
|
$key = wfMemcKey( 'echo', 'seen', $type, 'time', $this->user->getId() );
|
|
$cas = 0; // Unused, but we have to pass something by reference
|
|
$data = $this->cache->get( $key, $cas, $flags );
|
|
if ( $data === false ) {
|
|
// Check if the user still has it set in their preferences
|
|
$data = $this->user->getOption( 'echo-seen-time', false );
|
|
}
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
public function setTime( $time, $type = 'all' ) {
|
|
if ( $type === 'all' ) {
|
|
foreach ( self::$allowedTypes as $allowed ) {
|
|
$this->setTime( $time, $allowed );
|
|
}
|
|
} else {
|
|
if ( $this->validateType( $type ) ) {
|
|
$key = wfMemcKey( 'echo', 'seen', $type, 'time', $this->user->getId() );
|
|
|
|
return $this->cache->set( $key, $time );
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 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 );
|
|
}
|
|
}
|