mediawiki-extensions-Echo/includes/Special/NotificationPager.php
Reedy 5611662f06 Namespace Model
Depends-On: Id28792658de950b99a8786f881563476def59eba
Change-Id: Ib57ea2db947285946f31fa9912b37181044df9d3
2022-11-10 14:25:42 -07:00

83 lines
2.1 KiB
PHP

<?php
namespace MediaWiki\Extension\Notifications\Special;
use EchoServices;
use Exception;
use IContextSource;
use MediaWiki\Extension\Notifications\Model\Notification;
use MWEchoDbFactory;
use ReverseChronologicalPager;
/**
* This pager is used by Special:Notifications (NO-JS).
* The heavy-lifting is done by IndexPager (grand-parent to this class).
* It paginates on notification_event for a specific user, only for the enabled event types.
*/
class NotificationPager extends ReverseChronologicalPager {
/**
* @param IContextSource $context
*/
public function __construct( IContextSource $context ) {
$dbFactory = MWEchoDbFactory::newFromDefault();
$this->mDb = $dbFactory->getEchoDb( DB_REPLICA );
parent::__construct( $context );
}
public function formatRow( $row ) {
// @phan-suppress-previous-line PhanPluginNeverReturnMethod LSP violation
throw new Exception( "This pager does not support row formatting. " .
"Use 'getNotifications()' to get a list of Notification objects." );
}
public function getQueryInfo() {
$attributeManager = EchoServices::getInstance()->getAttributeManager();
$eventTypes = $attributeManager->getUserEnabledEvents( $this->getUser(), 'web' );
return [
'tables' => [ 'echo_notification', 'echo_event' ],
'fields' => Notification::selectFields(),
'conds' => [
'notification_user' => $this->getUser()->getId(),
'event_type' => $eventTypes,
'event_deleted' => 0,
],
'options' => [],
'join_conds' =>
[ 'echo_event' =>
[
'JOIN',
'notification_event=event_id',
],
],
];
}
public function getNotifications() {
if ( !$this->mQueryDone ) {
$this->doQuery();
}
$notifications = [];
foreach ( $this->mResult as $row ) {
$notifications[] = Notification::newFromRow( $row );
}
// get rid of the overfetched
if ( count( $notifications ) > $this->getLimit() ) {
array_pop( $notifications );
}
if ( $this->mIsBackwards ) {
$notifications = array_reverse( $notifications );
}
return $notifications;
}
public function getIndexField() {
return 'notification_event';
}
}