mediawiki-extensions-Echo/includes/special/SpecialNotifications.php
Kunal Mehta 9d08c96fad Move all PHP code into includes/
Mainly because I was annoyed at m<tab>o<tab>d<tab>u<tab> to reach
modules/.

Change-Id: Ib149cb2e2612ccddd0503f9d0c5d05b554860a00
2015-06-07 18:54:14 -07:00

185 lines
5 KiB
PHP

<?php
class SpecialNotifications extends SpecialPage {
/**
* Number of notification records to display per page/load
*/
const DISPLAY_NUM = 20;
public function __construct() {
parent::__construct( 'Notifications' );
}
public function execute( $par ) {
$this->setHeaders();
$out = $this->getOutput();
$out->setPageTitle( $this->msg( 'echo-specialpage' )->text() );
$user = $this->getUser();
if ( $user->isAnon() ) {
// return to this title upon login
$returnTo = array( 'returnto' => $this->getPageTitle()->getPrefixedDBkey() );
// the html message for anon users
$anonMsgHtml = $this->msg(
'echo-anon',
SpecialPage::getTitleFor( 'UserLogin', 'signup' )->getFullURL( $returnTo ),
SpecialPage::getTitleFor( 'UserLogin' )->getFullURL( $returnTo )
)->parse();
$out->addHTML( Html::rawElement( 'span', array( 'class' => 'plainlinks' ), $anonMsgHtml ) );
return;
}
$out->addSubtitle( $this->buildSubtitle() );
// The continue parameter to pull current set of data from, this
// would be used for browsers with javascript disabled
$continue = $this->getRequest()->getVal( 'continue', null );
// Pull the notifications
$notif = array();
$notificationMapper = new EchoNotificationMapper();
$attributeManager = EchoAttributeManager::newFromGlobalVars();
$notifications = $notificationMapper->fetchByUser(
$user,
/* $limit = */self::DISPLAY_NUM + 1,
$continue,
$attributeManager->getUserEnabledEvents( $user, 'web' )
);
foreach ( $notifications as $notification ) {
$notif[] = EchoDataOutputFormatter::formatOutput( $notification, 'html', $user );
}
// If there are no notifications, display a message saying so
if ( !$notif ) {
$out->addWikiMsg( 'echo-none' );
return;
}
// Check if there is more data to load for next request
if ( count( $notif ) > self::DISPLAY_NUM ) {
$lastItem = array_pop( $notif );
$nextContinue = $lastItem['timestamp']['utcunix'] . '|' . $lastItem['id'];
} else {
$nextContinue = null;
}
// Add the notifications to the page (interspersed with date headers)
$dateHeader = '';
$notices = '';
$unread = array();
$seenTime = $user->getOption( 'echo-seen-time' );
foreach ( $notif as $row ) {
$class = 'mw-echo-notification';
if ( !isset( $row['read'] ) ) {
$class .= ' mw-echo-unread';
if ( !$row['targetpages'] ) {
$unread[] = $row['id'];
}
}
if ( $seenTime !== null && $row['timestamp']['mw'] > $seenTime ) {
$class .= ' mw-echo-unseen';
}
if ( !$row['*'] ) {
continue;
}
// Output the date header if it has not been displayed
if ( $dateHeader !== $row['timestamp']['date'] ) {
$dateHeader = $row['timestamp']['date'];
$notices .= Html::rawElement( 'li', array( 'class' => 'mw-echo-date-section' ), $dateHeader );
}
$notices .= Html::rawElement(
'li',
array(
'class' => $class,
'data-notification-category' => $row['category'],
'data-notification-event' => $row['id'],
'data-notification-type' => $row['type']
),
$row['*']
);
}
$html = Html::rawElement( 'ul', array( 'id' => 'mw-echo-special-container' ), $notices );
// Build the more link
if ( $nextContinue ) {
$html .= Html::element(
'a',
array(
'href' => SpecialPage::getTitleFor( 'Notifications' )->getLinkURL(
array( 'continue' => $nextContinue )
),
'id' => 'mw-echo-more'
),
$this->msg( 'moredotdotdot' )->text()
);
}
$out->addHTML( $html );
$out->addModules( 'ext.echo.special' );
$out->addJsConfigVars(
array(
'wgEchoDisplayNum' => self::DISPLAY_NUM,
'wgEchoNextContinue' => $nextContinue,
'wgEchoDateHeader' => $dateHeader
)
);
// For no-js support
$out->addModuleStyles( "ext.echo.base" );
// Mark items as read
if ( $unread ) {
MWEchoNotifUser::newFromUser( $user )->markRead( $unread );
}
// Record time notifications have been seen
$timestamp = wfTimestamp( TS_MW );
$user->setOption( 'echo-seen-time', $timestamp );
$user->saveSettings();
}
/**
* Build the subtitle (more info and preference links)
* @return string HTML for the subtitle
*/
public function buildSubtitle() {
global $wgEchoHelpPage;
$lang = $this->getLanguage();
$subtitleLinks = array();
// More info link
$subtitleLinks[] = Html::rawElement(
'a',
array(
'href' => $wgEchoHelpPage,
'id' => 'mw-echo-moreinfo-link',
'class' => 'mw-echo-special-header-link',
'title' => $this->msg( 'echo-more-info' )->text(),
'target' => '_blank'
),
$this->msg( 'echo-more-info' )->text()
);
// Preferences link
$subtitleLinks[] = Html::rawElement(
'a',
array(
'href' => SpecialPage::getTitleFor( 'Preferences' )->getLinkURL() . '#mw-prefsection-echo',
'id' => 'mw-echo-pref-link',
'class' => 'mw-echo-special-header-link',
'title' => $this->msg( 'preferences' )->text()
),
$this->msg( 'preferences' )->text()
);
return $lang->pipeList( $subtitleLinks );
}
protected function getGroupName() {
return 'users';
}
}