mediawiki-extensions-Echo/api/ApiEchoNotifications.php
Andrew Garrett 46b3024b4a Echo: Defer notifications using the Job Queue
In future it may be necessary to break them down an extra level.

Change-Id: I65e5a285e7d5797636e118c5e3e78b94df9af3d4
2012-06-08 15:30:09 +10:00

169 lines
3.9 KiB
PHP

<?php
class ApiEchoNotifications extends ApiQueryBase {
public function __construct( $query, $moduleName ) {
parent::__construct( $query, $moduleName, 'not' );
}
public function execute() {
global $wgUser;
$params = $this->extractRequestParams();
if ( count($params['markread']) ) {
EchoNotificationController::markRead( $wgUser, $params['markread'] );
}
$result = $this->getResult();
$prop = $params['prop'];
if ( in_array('list', $prop) ) {
$r = $this->getNotifications( $wgUser, $params['unread'], $params['format'] );
} else {
$r = array();
}
if ( in_array('count', $prop) ) {
$r['count'] = EchoNotificationController::getNotificationCount($wgUser);
}
if ( in_array('index', $prop) ) {
$r['index'] = array_keys( $r );
}
$result->setIndexedTagName( $r, 'notification' );
$result->addValue( 'query', $this->getModuleName(), $r );
}
public function getNotifications( $user, $unread = false, $format = false ) {
$dbr = wfGetDB( DB_SLAVE );
$output = array();
$conds = array(
'notification_user' => $user->getID(),
);
if ( $unread ) {
$conds['notification_read_timestamp'] = null;
}
$res = $dbr->select(
array( 'echo_notification', 'echo_event' ),
'*',
$conds,
__METHOD__,
array(
'ORDER BY' => 'notification_timestamp DESC',
'LIMIT' => 50,
),
array(
'echo_event' => array('left join', 'notification_event=event_id'),
)
);
foreach( $res as $row ) {
$event = EchoEvent::newFromRow( $row );
$thisEvent = array(
'type' => $event->getType(),
'timestamp' => array(
'unix' => wfTimestamp( TS_UNIX, $event->getTimestamp() ),
'mw' => $event->getTimestamp(),
),
);
if ( $event->getVariant() ) {
$thisEvent['variant'] = $event->getVariant();
}
if ( $event->getTitle() ) {
$thisEvent['title'] = array(
'full' => $event->getTitle()->getPrefixedText(),
'namespace' => $event->getTitle()->getNSText(),
'namespace-key' => $event->getTitle()->getNamespace(),
'text' => $event->getTitle()->getText(),
);
}
if ( $event->getAgent() ) {
$thisEvent['agent'] = array(
'id' => $event->getAgent()->getId(),
'name' => $event->getAgent()->getName(),
);
}
if ( $event->getExtra() ) {
$thisEvent['extra'] = $event->getExtra();
}
if ( $row->notification_read_timestamp ) {
$thisEvent['read'] = $row->notification_read_timestamp;
}
if ( $format ) {
global $wgUser;
$thisEvent['*'] = EchoNotificationController::formatNotification(
$event, $wgUser, $format );
}
$output[$event->getID()] = $thisEvent;
}
return $output;
}
public function getAllowedParams() {
return array(
'prop' => array(
ApiBase::PARAM_ISMULTI => true,
ApiBase::PARAM_TYPE => array(
'list',
'count',
'index',
),
ApiBase::PARAM_DFLT => 'list',
),
'markread' => array(
ApiBase::PARAM_ISMULTI => true,
),
'unread' => false,
'format' => array(
ApiBase::PARAM_TYPE => array(
'text',
'html',
),
),
'index' => false,
);
}
public function getParamDescription() {
return array(
'prop' => 'Details to request.',
'markread' => 'A list of notification IDs to mark as read',
'unread' => 'Request only unread notifications',
'format' => 'If specified, notifications will be returned formatted this way.',
'index' => 'If specified, a list of notification IDs, in order, will be returned.',
);
}
public function getDescription() {
return 'Get notifications waiting for the current user';
}
public function getExamples() {
return array(
'api.php?action=query&meta=notifications',
'api.php?action=query&meta=notifications&notprop=count',
'api.php?action=query&meta=notifications&notmarkread=8',
);
}
public function getHelpUrls() {
return 'https://www.mediawiki.org/wiki/Echo_(notifications)/API';
}
public function getVersion() {
return __CLASS__ . '-0.1';
}
}