2012-04-27 15:14:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class EchoHooks {
|
2012-11-16 21:03:57 +00:00
|
|
|
const EMAIL_NEVER = -1; // Never send email notifications
|
|
|
|
const EMAIL_IMMEDIATELY = 0; // Send email notificaitons immediately as they come in
|
|
|
|
const EMAIL_DAILY_DIGEST = 1; // Send daily email digests
|
|
|
|
const EMAIL_WEEKLY_DIGEST = 7; // Send weekly email digests
|
2013-06-24 00:22:08 +00:00
|
|
|
const EMAIL_FORMAT_HTML = 'html';
|
|
|
|
const EMAIL_FORMAT_PLAIN_TEXT = 'plain-text';
|
2012-05-17 00:29:37 +00:00
|
|
|
|
2013-01-15 23:21:39 +00:00
|
|
|
/**
|
|
|
|
* Initialize Echo extension with necessary data, this function is invoked
|
|
|
|
* from $wgExtensionFunctions
|
|
|
|
*/
|
|
|
|
public static function initEchoExtension() {
|
2013-02-16 02:20:34 +00:00
|
|
|
global $wgEchoBackend, $wgEchoBackendName, $wgEchoNotifications,
|
2014-02-25 06:09:27 +00:00
|
|
|
$wgEchoNotificationCategories, $wgEchoNotificationIcons, $wgEchoConfig,
|
|
|
|
$wgNotificationSenderName;
|
2013-02-16 02:20:34 +00:00
|
|
|
|
|
|
|
// allow extensions to define their own event
|
2013-04-29 03:40:56 +00:00
|
|
|
wfRunHooks( 'BeforeCreateEchoEvent', array( &$wgEchoNotifications, &$wgEchoNotificationCategories, &$wgEchoNotificationIcons ) );
|
2013-02-16 02:20:34 +00:00
|
|
|
|
2013-01-15 23:21:39 +00:00
|
|
|
$wgEchoBackend = MWEchoBackend::factory( $wgEchoBackendName );
|
2013-03-06 21:22:17 +00:00
|
|
|
|
|
|
|
// turn schema off if eventLogging is not enabled
|
|
|
|
if ( !function_exists( 'efLogServerSideEvent' ) ) {
|
|
|
|
foreach ( $wgEchoConfig['eventlogging'] as $schema => $property ) {
|
|
|
|
if ( $property['enabled'] ) {
|
|
|
|
$wgEchoConfig['eventlogging'][$schema]['enabled'] = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-25 06:09:27 +00:00
|
|
|
|
|
|
|
if ( $wgNotificationSenderName === null ) {
|
|
|
|
$wgNotificationSenderName = wfMessage( 'emailsender' )->inContentLanguage()->text();
|
|
|
|
}
|
|
|
|
|
2013-01-15 23:21:39 +00:00
|
|
|
}
|
|
|
|
|
2013-03-01 00:26:59 +00:00
|
|
|
/**
|
|
|
|
* Handler for ResourceLoaderRegisterModules hook
|
|
|
|
*/
|
|
|
|
public static function onResourceLoaderRegisterModules( ResourceLoader &$resourceLoader ) {
|
|
|
|
global $wgResourceModules, $wgEchoConfig;
|
|
|
|
|
|
|
|
foreach ( $wgEchoConfig['eventlogging'] as $schema => $property ) {
|
2013-03-06 21:22:17 +00:00
|
|
|
if ( $property['enabled'] ) {
|
2013-03-01 00:26:59 +00:00
|
|
|
$wgResourceModules[ 'schema.' . $schema ] = array(
|
|
|
|
'class' => 'ResourceLoaderSchemaModule',
|
|
|
|
'schema' => $schema,
|
|
|
|
'revision' => $property['revision'],
|
|
|
|
);
|
|
|
|
$wgResourceModules['ext.echo.base']['dependencies'][] = 'schema.' . $schema;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-17 00:29:37 +00:00
|
|
|
/**
|
|
|
|
* @param $updater DatabaseUpdater object
|
2012-09-02 09:30:38 +00:00
|
|
|
* @return bool true in all cases
|
2012-05-17 00:29:37 +00:00
|
|
|
*/
|
|
|
|
public static function getSchemaUpdates( $updater ) {
|
2012-08-31 21:50:46 +00:00
|
|
|
$dir = __DIR__;
|
2012-04-27 15:14:24 +00:00
|
|
|
$baseSQLFile = "$dir/echo.sql";
|
2013-03-26 00:57:42 +00:00
|
|
|
$updater->addExtensionTable( 'echo_event', $baseSQLFile );
|
2012-11-27 01:53:35 +00:00
|
|
|
$updater->addExtensionTable( 'echo_email_batch', "$dir/db_patches/echo_email_batch.sql" );
|
2012-04-27 15:14:24 +00:00
|
|
|
|
2013-05-20 17:23:51 +00:00
|
|
|
if ( $updater->getDB()->getType() === 'sqlite' ) {
|
|
|
|
$updater->modifyExtensionField( 'echo_event', 'event_agent', "$dir/db_patches/patch-event_agent-split.sqlite.sql" );
|
|
|
|
$updater->modifyExtensionField( 'echo_event', 'event_variant', "$dir/db_patches/patch-event_variant_nullability.sqlite.sql" );
|
|
|
|
// There is no need to run the patch-event_extra-size or patch-event_agent_ip-size because
|
|
|
|
// sqlite ignores numeric arguments in parentheses that follow the type name (ex: VARCHAR(255))
|
|
|
|
// see http://www.sqlite.org/datatype3.html Section 2.2 for more info
|
|
|
|
} else {
|
|
|
|
$updater->modifyExtensionField( 'echo_event', 'event_agent', "$dir/db_patches/patch-event_agent-split.sql" );
|
|
|
|
$updater->modifyExtensionField( 'echo_event', 'event_variant', "$dir/db_patches/patch-event_variant_nullability.sql" );
|
|
|
|
$updater->modifyExtensionField( 'echo_event', 'event_extra', "$dir/db_patches/patch-event_extra-size.sql" );
|
|
|
|
$updater->modifyExtensionField( 'echo_event', 'event_agent_ip', "$dir/db_patches/patch-event_agent_ip-size.sql" );
|
|
|
|
}
|
2013-01-15 23:21:39 +00:00
|
|
|
|
|
|
|
$updater->addExtensionField( 'echo_notification', 'notification_bundle_base',
|
|
|
|
"$dir/db_patches/patch-notification-bundling-field.sql" );
|
2013-05-20 17:23:51 +00:00
|
|
|
// This index was renamed twice, first from type_page to event_type and later from event_type to echo_event_type
|
|
|
|
if ( $updater->getDB()->indexExists( 'echo_event', 'type_page', __METHOD__ ) ) {
|
|
|
|
$updater->addExtensionIndex( 'echo_event', 'event_type', "$dir/db_patches/patch-alter-type_page-index.sql" );
|
|
|
|
}
|
2013-03-26 00:57:42 +00:00
|
|
|
$updater->dropTable( 'echo_subscription' );
|
|
|
|
$updater->dropExtensionField( 'echo_event', 'event_timestamp', "$dir/db_patches/patch-drop-echo_event-event_timestamp.sql" );
|
2013-03-06 00:04:48 +00:00
|
|
|
$updater->addExtensionField( 'echo_email_batch', 'eeb_event_hash',
|
|
|
|
"$dir/db_patches/patch-email_batch-new-field.sql" );
|
2013-05-09 18:50:05 +00:00
|
|
|
$updater->addExtensionField( 'echo_event', 'event_page_id', "$dir/db_patches/patch-add-echo_event-event_page_id.sql" );
|
2013-05-20 17:23:51 +00:00
|
|
|
$updater->addExtensionIndex( 'echo_event', 'echo_event_type', "$dir/db_patches/patch-alter-event_type-index.sql" );
|
2013-06-14 20:14:21 +00:00
|
|
|
$updater->addExtensionIndex( 'echo_notification', 'echo_user_timestamp', "$dir/db_patches/patch-alter-user_timestamp-index.sql" );
|
2013-05-08 18:11:44 +00:00
|
|
|
|
2013-01-15 23:21:39 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for EchoGetBundleRule hook, which defines the bundle rule for each notification
|
2014-05-27 18:28:37 +00:00
|
|
|
*
|
2013-01-15 23:21:39 +00:00
|
|
|
* @param $event EchoEvent
|
|
|
|
* @param $bundleString string Determines how the notification should be bundled, for example,
|
|
|
|
* talk page notification is bundled based on namespace and title, the bundle string would be
|
|
|
|
* 'edit-user-talk-' + namespace + title, email digest/email bundling would use this hash as
|
|
|
|
* a key to identify bundle-able event. For web bundling, we bundle further based on user's
|
|
|
|
* visit to the overlay, we would generate a display hash based on the hash of $bundleString
|
|
|
|
*
|
2014-05-27 18:28:37 +00:00
|
|
|
* @return bool
|
2013-01-15 23:21:39 +00:00
|
|
|
*/
|
|
|
|
public static function onEchoGetBundleRules( $event, &$bundleString ) {
|
|
|
|
switch ( $event->getType() ) {
|
|
|
|
case 'edit-user-talk':
|
|
|
|
$bundleString = 'edit-user-talk';
|
|
|
|
if ( $event->getTitle() ) {
|
|
|
|
$bundleString .= '-' . $event->getTitle()->getNamespace()
|
|
|
|
. '-' . $event->getTitle()->getDBkey();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'page-linked':
|
|
|
|
$bundleString = 'page-linked';
|
|
|
|
if ( $event->getTitle() ) {
|
|
|
|
$bundleString .= '-' . $event->getTitle()->getNamespace()
|
|
|
|
. '-' . $event->getTitle()->getDBkey();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-04-27 15:14:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-17 00:29:37 +00:00
|
|
|
/**
|
|
|
|
* Handler for EchoGetDefaultNotifiedUsers hook.
|
2012-09-02 09:30:38 +00:00
|
|
|
* @param $event EchoEvent to get implicitly subscribed users for
|
2012-05-17 00:29:37 +00:00
|
|
|
* @param &$users Array to append implicitly subscribed users to.
|
2012-09-02 09:30:38 +00:00
|
|
|
* @return bool true in all cases
|
2012-05-17 00:29:37 +00:00
|
|
|
*/
|
|
|
|
public static function getDefaultNotifiedUsers( $event, &$users ) {
|
2012-08-31 21:50:46 +00:00
|
|
|
switch ( $event->getType() ) {
|
2012-08-01 19:53:05 +00:00
|
|
|
// Everyone deserves to know when something happens
|
2012-10-28 16:47:41 +00:00
|
|
|
// on their user talk page
|
2012-04-27 15:14:24 +00:00
|
|
|
case 'edit-user-talk':
|
|
|
|
if ( !$event->getTitle() || !$event->getTitle()->getNamespace() == NS_USER_TALK ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$username = $event->getTitle()->getText();
|
|
|
|
$user = User::newFromName( $username );
|
2012-08-01 19:53:05 +00:00
|
|
|
if ( $user && $user->getId() ) {
|
2012-04-27 15:14:24 +00:00
|
|
|
$users[$user->getId()] = $user;
|
|
|
|
}
|
2012-08-31 21:50:46 +00:00
|
|
|
break;
|
2012-07-27 22:16:19 +00:00
|
|
|
case 'add-comment':
|
|
|
|
case 'add-talkpage-topic':
|
2012-08-01 19:53:05 +00:00
|
|
|
// Handled by EchoDiscussionParser
|
2012-07-27 22:16:19 +00:00
|
|
|
$extraData = $event->getExtra();
|
|
|
|
|
|
|
|
if ( !isset( $extraData['revid'] ) || !$extraData['revid'] ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$revision = Revision::newFromId( $extraData['revid'] );
|
2012-10-28 16:47:41 +00:00
|
|
|
if ( $revision ) {
|
|
|
|
$users += EchoDiscussionParser::getNotifiedUsersForComment( $revision );
|
|
|
|
}
|
2012-08-31 21:50:46 +00:00
|
|
|
break;
|
2012-08-31 23:35:16 +00:00
|
|
|
case 'welcome':
|
|
|
|
$users[$event->getAgent()->getId()] = $event->getAgent();
|
|
|
|
break;
|
2012-07-18 19:39:33 +00:00
|
|
|
case 'reverted':
|
|
|
|
$extra = $event->getExtra();
|
|
|
|
|
|
|
|
if ( !$extra || !isset( $extra['reverted-user-id'] ) ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$victimID = $extra['reverted-user-id'];
|
|
|
|
$victim = User::newFromId( $victimID );
|
|
|
|
$users[$victim->getId()] = $victim;
|
|
|
|
break;
|
2013-01-15 23:21:39 +00:00
|
|
|
case 'page-linked':
|
2012-12-26 22:05:29 +00:00
|
|
|
$agent = $event->getAgent();
|
2013-01-15 23:21:39 +00:00
|
|
|
$title = $event->getTitle();
|
2012-12-26 22:05:29 +00:00
|
|
|
|
2013-01-15 23:21:39 +00:00
|
|
|
if ( !$title || $title->getArticleID() <= 0 || !$agent ) {
|
2012-12-26 22:05:29 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$dbr = wfGetDB( DB_SLAVE );
|
|
|
|
|
2013-01-15 23:21:39 +00:00
|
|
|
$res = $dbr->selectRow(
|
|
|
|
array( 'revision' ),
|
|
|
|
array( 'rev_user' ),
|
|
|
|
array( 'rev_page' => $title->getArticleID() ),
|
|
|
|
__METHOD__,
|
|
|
|
array( 'LIMIT' => 1, 'ORDER BY' => 'rev_timestamp, rev_id' )
|
|
|
|
);
|
|
|
|
// No notification if agents link their own articles
|
|
|
|
if ( $res && $res->rev_user && $agent->getID() != $res->rev_user ) {
|
|
|
|
// Map each linked page to a corresponding author
|
|
|
|
$user = User::newFromId( $res->rev_user );
|
|
|
|
if ( $user ) {
|
|
|
|
$users[$user->getID()] = $user;
|
2012-12-26 22:05:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2012-10-28 16:47:41 +00:00
|
|
|
case 'mention':
|
|
|
|
$extraData = $event->getExtra();
|
2013-03-13 19:30:20 +00:00
|
|
|
foreach ( $extraData['mentioned-users'] as $userId ) {
|
|
|
|
//backward compatibility
|
|
|
|
if ( $userId instanceof User ) {
|
|
|
|
$users[$userId->getID()] = $userId;
|
|
|
|
} else {
|
|
|
|
$users[$userId] = User::newFromId( $userId );
|
|
|
|
}
|
|
|
|
}
|
2012-10-28 16:47:41 +00:00
|
|
|
break;
|
2013-03-13 00:49:19 +00:00
|
|
|
case 'user-rights':
|
|
|
|
$extraData = $event->getExtra();
|
|
|
|
$users[$extraData['user']] = User::newFromId( $extraData['user'] );
|
|
|
|
break;
|
2012-04-27 15:14:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-28 23:52:12 +00:00
|
|
|
/**
|
2013-01-15 23:21:39 +00:00
|
|
|
* Handler for EchoGetNotificationTypes hook, Adjust the notify types (e.g. web, email) which
|
|
|
|
* are applicable to this event and user based on various user options. In other words, allow
|
|
|
|
* certain non-echo user options to override the echo notification options.
|
|
|
|
* @param $user User
|
2013-02-28 23:52:12 +00:00
|
|
|
* @param $event EchoEvent
|
|
|
|
* @param $notifyTypes
|
|
|
|
* @return bool
|
|
|
|
*/
|
2013-01-15 23:21:39 +00:00
|
|
|
public static function getNotificationTypes( $user, $event, &$notifyTypes ) {
|
2012-08-31 21:50:46 +00:00
|
|
|
if ( !$user->getOption( 'enotifminoredits' ) ) {
|
2012-06-08 05:27:59 +00:00
|
|
|
$extra = $event->getExtra();
|
2012-08-30 16:04:39 +00:00
|
|
|
if ( !empty( $extra['revid'] ) ) {
|
|
|
|
$rev = Revision::newFromID( $extra['revid'] );
|
2012-06-08 05:27:59 +00:00
|
|
|
|
|
|
|
if ( $rev->isMinor() ) {
|
2012-08-30 16:04:39 +00:00
|
|
|
$notifyTypes = array_diff( $notifyTypes, array( 'email' ) );
|
2012-06-08 05:27:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-17 00:29:37 +00:00
|
|
|
/**
|
|
|
|
* Handler for GetPreferences hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/GetPreferences
|
2014-05-27 18:28:37 +00:00
|
|
|
*
|
2012-05-17 00:29:37 +00:00
|
|
|
* @param $user User to get preferences for
|
|
|
|
* @param &$preferences Preferences array
|
2014-05-27 18:28:37 +00:00
|
|
|
*
|
|
|
|
* @throws MWException
|
2012-09-02 09:30:38 +00:00
|
|
|
* @return bool true in all cases
|
2012-05-17 00:29:37 +00:00
|
|
|
*/
|
2012-04-27 15:14:24 +00:00
|
|
|
public static function getPreferences( $user, &$preferences ) {
|
2013-02-16 02:20:34 +00:00
|
|
|
global $wgEchoDefaultNotificationTypes, $wgAuth, $wgEchoEnableEmailBatch,
|
2013-05-01 20:48:12 +00:00
|
|
|
$wgEchoNotifiers, $wgEchoNotificationCategories, $wgEchoNotifications,
|
2014-05-27 18:28:37 +00:00
|
|
|
$wgEchoNewMsgAlert, $wgAllowHTMLEmail;
|
2012-11-16 21:03:57 +00:00
|
|
|
|
2013-06-08 01:05:35 +00:00
|
|
|
// Don't show echo preference page if echo is disabled for this user
|
|
|
|
if ( self::isEchoDisabled( $user ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-16 21:03:57 +00:00
|
|
|
// Show email frequency options
|
|
|
|
$never = wfMessage( 'echo-pref-email-frequency-never' )->plain();
|
|
|
|
$immediately = wfMessage( 'echo-pref-email-frequency-immediately' )->plain();
|
2012-12-14 20:48:41 +00:00
|
|
|
$freqOptions = array(
|
|
|
|
$never => self::EMAIL_NEVER,
|
|
|
|
$immediately => self::EMAIL_IMMEDIATELY,
|
|
|
|
);
|
|
|
|
// Only show digest options if email batch is enabled
|
|
|
|
if ( $wgEchoEnableEmailBatch ) {
|
|
|
|
$daily = wfMessage( 'echo-pref-email-frequency-daily' )->plain();
|
|
|
|
$weekly = wfMessage( 'echo-pref-email-frequency-weekly' )->plain();
|
|
|
|
$freqOptions += array(
|
|
|
|
$daily => self::EMAIL_DAILY_DIGEST,
|
|
|
|
$weekly => self::EMAIL_WEEKLY_DIGEST
|
|
|
|
);
|
|
|
|
}
|
2012-11-16 21:03:57 +00:00
|
|
|
$preferences['echo-email-frequency'] = array(
|
|
|
|
'type' => 'select',
|
2013-04-18 00:44:20 +00:00
|
|
|
'label-message' => 'echo-pref-send-me',
|
|
|
|
'section' => 'echo/emailsettings',
|
2012-12-14 20:48:41 +00:00
|
|
|
'options' => $freqOptions
|
2012-11-16 21:03:57 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// Display information about the user's currently set email address
|
|
|
|
$prefsTitle = SpecialPage::getTitleFor( 'Preferences', false, 'mw-prefsection-echo' );
|
|
|
|
$link = Linker::link(
|
|
|
|
SpecialPage::getTitleFor( 'ChangeEmail' ),
|
|
|
|
wfMessage( $user->getEmail() ? 'prefs-changeemail' : 'prefs-setemail' )->escaped(),
|
|
|
|
array(),
|
|
|
|
array( 'returnto' => $prefsTitle->getFullText() )
|
|
|
|
);
|
|
|
|
$emailAddress = $user->getEmail() ? htmlspecialchars( $user->getEmail() ) : '';
|
|
|
|
if ( $wgAuth->allowPropChange( 'emailaddress' ) ) {
|
|
|
|
if ( $emailAddress === '' ) {
|
|
|
|
$emailAddress .= $link;
|
|
|
|
} else {
|
|
|
|
$emailAddress .= wfMessage( 'word-separator' )->escaped()
|
|
|
|
. wfMessage( 'parentheses' )->rawParams( $link )->escaped();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$preferences['echo-emailaddress'] = array(
|
|
|
|
'type' => 'info',
|
|
|
|
'raw' => true,
|
2013-04-18 00:44:20 +00:00
|
|
|
'default' => $emailAddress,
|
|
|
|
'label-message' => 'echo-pref-send-to',
|
|
|
|
'section' => 'echo/emailsettings'
|
2012-11-16 21:03:57 +00:00
|
|
|
);
|
|
|
|
|
2013-06-24 00:22:08 +00:00
|
|
|
// Only show this option if html email is allowed, otherwise it is always plain text format
|
|
|
|
if ( $wgAllowHTMLEmail ) {
|
|
|
|
// Email format
|
|
|
|
$preferences['echo-email-format'] = array(
|
|
|
|
'type' => 'select',
|
|
|
|
'label-message' => 'echo-pref-email-format',
|
|
|
|
'section' => 'echo/emailsettings',
|
|
|
|
'options' => array (
|
|
|
|
wfMessage( 'echo-pref-email-format-html' )->plain() => self::EMAIL_FORMAT_HTML,
|
|
|
|
wfMessage( 'echo-pref-email-format-plain-text' )->plain() => self::EMAIL_FORMAT_PLAIN_TEXT
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-02-16 02:20:34 +00:00
|
|
|
// Sort notification categories by priority
|
|
|
|
$categoriesAndPriorities = array();
|
|
|
|
foreach ( $wgEchoNotificationCategories as $category => $categoryData ) {
|
|
|
|
// See if the category is not dismissable at all. Must do strict
|
|
|
|
// comparison to true since no-dismiss can also be an array
|
|
|
|
if ( isset( $categoryData['no-dismiss'] ) && in_array( 'all' , $categoryData['no-dismiss'] ) ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// See if user is eligible to recieve this notification (per user group restrictions)
|
|
|
|
if ( EchoNotificationController::getCategoryEligibility( $user, $category ) ) {
|
|
|
|
$categoriesAndPriorities[$category] = EchoNotificationController::getCategoryPriority( $category );
|
2013-01-14 23:52:46 +00:00
|
|
|
}
|
|
|
|
}
|
2013-02-16 02:20:34 +00:00
|
|
|
asort( $categoriesAndPriorities );
|
|
|
|
$validSortedCategories = array_keys( $categoriesAndPriorities );
|
2013-01-14 23:52:46 +00:00
|
|
|
|
2013-05-09 21:23:15 +00:00
|
|
|
// Show subscription options. IMPORTANT: 'echo-subscriptions-email-edit-user-talk' is a
|
|
|
|
// virtual option, its value is saved to existing talk page notification option
|
|
|
|
// 'enotifusertalkpages', see onUserLoadOptions() and onUserSaveOptions() for more
|
|
|
|
// information on how it is handled. Doing it in this way, we can avoid keeping running
|
|
|
|
// massive data migration script to keep these two options synced when echo is enabled on
|
|
|
|
// new wikis or Echo is disabled and re-enabled for some reason. We can update the name
|
|
|
|
// if Echo is ever merged to core
|
2013-02-16 02:20:34 +00:00
|
|
|
|
|
|
|
// Build the columns (output formats)
|
|
|
|
$columns = array();
|
|
|
|
foreach ( $wgEchoNotifiers as $notifierType => $notifierData ) {
|
2013-04-16 22:40:45 +00:00
|
|
|
$formatMessage = wfMessage( 'echo-pref-' . $notifierType )->escaped();
|
2013-02-16 02:20:34 +00:00
|
|
|
$columns[$formatMessage] = $notifierType;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the rows (notification categories)
|
|
|
|
$rows = array();
|
2013-05-02 00:12:59 +00:00
|
|
|
$tooltips = array();
|
2013-02-16 02:20:34 +00:00
|
|
|
foreach ( $validSortedCategories as $category ) {
|
2013-04-16 22:40:45 +00:00
|
|
|
$categoryMessage = wfMessage( 'echo-category-title-' . $category )->numParams( 1 )->escaped();
|
2013-02-16 02:20:34 +00:00
|
|
|
$rows[$categoryMessage] = $category;
|
2013-05-02 00:12:59 +00:00
|
|
|
if ( isset( $wgEchoNotificationCategories[$category]['tooltip'] ) ) {
|
2013-08-20 20:39:05 +00:00
|
|
|
$tooltips[$categoryMessage] = wfMessage( $wgEchoNotificationCategories[$category]['tooltip'] )->text();
|
2013-05-02 00:12:59 +00:00
|
|
|
}
|
2013-02-16 02:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Figure out the individual exceptions in the matrix and make them disabled
|
2013-04-29 17:58:05 +00:00
|
|
|
$forceOptionsOff = $forceOptionsOn = array();
|
2013-02-16 02:20:34 +00:00
|
|
|
foreach ( $wgEchoNotifiers as $notifierType => $notifierData ) {
|
|
|
|
foreach ( $validSortedCategories as $category ) {
|
|
|
|
// See if this output format is non-dismissable
|
|
|
|
if ( isset( $wgEchoNotificationCategories[$category]['no-dismiss'] )
|
|
|
|
&& in_array( $notifierType, $wgEchoNotificationCategories[$category]['no-dismiss'] ) )
|
2013-01-14 23:52:46 +00:00
|
|
|
{
|
2013-04-29 17:58:05 +00:00
|
|
|
$forceOptionsOn[] = "$notifierType-$category";
|
2013-01-14 23:52:46 +00:00
|
|
|
}
|
2013-02-16 02:20:34 +00:00
|
|
|
|
|
|
|
// Make sure this output format is possible for this notification category
|
|
|
|
if ( isset( $wgEchoDefaultNotificationTypes[$category] ) ) {
|
|
|
|
if ( !$wgEchoDefaultNotificationTypes[$category][$notifierType] ) {
|
2013-04-29 17:58:05 +00:00
|
|
|
$forceOptionsOff[] = "$notifierType-$category";
|
2013-01-14 23:52:46 +00:00
|
|
|
}
|
2013-02-16 02:20:34 +00:00
|
|
|
} elseif ( !$wgEchoDefaultNotificationTypes['all'][$notifierType] ) {
|
2013-04-29 17:58:05 +00:00
|
|
|
$forceOptionsOff[] = "$notifierType-$category";
|
2013-01-14 23:52:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-29 17:58:05 +00:00
|
|
|
$invalid = array_intersect( $forceOptionsOff, $forceOptionsOn );
|
|
|
|
if ( $invalid ) {
|
|
|
|
throw new MWException( sprintf(
|
|
|
|
'The following notifications are both forced and removed: %s',
|
|
|
|
implode( ', ', $invalid )
|
|
|
|
) );
|
|
|
|
}
|
2013-02-16 02:20:34 +00:00
|
|
|
$preferences['echo-subscriptions'] = array(
|
|
|
|
'class' => 'HTMLCheckMatrix',
|
|
|
|
'section' => 'echo/echosubscriptions',
|
|
|
|
'rows' => $rows,
|
|
|
|
'columns' => $columns,
|
2013-05-22 19:50:24 +00:00
|
|
|
'prefix' => 'echo-subscriptions-',
|
2013-04-29 17:58:05 +00:00
|
|
|
'force-options-off' => $forceOptionsOff,
|
|
|
|
'force-options-on' => $forceOptionsOn,
|
2013-05-02 00:12:59 +00:00
|
|
|
'tooltips' => $tooltips,
|
2012-04-27 15:14:24 +00:00
|
|
|
);
|
2013-03-20 01:10:23 +00:00
|
|
|
|
2013-05-14 07:05:09 +00:00
|
|
|
if ( $wgEchoNewMsgAlert ) {
|
|
|
|
$preferences['echo-show-alert'] = array(
|
|
|
|
'type' => 'toggle',
|
|
|
|
'label-message' => 'echo-pref-new-message-indicator',
|
|
|
|
'section' => 'echo/newmessageindicator',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-04-28 21:55:05 +00:00
|
|
|
// If we're using Echo to handle user talk page post notifications,
|
|
|
|
// hide the old (non-Echo) preference for this. If Echo is moved to core
|
|
|
|
// we'll want to remove this old user option entirely. For now, though,
|
|
|
|
// we need to keep it defined in case Echo is ever uninstalled.
|
|
|
|
// Otherwise, that preference could be lost entirely. This hiding logic
|
|
|
|
// is not abstracted since there is only a single preference in core
|
|
|
|
// that is potentially made obsolete by Echo.
|
|
|
|
if ( isset( $wgEchoNotifications['edit-user-talk'] ) ) {
|
|
|
|
$preferences['enotifusertalkpages']['type'] = 'hidden';
|
|
|
|
unset( $preferences['enotifusertalkpages']['section'] );
|
|
|
|
}
|
|
|
|
|
2013-03-20 01:10:23 +00:00
|
|
|
// Show fly-out display prefs
|
2013-04-23 18:36:48 +00:00
|
|
|
// Per bug 47562, we're going to hide this pref for now until we see
|
|
|
|
// what the community reaction to Echo is on en.wiki.
|
2013-03-20 01:10:23 +00:00
|
|
|
$preferences['echo-notify-show-link'] = array(
|
2013-04-23 18:36:48 +00:00
|
|
|
'type' => 'hidden',
|
2013-03-20 01:10:23 +00:00
|
|
|
'label-message' => 'echo-pref-notify-show-link',
|
2013-04-23 18:36:48 +00:00
|
|
|
//'section' => 'echo/displaynotifications',
|
2013-03-20 01:10:23 +00:00
|
|
|
);
|
2012-04-27 15:14:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-17 00:29:37 +00:00
|
|
|
/**
|
|
|
|
* Handler for ArticleSaveComplete hook
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/ArticleSaveComplete
|
|
|
|
* @param $article Article edited
|
|
|
|
* @param $user User who edited
|
2012-09-02 09:30:38 +00:00
|
|
|
* @param $text string New article text
|
|
|
|
* @param $summary string Edit summary
|
|
|
|
* @param $minoredit bool Minor edit or not
|
|
|
|
* @param $watchthis bool Watch this article?
|
2012-09-26 05:09:43 +00:00
|
|
|
* @param $sectionanchor string Section that was edited
|
|
|
|
* @param $flags int Edit flags
|
2012-05-17 00:29:37 +00:00
|
|
|
* @param $revision Revision that was created
|
|
|
|
* @param $status Status
|
2012-09-02 09:30:38 +00:00
|
|
|
* @return bool true in all cases
|
2012-05-17 00:29:37 +00:00
|
|
|
*/
|
2012-08-31 21:50:46 +00:00
|
|
|
public static function onArticleSaved( &$article, &$user, $text, $summary, $minoredit, $watchthis, $sectionanchor, &$flags, $revision, &$status ) {
|
2013-02-16 02:20:34 +00:00
|
|
|
global $wgEchoNotifications, $wgRequest;
|
2013-11-04 17:58:47 +00:00
|
|
|
|
2012-07-18 19:39:33 +00:00
|
|
|
if ( $revision ) {
|
2013-11-04 17:58:47 +00:00
|
|
|
EchoDiscussionParser::generateEventsForRevision( $revision );
|
2012-07-27 22:16:19 +00:00
|
|
|
|
2012-07-18 19:39:33 +00:00
|
|
|
// Handle the case of someone undoing an edit, either through the
|
|
|
|
// 'undo' link in the article history or via the API.
|
2013-02-16 02:20:34 +00:00
|
|
|
if ( isset( $wgEchoNotifications['reverted'] ) ) {
|
2013-11-04 17:58:47 +00:00
|
|
|
$title = $article->getTitle();
|
2013-01-17 01:38:46 +00:00
|
|
|
$undidRevId = $wgRequest->getVal( 'wpUndidRevision' );
|
2012-11-01 20:15:37 +00:00
|
|
|
if ( $undidRevId ) {
|
|
|
|
$undidRevision = Revision::newFromId( $undidRevId );
|
2013-11-23 06:20:45 +00:00
|
|
|
if ( $undidRevision && $undidRevision->getTitle()->equals( $title ) ) {
|
2012-11-01 20:15:37 +00:00
|
|
|
$victimId = $undidRevision->getUser();
|
|
|
|
if ( $victimId ) { // No notifications for anonymous users
|
|
|
|
EchoEvent::create( array(
|
|
|
|
'type' => 'reverted',
|
2013-11-04 17:58:47 +00:00
|
|
|
'title' => $title,
|
2012-11-01 20:15:37 +00:00
|
|
|
'extra' => array(
|
|
|
|
'revid' => $revision->getId(),
|
|
|
|
'reverted-user-id' => $victimId,
|
|
|
|
'reverted-revision-id' => $undidRevId,
|
|
|
|
'method' => 'undo',
|
|
|
|
),
|
|
|
|
'agent' => $user,
|
|
|
|
) );
|
|
|
|
}
|
2012-07-18 19:39:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-27 15:14:24 +00:00
|
|
|
|
2012-11-01 20:15:37 +00:00
|
|
|
}
|
2012-04-27 15:14:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-06-01 10:57:09 +00:00
|
|
|
|
2013-05-01 19:27:32 +00:00
|
|
|
/**
|
|
|
|
* Handler for EchoAbortEmailNotification hook
|
|
|
|
* @param $user User
|
|
|
|
* @param $event EchoEvent
|
|
|
|
* @return bool true - send email, false - do not send email
|
|
|
|
*/
|
|
|
|
public static function onEchoAbortEmailNotification( $user, $event ) {
|
|
|
|
if ( $event->getType() === 'edit-user-talk' ) {
|
|
|
|
$extra = $event->getExtra();
|
|
|
|
if ( !empty( $extra['minoredit'] ) ) {
|
|
|
|
global $wgEnotifMinorEdits;
|
|
|
|
if ( !$wgEnotifMinorEdits || !$user->getOption( 'enotifminoredits' ) ) {
|
|
|
|
// Do not send talk page notification email
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Proceed to send talk page notification email
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-31 23:35:16 +00:00
|
|
|
/**
|
|
|
|
* Handler for AddNewAccount hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/AddNewAccount
|
|
|
|
* @param $user User object that was created.
|
|
|
|
* @param $byEmail bool True when account was created "by email".
|
2012-09-26 05:09:43 +00:00
|
|
|
* @return bool
|
2012-08-31 23:35:16 +00:00
|
|
|
*/
|
|
|
|
public static function onAccountCreated( $user, $byEmail ) {
|
2013-04-25 00:41:47 +00:00
|
|
|
|
|
|
|
// new users get echo preferences set that are not the default settings for existing users
|
|
|
|
$user->setOption( 'echo-subscriptions-web-reverted', false );
|
|
|
|
$user->setOption( 'echo-subscriptions-email-reverted', false );
|
|
|
|
$user->setOption( 'echo-subscriptions-web-article-linked', true );
|
|
|
|
$user->setOption( 'echo-subscriptions-email-mention', true );
|
|
|
|
$user->setOption( 'echo-subscriptions-email-article-linked', true );
|
|
|
|
$user->saveSettings();
|
|
|
|
|
2012-09-26 05:09:43 +00:00
|
|
|
EchoEvent::create( array(
|
2012-08-31 23:35:16 +00:00
|
|
|
'type' => 'welcome',
|
|
|
|
'agent' => $user,
|
|
|
|
) );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-13 00:49:19 +00:00
|
|
|
/**
|
|
|
|
* Handler for UserRights hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/UserRights
|
2014-05-27 18:28:37 +00:00
|
|
|
*
|
2013-03-13 00:49:19 +00:00
|
|
|
* @param $user User User object that was changed
|
|
|
|
* @param $add array Array of strings corresponding to groups added
|
|
|
|
* @param $remove array Array of strings corresponding to groups removed
|
2014-05-27 18:28:37 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
2013-03-13 00:49:19 +00:00
|
|
|
*/
|
|
|
|
public static function onUserRights( &$user, $add, $remove ) {
|
|
|
|
global $wgUser;
|
|
|
|
|
2013-07-16 18:19:29 +00:00
|
|
|
if ( $user instanceof User && !$user->isAnon() && $wgUser->getId() != $user->getId() && ( $add || $remove ) ) {
|
2013-03-13 00:49:19 +00:00
|
|
|
EchoEvent::create(
|
|
|
|
array(
|
|
|
|
'type' => 'user-rights',
|
|
|
|
'title' => Title::newMainPage(),
|
|
|
|
'extra' => array(
|
|
|
|
'user' => $user->getID(),
|
|
|
|
'add' => $add,
|
|
|
|
'remove' => $remove
|
|
|
|
),
|
|
|
|
'agent' => $wgUser,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-12-26 22:05:29 +00:00
|
|
|
/**
|
|
|
|
* Handler for LinksUpdateAfterInsert hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/LinksUpdateAfterInsert
|
|
|
|
* @param $linksUpdate LinksUpdate
|
|
|
|
* @param $table string
|
|
|
|
* @param $insertions array
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function onLinksUpdateAfterInsert( $linksUpdate, $table, $insertions ) {
|
2013-03-18 21:48:33 +00:00
|
|
|
global $wgRequest, $wgUser;
|
|
|
|
|
|
|
|
// Rollback or undo should not trigger link notification
|
|
|
|
// @Todo Implement a better solution so it doesn't depend on the checking of
|
|
|
|
// a specific set of request variables
|
|
|
|
if ( $wgRequest->getVal( 'wpUndidRevision' ) || $wgRequest->getVal( 'action' ) == 'rollback' ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-16 00:13:58 +00:00
|
|
|
// Handle only
|
2013-05-01 20:48:12 +00:00
|
|
|
// 1. inserts to pagelinks table &&
|
2013-01-16 00:13:58 +00:00
|
|
|
// 2. content namespace pages &&
|
|
|
|
// 3. non-transcluding pages &&
|
|
|
|
// 4. non-redirect pages
|
|
|
|
if ( $table !== 'pagelinks' || !MWNamespace::isContent( $linksUpdate->mTitle->getNamespace() )
|
|
|
|
|| !$linksUpdate->mRecursive || $linksUpdate->mTitle->isRedirect() )
|
|
|
|
{
|
2013-01-04 01:36:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-15 23:21:39 +00:00
|
|
|
// link notification is boundless as you can include infinite number of links in a page
|
|
|
|
// db insert is expensive, limit it to a reasonable amount, we can increase this limit
|
|
|
|
// once the storage is on Redis
|
|
|
|
$max = 10;
|
2013-01-08 23:57:28 +00:00
|
|
|
// Only create notifications for links to content namespace pages
|
2013-01-15 23:21:39 +00:00
|
|
|
// @Todo - use one big insert instead of individual insert inside foreach loop
|
2014-05-27 18:28:37 +00:00
|
|
|
foreach ( $insertions as $page ) {
|
2013-01-15 23:21:39 +00:00
|
|
|
if ( MWNamespace::isContent( $page['pl_namespace'] ) ) {
|
|
|
|
$title = Title::makeTitle( $page['pl_namespace'], $page['pl_title'] );
|
2013-05-03 16:30:29 +00:00
|
|
|
if ( $title->isRedirect() ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-01-15 23:21:39 +00:00
|
|
|
EchoEvent::create( array(
|
|
|
|
'type' => 'page-linked',
|
|
|
|
'title' => $title,
|
|
|
|
'agent' => $wgUser,
|
|
|
|
'extra' => array(
|
2013-05-09 18:50:05 +00:00
|
|
|
'link-from-page-id' => $linksUpdate->mTitle->getArticleId(),
|
2013-01-15 23:21:39 +00:00
|
|
|
)
|
|
|
|
) );
|
|
|
|
$max--;
|
|
|
|
}
|
|
|
|
if ( $max < 0 ) {
|
|
|
|
break;
|
2013-01-04 01:36:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-26 22:05:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-17 00:29:37 +00:00
|
|
|
/**
|
|
|
|
* Handler for BeforePageDisplay hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/BeforePageDisplay
|
|
|
|
* @param $out OutputPage object
|
|
|
|
* @param $skin Skin being used.
|
2012-09-02 09:30:38 +00:00
|
|
|
* @return bool true in all cases
|
2012-05-17 00:29:37 +00:00
|
|
|
*/
|
2012-06-01 10:57:09 +00:00
|
|
|
static function beforePageDisplay( $out, $skin ) {
|
2012-11-01 21:59:53 +00:00
|
|
|
$user = $out->getUser();
|
2013-06-08 01:05:35 +00:00
|
|
|
|
|
|
|
// Don't show the alert message and badge if echo is disabled for this user
|
|
|
|
if ( self::isEchoDisabled( $user ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-20 01:10:23 +00:00
|
|
|
if ( $user->isLoggedIn() && $user->getOption( 'echo-notify-show-link' ) ) {
|
2012-11-01 21:59:53 +00:00
|
|
|
// Load the module for the Notifications flyout
|
2012-08-30 16:04:39 +00:00
|
|
|
$out->addModules( array( 'ext.echo.overlay' ) );
|
2013-05-15 23:10:49 +00:00
|
|
|
// Load the styles for the Notifications badge
|
|
|
|
$out->addModuleStyles( 'ext.echo.badge' );
|
2012-06-01 10:57:09 +00:00
|
|
|
}
|
2013-11-13 03:17:04 +00:00
|
|
|
|
2012-06-01 10:57:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-17 00:29:37 +00:00
|
|
|
/**
|
|
|
|
* Handler for PersonalUrls hook.
|
2012-11-01 21:59:53 +00:00
|
|
|
* Add a "Notifications" item to the user toolbar ('personal URLs').
|
2012-05-17 00:29:37 +00:00
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/PersonalUrls
|
|
|
|
* @param &$personal_urls Array of URLs to append to.
|
|
|
|
* @param &$title Title of page being visited.
|
2013-11-13 03:17:04 +00:00
|
|
|
* @param SkinTemplate $sk
|
2012-09-02 09:30:38 +00:00
|
|
|
* @return bool true in all cases
|
2012-05-17 00:29:37 +00:00
|
|
|
*/
|
2013-11-13 03:17:04 +00:00
|
|
|
static function onPersonalUrls( &$personal_urls, &$title, $sk ) {
|
|
|
|
global $wgEchoNewMsgAlert;
|
|
|
|
$user = $sk->getUser();
|
|
|
|
if ( $user->isAnon() || self::isEchoDisabled( $user ) ) {
|
2012-06-01 10:57:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-13 03:17:04 +00:00
|
|
|
// Add a "My notifications" item to personal URLs
|
|
|
|
if ( $user->getOption( 'echo-notify-show-link' ) ) {
|
|
|
|
$notificationCount = MWEchoNotifUser::newFromUser( $user )->getNotificationCount();
|
|
|
|
$text = EchoNotificationController::formatNotificationCount( $notificationCount );
|
|
|
|
$url = SpecialPage::getTitleFor( 'Notifications' )->getLocalURL();
|
|
|
|
if ( $notificationCount == 0 ) {
|
|
|
|
$linkClasses = array( 'mw-echo-notifications-badge' );
|
|
|
|
} else {
|
|
|
|
$linkClasses = array( 'mw-echo-unread-notifications', 'mw-echo-notifications-badge' );
|
|
|
|
}
|
|
|
|
$notificationsLink = array(
|
|
|
|
'href' => $url,
|
|
|
|
'text' => $text,
|
|
|
|
'active' => ( $url == $title->getLocalUrl() ),
|
|
|
|
'class' => $linkClasses,
|
|
|
|
);
|
|
|
|
|
|
|
|
$insertUrls = array( 'notifications' => $notificationsLink );
|
|
|
|
$personal_urls = wfArrayInsertAfter( $personal_urls, $insertUrls, 'userpage' );
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the user has new messages, display a talk page alert
|
|
|
|
if ( $wgEchoNewMsgAlert && $user->getOption( 'echo-show-alert' ) && $user->getNewtalk() ) {
|
|
|
|
$personal_urls['mytalk']['text'] = $sk->msg( 'echo-new-messages' )->text();
|
|
|
|
$personal_urls['mytalk']['class'] = array( 'mw-echo-alert' );
|
|
|
|
$sk->getOutput()->addModuleStyles( 'ext.echo.alert' );
|
2012-12-12 02:18:51 +00:00
|
|
|
}
|
2012-06-01 10:57:09 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2012-07-17 22:19:32 +00:00
|
|
|
|
2012-05-17 00:29:37 +00:00
|
|
|
/**
|
2013-06-08 01:05:35 +00:00
|
|
|
* Handler for AbortTalkPageEmailNotification hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/AbortTalkPageEmailNotification
|
|
|
|
* @param $targetUser User
|
|
|
|
* @param $title Title
|
|
|
|
* @return bool
|
2012-05-17 00:29:37 +00:00
|
|
|
*/
|
2013-06-08 01:05:35 +00:00
|
|
|
static function onAbortTalkPageEmailNotification( $targetUser, $title ) {
|
|
|
|
global $wgEchoNotifications;
|
|
|
|
|
|
|
|
// Send legacy talk page email notification if
|
|
|
|
// 1. echo is disabled for them or
|
|
|
|
// 2. echo talk page notification is disabled
|
|
|
|
if ( self::isEchoDisabled( $targetUser ) || !isset( $wgEchoNotifications['edit-user-talk'] ) ) {
|
|
|
|
// Legacy talk page email notification
|
|
|
|
return true;
|
2012-11-16 21:03:57 +00:00
|
|
|
}
|
2013-06-08 01:05:35 +00:00
|
|
|
|
|
|
|
// Echo talk page email notification
|
|
|
|
return false;
|
2012-07-17 22:19:32 +00:00
|
|
|
}
|
2012-07-31 21:18:16 +00:00
|
|
|
|
2014-02-21 01:48:08 +00:00
|
|
|
/**
|
|
|
|
* Handler for AbortWatchlistEmailNotification hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/AbortWatchlistEmailNotification
|
|
|
|
* @param $targetUser User
|
|
|
|
* @param $title Title
|
|
|
|
* @param $emailNotification EmailNotification The email notification object that sends non-echo notifications
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
static function onSendWatchlistEmailNotification( $targetUser, $title, $emailNotification ) {
|
|
|
|
// If a user is watching his/her own talk page, do not send talk page watchlist
|
|
|
|
// email notification if the user is receiving Echo talk page notification
|
|
|
|
if ( $title->isTalkPage() && $targetUser->getTalkPage()->equals( $title ) ) {
|
|
|
|
if (
|
|
|
|
!self::isEchoDisabled( $targetUser )
|
|
|
|
&& in_array( 'edit-user-talk', EchoNotificationController::getUserEnabledEvents( $targetUser, 'email' ) )
|
|
|
|
) {
|
|
|
|
// Do not send watchlist email notification, the user will receive an Echo notification
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Proceed to send watchlist email notification
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-01 21:59:53 +00:00
|
|
|
/**
|
|
|
|
* Handler for MakeGlobalVariablesScript hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/MakeGlobalVariablesScript
|
2013-02-28 23:52:12 +00:00
|
|
|
* @param &$vars array Variables to be added into the output
|
2012-11-01 21:59:53 +00:00
|
|
|
* @param $outputPage OutputPage instance calling the hook
|
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
2012-09-02 09:30:38 +00:00
|
|
|
public static function makeGlobalVariablesScript( &$vars, OutputPage $outputPage ) {
|
2013-06-05 20:44:06 +00:00
|
|
|
global $wgEchoHelpPage, $wgEchoMaxNotificationCount, $wgEchoConfig;
|
2012-07-31 21:18:16 +00:00
|
|
|
$user = $outputPage->getUser();
|
|
|
|
|
2012-08-01 19:53:05 +00:00
|
|
|
// Provide info for the Overlay
|
|
|
|
|
2012-09-02 09:30:38 +00:00
|
|
|
if ( ! $user->isAnon() ) {
|
2012-07-31 21:18:16 +00:00
|
|
|
$vars['wgEchoOverlayConfiguration'] = array(
|
2013-05-24 22:51:47 +00:00
|
|
|
'notification-count' => MWEchoNotifUser::newFromUser( $user )->getFormattedNotificationCount(),
|
2013-04-17 01:00:21 +00:00
|
|
|
'max-notification-count' => $wgEchoMaxNotificationCount,
|
2012-07-31 21:18:16 +00:00
|
|
|
);
|
2013-01-04 21:56:30 +00:00
|
|
|
$vars['wgEchoHelpPage'] = $wgEchoHelpPage;
|
2013-06-05 20:44:06 +00:00
|
|
|
$vars['wgEchoConfig'] = $wgEchoConfig;
|
2012-07-31 21:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2012-07-31 00:29:49 +00:00
|
|
|
|
2012-11-01 21:59:53 +00:00
|
|
|
/**
|
|
|
|
* Handler for UnitTestsList hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/UnitTestsList
|
|
|
|
* @param &$files Array of unit test files
|
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
2012-07-31 00:29:49 +00:00
|
|
|
static function getUnitTests( &$files ) {
|
2014-07-02 15:46:41 +00:00
|
|
|
$files = array_merge( $files, glob( __DIR__ . '/tests/*Test.php' ) );
|
2012-08-07 18:54:42 +00:00
|
|
|
return true;
|
2012-07-31 00:29:49 +00:00
|
|
|
}
|
2012-07-31 20:44:43 +00:00
|
|
|
|
2012-11-01 21:59:53 +00:00
|
|
|
/**
|
2013-05-05 00:49:08 +00:00
|
|
|
* Handler for GetNewMessagesAlert hook.
|
|
|
|
* We're using the GetNewMessagesAlert hook instead of the
|
|
|
|
* ArticleEditUpdateNewTalk hook since we still want the user_newtalk data
|
|
|
|
* to be updated and availble to client-side tools and the API.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/GetNewMessagesAlert
|
|
|
|
* @param &$newMessagesAlert String An alert that the user has new messages
|
|
|
|
* or an empty string if the user does not (empty by default)
|
|
|
|
* @param $newtalks Array This will be empty if the user has no new messages
|
|
|
|
* or an Array containing links and revisions if there are new messages
|
|
|
|
* @param $user User The user who is loading the page
|
|
|
|
* @param $out Output object
|
|
|
|
* @return bool Should return false to prevent the new messages alert (OBOD)
|
|
|
|
* or true to allow the new messages alert
|
2012-11-01 21:59:53 +00:00
|
|
|
*/
|
2013-05-05 00:49:08 +00:00
|
|
|
static function abortNewMessagesAlert( &$newMessagesAlert, $newtalks, $user, $out ) {
|
2013-03-20 01:10:23 +00:00
|
|
|
global $wgEchoNotifications;
|
2013-06-08 01:05:35 +00:00
|
|
|
|
2012-11-01 21:59:53 +00:00
|
|
|
// If the user has the notifications flyout turned on and is receiving
|
2013-05-05 00:49:08 +00:00
|
|
|
// notifications for talk page messages, disable the new messages alert.
|
|
|
|
if ( $user->isLoggedIn()
|
|
|
|
&& $user->getOption( 'echo-notify-show-link' )
|
2013-03-20 01:10:23 +00:00
|
|
|
&& isset( $wgEchoNotifications['edit-user-talk'] )
|
|
|
|
) {
|
2013-06-08 01:05:35 +00:00
|
|
|
// Show the new messages alert for users with echo disabled
|
|
|
|
if ( self::isEchoDisabled( $user ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
2013-05-05 00:49:08 +00:00
|
|
|
// hide new messages alert
|
2012-11-01 21:59:53 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2013-05-05 00:49:08 +00:00
|
|
|
// show new messages alert
|
2012-11-01 21:59:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-07-31 20:44:43 +00:00
|
|
|
}
|
2012-07-18 19:39:33 +00:00
|
|
|
|
2012-11-01 21:59:53 +00:00
|
|
|
/**
|
|
|
|
* Handler for ArticleRollbackComplete hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/ArticleRollbackComplete
|
2013-02-28 23:52:12 +00:00
|
|
|
* @param $page WikiPage The article that was edited
|
|
|
|
* @param $agent User The user who did the rollback
|
|
|
|
* @param $newRevision Revision The revision the page was reverted back to
|
|
|
|
* @param $oldRevision Revision The revision of the top edit that was reverted
|
2012-11-01 21:59:53 +00:00
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
2012-07-18 19:39:33 +00:00
|
|
|
static function onRollbackComplete( $page, $agent, $newRevision, $oldRevision ) {
|
|
|
|
$victimId = $oldRevision->getUser();
|
|
|
|
|
2013-11-16 19:24:04 +00:00
|
|
|
if (
|
|
|
|
$victimId && // No notifications for anonymous users
|
|
|
|
!$oldRevision->getContent()->equals( $newRevision->getContent() ) // No notifications for null rollbacks
|
|
|
|
) {
|
2012-07-18 19:39:33 +00:00
|
|
|
EchoEvent::create( array(
|
|
|
|
'type' => 'reverted',
|
|
|
|
'title' => $page->getTitle(),
|
|
|
|
'extra' => array(
|
|
|
|
'revid' => $page->getRevision()->getId(),
|
|
|
|
'reverted-user-id' => $victimId,
|
|
|
|
'reverted-revision-id' => $oldRevision->getId(),
|
|
|
|
'method' => 'rollback',
|
|
|
|
),
|
|
|
|
'agent' => $agent,
|
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2013-04-12 22:12:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for UserSaveSettings hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/UserSaveSettings
|
|
|
|
* @param $user User whose settings were saved
|
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
|
|
|
static function onUserSaveSettings( $user ) {
|
2013-11-21 00:31:01 +00:00
|
|
|
// Extensions like AbuseFilter might create an account, but
|
|
|
|
// the tables we need might not exist. Bug 57335
|
|
|
|
if ( !defined( 'MW_UPDATER' ) ) {
|
|
|
|
// Reset the notification count since it may have changed due to user
|
|
|
|
// option changes. This covers both explicit changes in the preferences
|
|
|
|
// and changes made through the options API (since both call this hook).
|
|
|
|
MWEchoNotifUser::newFromUser( $user )->resetNotificationCount();
|
|
|
|
}
|
2013-04-12 22:12:22 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-04-26 16:08:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for UserLoadOptions hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/UserLoadOptions
|
|
|
|
* @param $user User whose options were loaded
|
|
|
|
* @param $options Options can be modified
|
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
|
|
|
public static function onUserLoadOptions( $user, &$options ) {
|
2013-05-09 21:23:15 +00:00
|
|
|
// Use existing enotifusertalkpages option for echo-subscriptions-email-edit-user-talk
|
|
|
|
if ( isset( $options['enotifusertalkpages'] ) ) {
|
|
|
|
$options['echo-subscriptions-email-edit-user-talk'] = $options['enotifusertalkpages'];
|
2013-04-26 16:08:40 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-04-30 02:53:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for UserSaveOptions hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/UserSaveOptions
|
|
|
|
* @param $user User whose options are being saved
|
|
|
|
* @param $options Options can be modified
|
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
|
|
|
public static function onUserSaveOptions( $user, &$options ) {
|
2013-05-09 21:23:15 +00:00
|
|
|
// echo-subscriptions-email-edit-user-talk is just a virtual option,
|
|
|
|
// save the value in the real option enotifusertalkpages
|
|
|
|
if ( isset( $options['echo-subscriptions-email-edit-user-talk'] ) ) {
|
|
|
|
$options['enotifusertalkpages'] = $options['echo-subscriptions-email-edit-user-talk'];
|
|
|
|
unset( $options['echo-subscriptions-email-edit-user-talk'] );
|
2013-04-30 02:53:33 +00:00
|
|
|
}
|
2013-05-16 21:14:26 +00:00
|
|
|
|
2013-04-30 02:53:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-05-24 22:51:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for UserClearNewTalkNotification hook.
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/UserClearNewTalkNotification
|
|
|
|
* @param $user User whose talk page notification should be marked as read
|
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
|
|
|
public static function onUserClearNewTalkNotification( User $user ) {
|
|
|
|
if ( !$user->isAnon() ) {
|
|
|
|
MWEchoNotifUser::newFromUser( $user )->clearTalkNotification();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for EchoCreateNotificationComplete hook, this will allow some
|
|
|
|
* extra stuff to be done upon creating a new notification
|
|
|
|
* @param $notif EchoNotification
|
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
|
|
|
public static function onEchoCreateNotificationComplete( EchoNotification $notif ) {
|
|
|
|
if ( $notif->getEvent() && $notif->getUser() ) {
|
|
|
|
// Extra stuff for talk page notification
|
|
|
|
if ( $notif->getEvent()->getType() === 'edit-user-talk' ) {
|
|
|
|
$notifUser = MWEchoNotifUser::newFromUser( $notif->getUser() );
|
|
|
|
$notifUser->flagCacheWithNewTalkNotification();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2013-06-08 01:05:35 +00:00
|
|
|
|
2014-06-26 01:04:31 +00:00
|
|
|
/**
|
|
|
|
* Handler for ParserTestTables hook, makes sure that Echo's tables are present during tests
|
|
|
|
* @see http://www.mediawiki.org/wiki/Manual:Hooks/UserClearNewTalkNotification
|
|
|
|
* @param array $tables List of DB tables to be used for parser tests
|
|
|
|
* @return bool true in all cases
|
|
|
|
*/
|
|
|
|
public static function onParserTestTables( &$tables ) {
|
|
|
|
$tables[] = 'echo_event';
|
|
|
|
$tables[] = 'echo_notification';
|
|
|
|
$tables[] = 'echo_email_batch';
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-08 01:05:35 +00:00
|
|
|
/**
|
|
|
|
* Echo should be disabled for users who are under cohort study
|
|
|
|
* @param $user User
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function isEchoDisabled( User $user ) {
|
|
|
|
global $wgEchoCohortInterval;
|
|
|
|
|
|
|
|
// Make sure the user has an id and cohort study timestamp is specified
|
|
|
|
if ( !$wgEchoCohortInterval || !$user->getId() ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
list( $start, $bucketEnd, $cohortEnd ) = $wgEchoCohortInterval;
|
|
|
|
|
|
|
|
$regTimestamp = $user->getRegistration();
|
|
|
|
|
|
|
|
// Cohort study is for user with a registration timestamp
|
|
|
|
if ( !$regTimestamp ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cohort study is for even user_id
|
|
|
|
if ( $user->getId() % 2 === 1 ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
|
|
|
// Make sure the user is registered during the bucketing period
|
|
|
|
// and the cohort study doesn't end yet
|
|
|
|
if ( $start <= $regTimestamp && $regTimestamp <= $bucketEnd
|
|
|
|
&& $start <= $now && $now <= $cohortEnd
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-07-18 16:28:41 +00:00
|
|
|
}
|