コード例 #1
0
ファイル: Notifier.php プロジェクト: biribogos/wikihow-src
 /**
  * Send a Notification to a user by email
  *
  * @param $user User to notify.
  * @param $event EchoEvent to notify about.
  * @return bool
  */
 public static function notifyWithEmail($user, $event)
 {
     // No valid email address or email notification
     if (!$user->isEmailConfirmed() || $user->getOption('echo-email-frequency') < 0) {
         return false;
     }
     // Final check on whether to send email for this user & event
     if (!wfRunHooks('EchoAbortEmailNotification', array($user, $event))) {
         return false;
     }
     // See if the user wants to receive emails for this category or the user is eligible to receive this email
     if (in_array($event->getType(), EchoNotificationController::getUserEnabledEvents($user, 'email'))) {
         global $wgEchoEnableEmailBatch, $wgEchoNotifications, $wgNotificationSender, $wgNotificationSenderName, $wgNotificationReplyName, $wgEchoBundleEmailInterval;
         $priority = EchoNotificationController::getNotificationPriority($event->getType());
         $bundleString = $bundleHash = '';
         // We should have bundling for email digest as long as either web or email bundling is on, for example, talk page
         // email bundling is off, but if a user decides to receive email digest, we should bundle those messages
         if (!empty($wgEchoNotifications[$event->getType()]['bundle']['web']) || !empty($wgEchoNotifications[$event->getType()]['bundle']['email'])) {
             wfRunHooks('EchoGetBundleRules', array($event, &$bundleString));
         }
         if ($bundleString) {
             $bundleHash = md5($bundleString);
         }
         MWEchoEventLogging::logSchemaEcho($user, $event, 'email');
         // email digest notification ( weekly or daily )
         if ($wgEchoEnableEmailBatch && $user->getOption('echo-email-frequency') > 0) {
             // always create a unique event hash for those events don't support bundling
             // this is mainly for group by
             if (!$bundleHash) {
                 $bundleHash = md5($event->getType() . '-' . $event->getId());
             }
             MWEchoEmailBatch::addToQueue($user->getId(), $event->getId(), $priority, $bundleHash);
             return true;
         }
         $addedToQueue = false;
         // only send bundle email if email bundling is on
         if ($wgEchoBundleEmailInterval && $bundleHash && !empty($wgEchoNotifications[$event->getType()]['bundle']['email'])) {
             $bundler = MWEchoEmailBundler::newFromUserHash($user, $bundleHash);
             if ($bundler) {
                 $addedToQueue = $bundler->addToEmailBatch($event->getId(), $priority);
             }
         }
         // send single notification if the email wasn't added to queue for bundling
         if (!$addedToQueue) {
             // instant email notification
             $toAddress = new MailAddress($user);
             $fromAddress = new MailAddress($wgNotificationSender, $wgNotificationSenderName);
             $replyAddress = new MailAddress($wgNotificationSender, $wgNotificationReplyName);
             // Since we are sending a single email, should set the bundle hash to null
             // if it is set with a value from somewhere else
             $event->setBundleHash(null);
             $email = EchoNotificationController::formatNotification($event, $user, 'email', 'email');
             $subject = $email['subject'];
             $body = $email['body'];
             UserMailer::send($toAddress, $fromAddress, $subject, $body, $replyAddress);
             MWEchoEventLogging::logSchemaEchoMail($user, 'single');
         }
     }
     return true;
 }
コード例 #2
0
 /**
  * @param $user User object to check notifications for
  * @param $dbSource string use master or slave storage to pull count
  * @return int
  */
 public function getNotificationCount($user, $dbSource)
 {
     // double check
     if (!in_array($dbSource, array(DB_SLAVE, DB_MASTER))) {
         $dbSource = DB_SLAVE;
     }
     $eventTypesToLoad = EchoNotificationController::getUserEnabledEvents($user, 'web');
     if (!$eventTypesToLoad) {
         return 0;
     }
     global $wgEchoMaxNotificationCount;
     //XXCHANGEDXX - allow anons [sc|rs]
     $db = MWEchoDbFactory::getDB($dbSource);
     $res = $db->select(array('echo_notification', 'echo_event'), array('notification_event'), array('notification_user' => $user->getId(), 'notification_bundle_base' => 1, 'notification_read_timestamp' => null, 'event_type' => $eventTypesToLoad) + ($user->isAnon() ? array('notification_anon_ip' => $user->getName()) : array()), __METHOD__, array('LIMIT' => $wgEchoMaxNotificationCount + 1), array('echo_event' => array('LEFT JOIN', 'notification_event=event_id')));
     return $db->numRows($res);
 }
コード例 #3
0
ファイル: Hooks.php プロジェクト: biribogos/wikihow-src
 /**
  * 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;
 }