3 * Classes used to send e-mails
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @author <brion@pobox.com>
22 * @author <mail@tgries.de>
23 * @author Tim Starling
24 * @author Luke Welling lwelling@wikimedia.org
28 * This module processes the email notifications when the current page is
29 * changed. It looks up the table watchlist to find out which users are watching
32 * The current implementation sends independent emails to each watching user for
33 * the following reason:
35 * - Each watching user will be notified about the page edit time expressed in
36 * his/her local time (UTC is shown additionally). To achieve this, we need to
37 * find the individual timeoffset of each watching user from the preferences..
39 * Suggested improvement to slack down the number of sent emails: We could think
40 * of sending out bulk mails (bcc:user1,user2...) for all these users having the
41 * same timeoffset in their preferences.
43 * Visit the documentation pages under http://meta.wikipedia.com/Enotif
45 class EmailNotification
{
48 * Notification is due to user's user talk being edited
50 const USER_TALK
= 'user_talk';
52 * Notification is due to a watchlisted page being edited
54 const WATCHLIST
= 'watchlist';
56 * Notification because user is notified for all changes
58 const ALL_CHANGES
= 'all_changes';
60 protected $subject, $body, $replyto, $from;
61 protected $timestamp, $summary, $minorEdit, $oldid, $composed_common, $pageStatus;
62 protected $mailTargets = [];
75 * @deprecated since 1.27 use WatchedItemStore::updateNotificationTimestamp directly
77 * @param User $editor The editor that triggered the update. Their notification
78 * timestamp will not be updated(they have already seen it)
79 * @param LinkTarget $linkTarget The link target of the title to update timestamps for
80 * @param string $timestamp Set the update timestamp to this value
82 * @return int[] Array of user IDs
84 public static function updateWatchlistTimestamp(
86 LinkTarget
$linkTarget,
89 // wfDeprecated( __METHOD__, '1.27' );
90 $config = RequestContext
::getMain()->getConfig();
91 if ( !$config->get( 'EnotifWatchlist' ) && !$config->get( 'ShowUpdatedMarker' ) ) {
94 return WatchedItemStore
::getDefaultInstance()->updateNotificationTimestamp(
102 * Send emails corresponding to the user $editor editing the page $title.
104 * May be deferred via the job queue.
106 * @param User $editor
107 * @param Title $title
108 * @param string $timestamp
109 * @param string $summary
110 * @param bool $minorEdit
111 * @param bool $oldid (default: false)
112 * @param string $pageStatus (default: 'changed')
114 public function notifyOnPageChange( $editor, $title, $timestamp, $summary,
115 $minorEdit, $oldid = false, $pageStatus = 'changed'
117 global $wgEnotifMinorEdits, $wgUsersNotifiedOnAllChanges, $wgEnotifUserTalk;
119 if ( $title->getNamespace() < 0 ) {
123 // update wl_notificationtimestamp for watchers
124 $config = RequestContext
::getMain()->getConfig();
126 if ( $config->get( 'EnotifWatchlist' ) ||
$config->get( 'ShowUpdatedMarker' ) ) {
127 $watchers = WatchedItemStore
::getDefaultInstance()->updateNotificationTimestamp(
135 // $watchers deals with $wgEnotifWatchlist.
136 // If nobody is watching the page, and there are no users notified on all changes
137 // don't bother creating a job/trying to send emails, unless it's a
138 // talk page with an applicable notification.
139 if ( !count( $watchers ) && !count( $wgUsersNotifiedOnAllChanges ) ) {
141 // Only send notification for non minor edits, unless $wgEnotifMinorEdits
142 if ( !$minorEdit ||
( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
143 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK
);
144 if ( $wgEnotifUserTalk
146 && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
154 JobQueueGroup
::singleton()->lazyPush( new EnotifNotifyJob(
157 'editor' => $editor->getName(),
158 'editorID' => $editor->getId(),
159 'timestamp' => $timestamp,
160 'summary' => $summary,
161 'minorEdit' => $minorEdit,
163 'watchers' => $watchers,
164 'pageStatus' => $pageStatus
171 * Immediate version of notifyOnPageChange().
173 * Send emails corresponding to the user $editor editing the page $title.
175 * @note Do not call directly. Use notifyOnPageChange so that wl_notificationtimestamp is updated.
176 * @param User $editor
177 * @param Title $title
178 * @param string $timestamp Edit timestamp
179 * @param string $summary Edit summary
180 * @param bool $minorEdit
181 * @param int $oldid Revision ID
182 * @param array $watchers Array of user IDs
183 * @param string $pageStatus
184 * @throws MWException
186 public function actuallyNotifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit,
187 $oldid, $watchers, $pageStatus = 'changed' ) {
188 # we use $wgPasswordSender as sender's address
189 global $wgUsersNotifiedOnAllChanges;
190 global $wgEnotifWatchlist, $wgBlockDisablesLogin;
191 global $wgEnotifMinorEdits, $wgEnotifUserTalk;
193 # The following code is only run, if several conditions are met:
194 # 1. EmailNotification for pages (other than user_talk pages) must be enabled
195 # 2. minor edits (changes) are only regarded if the global flag indicates so
197 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK
);
199 $this->title
= $title;
200 $this->timestamp
= $timestamp;
201 $this->summary
= $summary;
202 $this->minorEdit
= $minorEdit;
203 $this->oldid
= $oldid;
204 $this->editor
= $editor;
205 $this->composed_common
= false;
206 $this->pageStatus
= $pageStatus;
208 $formattedPageStatus = [ 'deleted', 'created', 'moved', 'restored', 'changed' ];
210 Hooks
::run( 'UpdateUserMailerFormattedPageStatus', [ &$formattedPageStatus ] );
211 if ( !in_array( $this->pageStatus
, $formattedPageStatus ) ) {
212 throw new MWException( 'Not a valid page status!' );
217 if ( !$minorEdit ||
( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
218 if ( $wgEnotifUserTalk
220 && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
222 $targetUser = User
::newFromName( $title->getText() );
223 $this->compose( $targetUser, self
::USER_TALK
);
224 $userTalkId = $targetUser->getId();
227 if ( $wgEnotifWatchlist ) {
228 // Send updates to watchers other than the current editor
229 // and don't send to watchers who are blocked and cannot login
230 $userArray = UserArray
::newFromIDs( $watchers );
231 foreach ( $userArray as $watchingUser ) {
232 if ( $watchingUser->getOption( 'enotifwatchlistpages' )
233 && ( !$minorEdit ||
$watchingUser->getOption( 'enotifminoredits' ) )
234 && $watchingUser->isEmailConfirmed()
235 && $watchingUser->getId() != $userTalkId
236 && !in_array( $watchingUser->getName(), $wgUsersNotifiedOnAllChanges )
237 && !( $wgBlockDisablesLogin && $watchingUser->isBlocked() )
239 if ( Hooks
::run( 'SendWatchlistEmailNotification', [ $watchingUser, $title, $this ] ) ) {
240 $this->compose( $watchingUser, self
::WATCHLIST
);
247 foreach ( $wgUsersNotifiedOnAllChanges as $name ) {
248 if ( $editor->getName() == $name ) {
249 // No point notifying the user that actually made the change!
252 $user = User
::newFromName( $name );
253 $this->compose( $user, self
::ALL_CHANGES
);
260 * @param User $editor
261 * @param Title $title
262 * @param bool $minorEdit
265 private function canSendUserTalkEmail( $editor, $title, $minorEdit ) {
266 global $wgEnotifUserTalk, $wgBlockDisablesLogin;
267 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK
);
269 if ( $wgEnotifUserTalk && $isUserTalkPage ) {
270 $targetUser = User
::newFromName( $title->getText() );
272 if ( !$targetUser ||
$targetUser->isAnon() ) {
273 wfDebug( __METHOD__
. ": user talk page edited, but user does not exist\n" );
274 } elseif ( $targetUser->getId() == $editor->getId() ) {
275 wfDebug( __METHOD__
. ": user edited their own talk page, no notification sent\n" );
276 } elseif ( $wgBlockDisablesLogin && $targetUser->isBlocked() ) {
277 wfDebug( __METHOD__
. ": talk page owner is blocked and cannot login, no notification sent\n" );
278 } elseif ( $targetUser->getOption( 'enotifusertalkpages' )
279 && ( !$minorEdit ||
$targetUser->getOption( 'enotifminoredits' ) )
281 if ( !$targetUser->isEmailConfirmed() ) {
282 wfDebug( __METHOD__
. ": talk page owner doesn't have validated email\n" );
283 } elseif ( !Hooks
::run( 'AbortTalkPageEmailNotification', [ $targetUser, $title ] ) ) {
284 wfDebug( __METHOD__
. ": talk page update notification is aborted for this user\n" );
286 wfDebug( __METHOD__
. ": sending talk page update notification\n" );
290 wfDebug( __METHOD__
. ": talk page owner doesn't want notifications\n" );
297 * Generate the generic "this page has been changed" e-mail text.
299 private function composeCommonMailtext() {
300 global $wgPasswordSender, $wgNoReplyAddress;
301 global $wgEnotifFromEditor, $wgEnotifRevealEditorAddress;
302 global $wgEnotifImpersonal, $wgEnotifUseRealName;
304 $this->composed_common
= true;
306 # You as the WikiAdmin and Sysops can make use of plenty of
307 # named variables when composing your notification emails while
308 # simply editing the Meta pages
311 $postTransformKeys = [];
312 $pageTitleUrl = $this->title
->getCanonicalURL();
313 $pageTitle = $this->title
->getPrefixedText();
315 if ( $this->oldid
) {
316 // Always show a link to the diff which triggered the mail. See bug 32210.
317 $keys['$NEWPAGE'] = "\n\n" . wfMessage( 'enotif_lastdiff',
318 $this->title
->getCanonicalURL( [ 'diff' => 'next', 'oldid' => $this->oldid
] ) )
319 ->inContentLanguage()->text();
321 if ( !$wgEnotifImpersonal ) {
322 // For personal mail, also show a link to the diff of all changes
323 // since last visited.
324 $keys['$NEWPAGE'] .= "\n\n" . wfMessage( 'enotif_lastvisited',
325 $this->title
->getCanonicalURL( [ 'diff' => '0', 'oldid' => $this->oldid
] ) )
326 ->inContentLanguage()->text();
328 $keys['$OLDID'] = $this->oldid
;
329 // Deprecated since MediaWiki 1.21, not used by default. Kept for backwards-compatibility.
330 $keys['$CHANGEDORCREATED'] = wfMessage( 'changed' )->inContentLanguage()->text();
332 # clear $OLDID placeholder in the message template
333 $keys['$OLDID'] = '';
334 $keys['$NEWPAGE'] = '';
335 // Deprecated since MediaWiki 1.21, not used by default. Kept for backwards-compatibility.
336 $keys['$CHANGEDORCREATED'] = wfMessage( 'created' )->inContentLanguage()->text();
339 $keys['$PAGETITLE'] = $this->title
->getPrefixedText();
340 $keys['$PAGETITLE_URL'] = $this->title
->getCanonicalURL();
341 $keys['$PAGEMINOREDIT'] = $this->minorEdit ?
342 wfMessage( 'minoredit' )->inContentLanguage()->text() : '';
343 $keys['$UNWATCHURL'] = $this->title
->getCanonicalURL( 'action=unwatch' );
345 if ( $this->editor
->isAnon() ) {
346 # real anon (user:xxx.xxx.xxx.xxx)
347 $keys['$PAGEEDITOR'] = wfMessage( 'enotif_anon_editor', $this->editor
->getName() )
348 ->inContentLanguage()->text();
349 $keys['$PAGEEDITOR_EMAIL'] = wfMessage( 'noemailtitle' )->inContentLanguage()->text();
352 $keys['$PAGEEDITOR'] = $wgEnotifUseRealName && $this->editor
->getRealName() !== ''
353 ?
$this->editor
->getRealName() : $this->editor
->getName();
354 $emailPage = SpecialPage
::getSafeTitleFor( 'Emailuser', $this->editor
->getName() );
355 $keys['$PAGEEDITOR_EMAIL'] = $emailPage->getCanonicalURL();
358 $keys['$PAGEEDITOR_WIKI'] = $this->editor
->getUserPage()->getCanonicalURL();
359 $keys['$HELPPAGE'] = wfExpandUrl(
360 Skin
::makeInternalOrExternalUrl( wfMessage( 'helppage' )->inContentLanguage()->text() )
363 # Replace this after transforming the message, bug 35019
364 $postTransformKeys['$PAGESUMMARY'] = $this->summary
== '' ?
' - ' : $this->summary
;
366 // Now build message's subject and body
369 // enotif_subject_deleted, enotif_subject_created, enotif_subject_moved,
370 // enotif_subject_restored, enotif_subject_changed
371 $this->subject
= wfMessage( 'enotif_subject_' . $this->pageStatus
)->inContentLanguage()
372 ->params( $pageTitle, $keys['$PAGEEDITOR'] )->text();
375 // enotif_body_intro_deleted, enotif_body_intro_created, enotif_body_intro_moved,
376 // enotif_body_intro_restored, enotif_body_intro_changed
377 $keys['$PAGEINTRO'] = wfMessage( 'enotif_body_intro_' . $this->pageStatus
)
378 ->inContentLanguage()->params( $pageTitle, $keys['$PAGEEDITOR'], $pageTitleUrl )
381 $body = wfMessage( 'enotif_body' )->inContentLanguage()->plain();
382 $body = strtr( $body, $keys );
383 $body = MessageCache
::singleton()->transform( $body, false, null, $this->title
);
384 $this->body
= wordwrap( strtr( $body, $postTransformKeys ), 72 );
386 # Reveal the page editor's address as REPLY-TO address only if
387 # the user has not opted-out and the option is enabled at the
388 # global configuration level.
389 $adminAddress = new MailAddress( $wgPasswordSender,
390 wfMessage( 'emailsender' )->inContentLanguage()->text() );
391 if ( $wgEnotifRevealEditorAddress
392 && ( $this->editor
->getEmail() != '' )
393 && $this->editor
->getOption( 'enotifrevealaddr' )
395 $editorAddress = MailAddress
::newFromUser( $this->editor
);
396 if ( $wgEnotifFromEditor ) {
397 $this->from
= $editorAddress;
399 $this->from
= $adminAddress;
400 $this->replyto
= $editorAddress;
403 $this->from
= $adminAddress;
404 $this->replyto
= new MailAddress( $wgNoReplyAddress );
409 * Compose a mail to a given user and either queue it for sending, or send it now,
410 * depending on settings.
412 * Call sendMails() to send any mails that were queued.
414 * @param string $source
416 function compose( $user, $source ) {
417 global $wgEnotifImpersonal;
419 if ( !$this->composed_common
) {
420 $this->composeCommonMailtext();
423 if ( $wgEnotifImpersonal ) {
424 $this->mailTargets
[] = MailAddress
::newFromUser( $user );
426 $this->sendPersonalised( $user, $source );
431 * Send any queued mails
433 function sendMails() {
434 global $wgEnotifImpersonal;
435 if ( $wgEnotifImpersonal ) {
436 $this->sendImpersonal( $this->mailTargets
);
441 * Does the per-user customizations to a notification e-mail (name,
442 * timestamp in proper timezone, etc) and sends it out.
443 * Returns true if the mail was sent successfully.
445 * @param User $watchingUser
446 * @param string $source
450 function sendPersonalised( $watchingUser, $source ) {
451 global $wgContLang, $wgEnotifUseRealName;
452 // From the PHP manual:
453 // Note: The to parameter cannot be an address in the form of
454 // "Something <someone@example.com>". The mail command will not parse
455 // this properly while talking with the MTA.
456 $to = MailAddress
::newFromUser( $watchingUser );
458 # $PAGEEDITDATE is the time and date of the page change
459 # expressed in terms of individual local time of the notification
460 # recipient, i.e. watching user
462 [ '$WATCHINGUSERNAME',
465 [ $wgEnotifUseRealName && $watchingUser->getRealName() !== ''
466 ?
$watchingUser->getRealName() : $watchingUser->getName(),
467 $wgContLang->userDate( $this->timestamp
, $watchingUser ),
468 $wgContLang->userTime( $this->timestamp
, $watchingUser ) ],
472 if ( $source === self
::WATCHLIST
) {
473 $headers['List-Help'] = 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Watchlist';
476 return UserMailer
::send( $to, $this->from
, $this->subject
, $body, [
477 'replyTo' => $this->replyto
,
478 'headers' => $headers,
483 * Same as sendPersonalised but does impersonal mail suitable for bulk
484 * mailing. Takes an array of MailAddress objects.
485 * @param MailAddress[] $addresses
486 * @return Status|null
488 function sendImpersonal( $addresses ) {
491 if ( empty( $addresses ) ) {
496 [ '$WATCHINGUSERNAME',
499 [ wfMessage( 'enotif_impersonal_salutation' )->inContentLanguage()->text(),
500 $wgContLang->date( $this->timestamp
, false, false ),
501 $wgContLang->time( $this->timestamp
, false, false ) ],
504 return UserMailer
::send( $addresses, $this->from
, $this->subject
, $body, [
505 'replyTo' => $this->replyto
,