user = $user; $this->dbFactory = $dbFactory; } /** * Mark notifications as read * @param $eventIDs array * @return boolean */ public function markRead( array $eventIDs ) { if ( !$eventIDs ) { return; } $dbw = $this->dbFactory->getEchoDb( DB_MASTER ); return $dbw->update( self::$notificationTable, array( 'notification_read_timestamp' => $dbw->timestamp( wfTimestampNow() ) ), array( 'notification_user' => $this->user->getId(), 'notification_event' => $eventIDs, 'notification_read_timestamp' => null, ), __METHOD__ ); } /** * Mark all notification as read, use MWEchoNotifUer::markAllRead() instead * @deprecated may need this when running in a job or revive this when we * have updateJoin() */ public function markAllRead() { $dbw = $this->dbFactory->getEchoDb( DB_MASTER ); return $dbw->update( self::$notificationTable, array( 'notification_read_timestamp' => $dbw->timestamp( wfTimestampNow() ) ), array( 'notification_user' => $this->user->getId(), 'notification_read_timestamp' => NULL, 'notification_bundle_base' => 1, ), __METHOD__ ); } /** * Get notification count for the types specified * @param int use master or slave storage to pull count * @param array event types to retrieve * @return int */ public function getNotificationCount( $dbSource, array $eventTypesToLoad = array() ) { // double check if ( !in_array( $dbSource, array( DB_SLAVE, DB_MASTER ) ) ) { $dbSource = DB_SLAVE; } if ( !$eventTypesToLoad ) { return 0; } global $wgEchoMaxNotificationCount; $db = $this->dbFactory->getEchoDb( $dbSource ); $res = $db->select( array( self::$notificationTable, self::$eventTable ), array( 'notification_event' ), array( 'notification_user' => $this->user->getId(), 'notification_bundle_base' => 1, 'notification_read_timestamp' => null, 'event_type' => $eventTypesToLoad, ), __METHOD__, array( 'LIMIT' => $wgEchoMaxNotificationCount + 1 ), array( 'echo_event' => array( 'LEFT JOIN', 'notification_event=event_id' ), ) ); if ( $res ) { return $db->numRows( $res ); } else { return 0; } } /** * IMPORTANT: should only call this function if the number of unread notification * is reasonable, for example, unread notification count is less than the max * display defined in $wgEchoMaxNotificationCount * @param string * @return int[] */ public function getUnreadNotifications( $type ) { $dbr = $this->dbFactory->getEchoDb( DB_SLAVE ); $res = $dbr->select( array( self::$notificationTable, self::$eventTable ), array( 'notification_event' ), array( 'notification_user' => $this->user->getId(), 'notification_bundle_base' => 1, 'notification_read_timestamp' => null, 'event_type' => $type, 'notification_event = event_id' ), __METHOD__ ); $eventIds = array(); if ( $res ) { foreach ( $res as $row ) { $eventIds[$row->notification_event] = $row->notification_event; } } return $eventIds; } }