2013-05-24 22:51:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Entity that represents a notification target user
|
|
|
|
*/
|
|
|
|
class MWEchoNotifUser {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notification target user
|
|
|
|
* @var User
|
|
|
|
*/
|
|
|
|
private $mUser;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Object cache
|
|
|
|
* @var BagOStuff
|
|
|
|
*/
|
|
|
|
private $cache;
|
|
|
|
|
|
|
|
/**
|
2014-07-18 03:58:21 +00:00
|
|
|
* Database access gateway
|
|
|
|
* @var EchoUserNotificationGateway
|
2013-05-24 22:51:47 +00:00
|
|
|
*/
|
2014-07-18 03:58:21 +00:00
|
|
|
private $userNotifGateway;
|
2013-05-24 22:51:47 +00:00
|
|
|
|
2014-08-13 22:00:25 +00:00
|
|
|
/**
|
|
|
|
* Notification mapper
|
|
|
|
* @var EchoNotificationMapper
|
|
|
|
*/
|
|
|
|
private $notifMapper;
|
|
|
|
|
2014-08-07 00:07:34 +00:00
|
|
|
/**
|
|
|
|
* Target page mapper
|
|
|
|
* @var EchoTargetPageMapper
|
|
|
|
*/
|
|
|
|
private $targetPageMapper;
|
|
|
|
|
2014-08-05 21:50:54 +00:00
|
|
|
/**
|
|
|
|
* Whether to check cache for section status
|
|
|
|
*/
|
|
|
|
static $sectionStatusCheckCache = array (
|
|
|
|
EchoAttributeManager::ALERT => false,
|
|
|
|
EchoAttributeManager::MESSAGE => true
|
|
|
|
);
|
|
|
|
|
2013-05-24 22:51:47 +00:00
|
|
|
/**
|
2014-08-13 22:00:25 +00:00
|
|
|
* Usually client code doesn't need to initialize the object directly
|
|
|
|
* because it could be obtained from factory method newFromUser()
|
2014-08-07 00:07:34 +00:00
|
|
|
* @param User $user
|
|
|
|
* @param BagOStuff $cache
|
|
|
|
* @param EchoUserNotificationGateway $userNotifGateway
|
|
|
|
* @param EchoNotificationMapper $notifMapper
|
|
|
|
* @param EchoTargetPageMapper $targetPageMapper
|
2013-05-24 22:51:47 +00:00
|
|
|
*/
|
2014-08-13 22:00:25 +00:00
|
|
|
public function __construct(
|
|
|
|
User $user,
|
|
|
|
BagOStuff $cache,
|
|
|
|
EchoUserNotificationGateway $userNotifGateway,
|
2014-08-07 00:07:34 +00:00
|
|
|
EchoNotificationMapper $notifMapper,
|
|
|
|
EchoTargetPageMapper $targetPageMapper
|
2014-08-13 22:00:25 +00:00
|
|
|
) {
|
2013-05-24 22:51:47 +00:00
|
|
|
$this->mUser = $user;
|
2014-07-18 03:58:21 +00:00
|
|
|
$this->userNotifGateway = $userNotifGateway;
|
|
|
|
$this->cache = $cache;
|
2014-08-13 22:00:25 +00:00
|
|
|
$this->notifMapper = $notifMapper;
|
2014-08-07 00:07:34 +00:00
|
|
|
$this->targetPageMapper = $targetPageMapper;
|
2013-05-24 22:51:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory method
|
|
|
|
* @param $user User
|
|
|
|
* @throws MWException
|
|
|
|
* @return MWEchoNotifUser
|
|
|
|
*/
|
|
|
|
public static function newFromUser( User $user ) {
|
|
|
|
if ( $user->isAnon() ) {
|
|
|
|
throw new MWException( 'User must be logged in to view notification!' );
|
|
|
|
}
|
2014-07-18 03:58:21 +00:00
|
|
|
global $wgMemc;
|
|
|
|
return new MWEchoNotifUser(
|
|
|
|
$user, $wgMemc,
|
2014-08-13 22:00:25 +00:00
|
|
|
new EchoUserNotificationGateway( $user, MWEchoDbFactory::newFromDefault() ),
|
2014-08-07 00:07:34 +00:00
|
|
|
new EchoNotificationMapper(),
|
|
|
|
new EchoTargetPageMapper()
|
2014-07-18 03:58:21 +00:00
|
|
|
);
|
2013-05-24 22:51:47 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 21:50:54 +00:00
|
|
|
/**
|
|
|
|
* Check whether should trigger a query to fetch data for a section when making
|
|
|
|
* such request. This method normally should return true for all section.
|
|
|
|
* For some sections, it's better to save the result in cache and check before
|
|
|
|
* triggering a query. Flow is in very limited deployment, Most *users would
|
|
|
|
* not have flow notifications, it's better to save *this status in cache
|
|
|
|
* to save a query. In addition, Flow notification is far less than other
|
|
|
|
* notifications for most users at this moment. Querying could be expensive
|
|
|
|
* in extreme cases
|
|
|
|
* @param string $section
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function shouldQuerySectionData( $section ) {
|
|
|
|
if ( !self::$sectionStatusCheckCache[$section] ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$cacheVal = $this->cache->get( $this->sectionStatusCacheKey( $section ) );
|
|
|
|
// '1' means should query
|
|
|
|
// '0' means should not query
|
|
|
|
// false means no cache and should query
|
|
|
|
if ( $cacheVal !== '0' ) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set section data status into cache, '1' means there is data for the section,
|
|
|
|
* '0' means there is no data for this section
|
|
|
|
* @param string $section
|
|
|
|
* @param int $num
|
|
|
|
*/
|
|
|
|
public function setSectionStatusCache( $section, $num ) {
|
|
|
|
if ( !self::$sectionStatusCheckCache[$section] ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$key = $this->sectionStatusCacheKey( $section );
|
|
|
|
// Set cache for 5 days
|
|
|
|
if ( $num > 0 ) {
|
|
|
|
$this->cache->set( $key, '1', 432000 );
|
|
|
|
} else {
|
|
|
|
$this->cache->set( $key, '0', 432000 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear section data cache for the section
|
|
|
|
* @param string
|
|
|
|
*/
|
|
|
|
public function clearSectionStatusCache( $section ) {
|
|
|
|
if ( !self::$sectionStatusCheckCache[$section] ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->cache->delete(
|
|
|
|
$this->sectionStatusCacheKey( $section )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the section data status cache key
|
|
|
|
* @param string $section
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function sectionStatusCacheKey( $section ) {
|
|
|
|
global $wgEchoConfig;
|
|
|
|
return wfMemcKey(
|
|
|
|
'echo-notification-section-exist',
|
|
|
|
$section,
|
|
|
|
$this->mUser->getId(),
|
|
|
|
$wgEchoConfig['version']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-24 22:51:47 +00:00
|
|
|
/**
|
|
|
|
* Clear talk page notification when users visit their talk pages. This
|
|
|
|
* only resets if the notification count is less than max notification
|
|
|
|
* count. If the user has 99+ notifications, decrementing 1 bundled talk
|
|
|
|
* page notification would not really affect the count
|
|
|
|
*/
|
|
|
|
public function clearTalkNotification() {
|
|
|
|
// There is no new talk notification
|
|
|
|
if ( $this->cache->get( $this->getTalkNotificationCacheKey() ) === '0' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do nothing if the count display meets the max 99+
|
|
|
|
if ( $this->notifCountHasReachedMax() ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark the talk page notification as read
|
|
|
|
$this->markRead(
|
2014-07-18 03:58:21 +00:00
|
|
|
$this->userNotifGateway->getUnreadNotifications(
|
2013-05-24 22:51:47 +00:00
|
|
|
'edit-user-talk'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->flagCacheWithNoTalkNotification();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag the cache with new talk notification
|
|
|
|
*/
|
|
|
|
public function flagCacheWithNewTalkNotification() {
|
|
|
|
$this->cache->set( $this->getTalkNotificationCacheKey(), '1', 86400 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag the cache with no talk notification
|
|
|
|
*/
|
|
|
|
public function flagCacheWithNoTalkNotification() {
|
|
|
|
$this->cache->set( $this->getTalkNotificationCacheKey(), '0', 86400 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memcache key for talk notification
|
|
|
|
*/
|
|
|
|
public function getTalkNotificationCacheKey() {
|
|
|
|
global $wgEchoConfig;
|
|
|
|
|
|
|
|
return wfMemcKey( 'echo-new-talk-notification', $this->mUser->getId(), $wgEchoConfig['version'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the user has more notification count than max count display
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function notifCountHasReachedMax() {
|
|
|
|
global $wgEchoMaxNotificationCount;
|
|
|
|
|
|
|
|
if ( $this->getNotificationCount() > $wgEchoMaxNotificationCount ) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-13 00:54:16 +00:00
|
|
|
/**
|
|
|
|
* Get message count for this user.
|
|
|
|
*
|
|
|
|
* @param boolean $cached Set to false to bypass the cache. (Optional. Defaults to true)
|
|
|
|
* @param int $dbSource Use master or slave database to pull count (Optional. Defaults to DB_SLAVE)
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getMessageCount( $cached = true, $dbSource = DB_SLAVE ) {
|
|
|
|
return $this->getNotificationCount( $cached, $dbSource, EchoAttributeManager::MESSAGE );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get alert count for this user.
|
|
|
|
*
|
|
|
|
* @param boolean $cached Set to false to bypass the cache. (Optional. Defaults to true)
|
|
|
|
* @param int $dbSource Use master or slave database to pull count (Optional. Defaults to DB_SLAVE)
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getAlertCount( $cached = true, $dbSource = DB_SLAVE ) {
|
|
|
|
return $this->getNotificationCount( $cached, $dbSource, EchoAttributeManager::ALERT );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the memcache key for 'has ever had messages' value
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function getHasMessagesKey() {
|
|
|
|
global $wgEchoConfig;
|
|
|
|
return wfMemcKey( 'echo', 'user', 'had', 'messages', $this->mUser->getId(), $wgEchoConfig['version'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether the user has ever had messages.
|
|
|
|
*
|
|
|
|
* @param boolean $cached Set to false to bypass the cache. (Optional. Defaults to true)
|
|
|
|
* @return boolean User has received messages
|
|
|
|
*/
|
|
|
|
public function hasMessages( $cached = true ) {
|
|
|
|
global $wgEchoConfig;
|
|
|
|
$section = EchoAttributeManager::MESSAGE;
|
|
|
|
|
|
|
|
$memcKey = $this->getHasMessagesKey();
|
|
|
|
if ( $cached ) {
|
|
|
|
$data = $this->cache->get( $memcKey );
|
|
|
|
if ( $data !== false && $data !== null ) {
|
|
|
|
return (bool)$data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$attributeManager = EchoAttributeManager::newFromGlobalVars();
|
|
|
|
$eventTypesToLoad = $attributeManager->getUserEnabledEventsbySections( $this->mUser, 'web', array( $section ) );
|
|
|
|
|
|
|
|
$count = count( $this->notifMapper->fetchByUser( $this->mUser, 1, 0, $eventTypesToLoad ) );
|
|
|
|
|
2015-09-04 00:30:01 +00:00
|
|
|
$result = (int)( $count > 0 );
|
2015-08-13 00:54:16 +00:00
|
|
|
$this->cache->set( $memcKey, $result, 86400 );
|
|
|
|
|
|
|
|
return (bool)$result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cache the fact that the user has messages.
|
|
|
|
* This is used after the user receives a message, making the system skip the actual test
|
|
|
|
* of whether they have messages against the database at all.
|
|
|
|
*/
|
|
|
|
public function cacheHasMessages() {
|
2015-09-04 00:30:01 +00:00
|
|
|
$this->cache->set( $this->getHasMessagesKey(), 1, 86400 );
|
2015-08-13 00:54:16 +00:00
|
|
|
}
|
|
|
|
|
2013-05-24 22:51:47 +00:00
|
|
|
/**
|
|
|
|
* Retrieves number of unread notifications that a user has, would return
|
|
|
|
* $wgEchoMaxNotificationCount + 1 at most
|
|
|
|
*
|
2015-08-13 00:54:16 +00:00
|
|
|
* @param boolean $cached Set to false to bypass the cache. (Optional. Defaults to true)
|
|
|
|
* @param int $dbSource Use master or slave database to pull count (Optional. Defaults to DB_SLAVE)
|
2014-08-05 21:50:54 +00:00
|
|
|
* @param string $section Notification section
|
|
|
|
* @return int
|
2013-05-24 22:51:47 +00:00
|
|
|
*/
|
2014-08-05 21:50:54 +00:00
|
|
|
public function getNotificationCount( $cached = true, $dbSource = DB_SLAVE, $section = EchoAttributeManager::ALL ) {
|
2013-05-24 22:51:47 +00:00
|
|
|
global $wgEchoConfig;
|
|
|
|
|
|
|
|
if ( $this->mUser->isAnon() ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-05 21:50:54 +00:00
|
|
|
$memcKey = wfMemcKey(
|
|
|
|
'echo-notification-count' . ( $section === EchoAttributeManager::ALL ? '' : ( '-' . $section ) ),
|
|
|
|
$this->mUser->getId(),
|
|
|
|
$wgEchoConfig['version']
|
|
|
|
);
|
2015-07-21 21:19:12 +00:00
|
|
|
if ( $cached ) {
|
|
|
|
$data = $this->cache->get( $memcKey );
|
2015-08-13 00:54:16 +00:00
|
|
|
if ( $data !== false && $data !== null ) {
|
2015-07-21 21:19:12 +00:00
|
|
|
return (int)$data;
|
|
|
|
}
|
2013-05-24 22:51:47 +00:00
|
|
|
}
|
|
|
|
|
2014-07-22 21:33:22 +00:00
|
|
|
$attributeManager = EchoAttributeManager::newFromGlobalVars();
|
2014-08-05 21:50:54 +00:00
|
|
|
if ( $section === EchoAttributeManager::ALL ) {
|
|
|
|
$eventTypesToLoad = $attributeManager->getUserEnabledEvents( $this->mUser, 'web' );
|
|
|
|
} else {
|
|
|
|
$eventTypesToLoad = $attributeManager->getUserEnabledEventsbySections( $this->mUser, 'web', array( $section ) );
|
|
|
|
}
|
|
|
|
|
2014-07-22 21:33:22 +00:00
|
|
|
$count = $this->userNotifGateway->getNotificationCount( $dbSource, $eventTypesToLoad );
|
2013-05-24 22:51:47 +00:00
|
|
|
$this->cache->set( $memcKey, $count, 86400 );
|
|
|
|
|
|
|
|
return (int)$count;
|
|
|
|
}
|
|
|
|
|
2015-08-13 00:54:16 +00:00
|
|
|
/**
|
|
|
|
* Get the unread timestamp of the latest alert
|
|
|
|
*
|
|
|
|
* @param boolean $cached Set to false to bypass the cache. (Optional. Defaults to true)
|
|
|
|
* @param int $dbSource Use master or slave database to pull count (Optional. Defaults to DB_SLAVE)
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getLastUnreadAlertTime( $cached = true, $dbSource = DB_SLAVE ) {
|
|
|
|
return $this->getLastUnreadNotificationTime( $cached, $dbSource, EchoAttributeManager::ALERT );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unread timestamp of the latest message
|
|
|
|
*
|
|
|
|
* @param boolean $cached Set to false to bypass the cache. (Optional. Defaults to true)
|
|
|
|
* @param int $dbSource Use master or slave database to pull count (Optional. Defaults to DB_SLAVE)
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getLastUnreadMessageTime( $cached = true, $dbSource = DB_SLAVE ) {
|
|
|
|
return $this->getLastUnreadNotificationTime( $cached, $dbSource, EchoAttributeManager::MESSAGE );
|
|
|
|
}
|
|
|
|
|
2015-04-29 12:08:30 +00:00
|
|
|
/**
|
|
|
|
* Returns the timestamp of the last unread notification.
|
|
|
|
*
|
2015-08-13 00:54:16 +00:00
|
|
|
* @param boolean $cached Set to false to bypass the cache. (Optional. Defaults to true)
|
|
|
|
* @param int $dbSource Use master or slave database to pull count (Optional. Defaults to DB_SLAVE)
|
2015-04-29 12:08:30 +00:00
|
|
|
* @param string $section Notification section
|
|
|
|
* @return bool|MWTimestamp Timestamp of last notification, or false if there is none
|
|
|
|
*/
|
2015-05-07 11:58:51 +00:00
|
|
|
public function getLastUnreadNotificationTime( $cached = true, $dbSource = DB_SLAVE, $section = EchoAttributeManager::ALL ) {
|
2015-04-29 12:08:30 +00:00
|
|
|
global $wgEchoConfig;
|
|
|
|
|
|
|
|
if ( $this->mUser->isAnon() ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$memcKey = wfMemcKey(
|
|
|
|
'echo-notification-timestamp' . ( $section === EchoAttributeManager::ALL ? '' : ( '-' . $section ) ),
|
|
|
|
$this->mUser->getId(),
|
|
|
|
$wgEchoConfig['version']
|
|
|
|
);
|
|
|
|
|
|
|
|
// read from cache, if allowed
|
|
|
|
if ( $cached ) {
|
|
|
|
$timestamp = $this->cache->get( $memcKey );
|
|
|
|
if ( $timestamp !== false ) {
|
|
|
|
return new MWTimestamp( $timestamp );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$attributeManager = EchoAttributeManager::newFromGlobalVars();
|
|
|
|
if ( $section === EchoAttributeManager::ALL ) {
|
|
|
|
$eventTypesToLoad = $attributeManager->getUserEnabledEvents( $this->mUser, 'web' );
|
|
|
|
} else {
|
|
|
|
$eventTypesToLoad = $attributeManager->getUserEnabledEventsbySections( $this->mUser, 'web', array( $section ) );
|
|
|
|
}
|
|
|
|
|
2015-05-07 11:58:51 +00:00
|
|
|
$notifications = $this->notifMapper->fetchUnreadByUser( $this->mUser, 1, $eventTypesToLoad, $dbSource );
|
2015-04-29 12:08:30 +00:00
|
|
|
if ( $notifications ) {
|
|
|
|
$notification = reset( $notifications );
|
|
|
|
$timestamp = $notification->getTimestamp();
|
|
|
|
|
|
|
|
// store to cache & return
|
2015-05-07 11:58:51 +00:00
|
|
|
$this->cache->set($memcKey, $timestamp, 86400);
|
2015-04-29 12:08:30 +00:00
|
|
|
return new MWTimestamp( $timestamp );
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-24 22:51:47 +00:00
|
|
|
/**
|
|
|
|
* Mark one or more notifications read for a user.
|
|
|
|
* @param $eventIds Array of event IDs to mark read
|
2014-08-13 22:00:25 +00:00
|
|
|
* @return boolean
|
2013-05-24 22:51:47 +00:00
|
|
|
*/
|
|
|
|
public function markRead( $eventIds ) {
|
|
|
|
$eventIds = array_filter( (array)$eventIds, 'is_numeric' );
|
|
|
|
if ( !$eventIds || wfReadOnly() ) {
|
2014-08-13 22:00:25 +00:00
|
|
|
return false;
|
2013-05-24 22:51:47 +00:00
|
|
|
}
|
|
|
|
|
2014-08-13 22:00:25 +00:00
|
|
|
$res = $this->userNotifGateway->markRead( $eventIds );
|
|
|
|
if ( $res ) {
|
2014-08-07 00:07:34 +00:00
|
|
|
// Delete records from echo_target_page
|
|
|
|
$this->targetPageMapper->deleteByUserEvents( $this->mUser, $eventIds );
|
|
|
|
// Update notification count in cache
|
2014-08-13 22:00:25 +00:00
|
|
|
$this->resetNotificationCount( DB_MASTER );
|
|
|
|
}
|
|
|
|
return $res;
|
2013-05-24 22:51:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-08-13 22:00:25 +00:00
|
|
|
* Attempt to mark all or sections of notifications as read, this only
|
|
|
|
* updates up to $wgEchoMaxUpdateCount records per request, see more
|
|
|
|
* detail about this in Echo.php, the other reason is that mediawiki
|
|
|
|
* database interface doesn't support updateJoin() that would update
|
|
|
|
* across multiple tables, we would visit this later
|
|
|
|
*
|
|
|
|
* @param string[] $sections
|
2013-05-24 22:51:47 +00:00
|
|
|
* @return boolean
|
|
|
|
*/
|
2014-08-13 22:00:25 +00:00
|
|
|
public function markAllRead( array $sections = array( EchoAttributeManager::ALL ) ) {
|
|
|
|
if ( wfReadOnly() ) {
|
2013-05-24 22:51:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-08-13 22:00:25 +00:00
|
|
|
global $wgEchoMaxUpdateCount;
|
|
|
|
|
|
|
|
// Mark all sections as read if this is the case
|
|
|
|
if ( in_array( EchoAttributeManager::ALL, $sections ) ) {
|
|
|
|
$sections = EchoAttributeManager::$sections;
|
|
|
|
}
|
|
|
|
|
|
|
|
$attributeManager = EchoAttributeManager::newFromGlobalVars();
|
|
|
|
$eventTypes = $attributeManager->getUserEnabledEventsbySections( $this->mUser, 'web', $sections );
|
|
|
|
|
|
|
|
$notifs = $this->notifMapper->fetchUnreadByUser( $this->mUser, $wgEchoMaxUpdateCount, $eventTypes );
|
2014-08-07 00:07:34 +00:00
|
|
|
|
|
|
|
$eventIds = array_filter(
|
|
|
|
array_map( function( EchoNotification $notif ) {
|
|
|
|
// This should not happen at all, but use 0 in
|
2014-08-13 22:00:25 +00:00
|
|
|
// such case so to keep the code running
|
|
|
|
if ( $notif->getEvent() ) {
|
|
|
|
return $notif->getEvent()->getId();
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-08-07 00:07:34 +00:00
|
|
|
}, $notifs )
|
|
|
|
);
|
|
|
|
|
|
|
|
$res = $this->markRead( $eventIds );
|
|
|
|
if ( $res ) {
|
|
|
|
// Delete records from echo_target_page
|
|
|
|
$this->targetPageMapper->deleteByUserEvents( $this->mUser, $eventIds );
|
|
|
|
if ( count( $notifs ) < $wgEchoMaxUpdateCount ) {
|
|
|
|
$this->flagCacheWithNoTalkNotification();
|
|
|
|
}
|
2014-08-13 22:00:25 +00:00
|
|
|
}
|
|
|
|
return $res;
|
2013-05-24 22:51:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recalculates the number of notifications that a user has.
|
2013-10-08 20:48:54 +00:00
|
|
|
* @param $dbSource int use master or slave database to pull count
|
2013-05-24 22:51:47 +00:00
|
|
|
*/
|
|
|
|
public function resetNotificationCount( $dbSource = DB_SLAVE ) {
|
2014-08-05 21:50:54 +00:00
|
|
|
// Reset notification count for all sections as well
|
|
|
|
$this->getNotificationCount( false, $dbSource, EchoAttributeManager::ALL );
|
|
|
|
$this->getNotificationCount( false, $dbSource, EchoAttributeManager::ALERT );
|
|
|
|
$this->getNotificationCount( false, $dbSource, EchoAttributeManager::MESSAGE );
|
2015-04-29 12:08:30 +00:00
|
|
|
// when notification count needs to be updated, last notification may have
|
|
|
|
// changed too, so we need to invalidate that cache too
|
2015-05-07 11:58:51 +00:00
|
|
|
$this->getLastUnreadNotificationTime( false, $dbSource, EchoAttributeManager::ALL );
|
|
|
|
$this->getLastUnreadNotificationTime( false, $dbSource, EchoAttributeManager::ALERT );
|
|
|
|
$this->getLastUnreadNotificationTime( false, $dbSource, EchoAttributeManager::MESSAGE );
|
2013-05-24 22:51:47 +00:00
|
|
|
$this->mUser->invalidateCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves formatted number of unread notifications that a user has.
|
2015-08-13 00:54:16 +00:00
|
|
|
* @param boolean $cached Set to false to bypass the cache. (Optional. Defaults to true)
|
|
|
|
* @param int $dbSource Use master or slave database to pull count (Optional. Defaults to DB_SLAVE)
|
2014-08-05 21:50:54 +00:00
|
|
|
* @param string $section
|
|
|
|
* @return string
|
2013-05-24 22:51:47 +00:00
|
|
|
*/
|
2014-08-05 21:50:54 +00:00
|
|
|
public function getFormattedNotificationCount( $cached = true, $dbSource = DB_SLAVE, $section = EchoAttributeManager::ALL ) {
|
2013-05-24 22:51:47 +00:00
|
|
|
return EchoNotificationController::formatNotificationCount(
|
2014-08-05 21:50:54 +00:00
|
|
|
$this->getNotificationCount( $cached, $dbSource, $section )
|
2013-05-24 22:51:47 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-06-24 00:22:08 +00:00
|
|
|
/**
|
|
|
|
* Get the user's email notification format
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getEmailFormat() {
|
|
|
|
global $wgAllowHTMLEmail;
|
|
|
|
|
|
|
|
if ( $wgAllowHTMLEmail ) {
|
|
|
|
return $this->mUser->getOption( 'echo-email-format' );
|
|
|
|
} else {
|
|
|
|
return EchoHooks::EMAIL_FORMAT_PLAIN_TEXT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 22:51:47 +00:00
|
|
|
}
|