Merge "Improve safeGetLag() return docs"
[lhc/web/wiklou.git] / includes / mail / EmailNotification.php
1 <?php
2 /**
3 * Classes used to send e-mails
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @author <brion@pobox.com>
22 * @author <mail@tgries.de>
23 * @author Tim Starling
24 * @author Luke Welling lwelling@wikimedia.org
25 */
26
27 /**
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
30 * that page.
31 *
32 * The current implementation sends independent emails to each watching user for
33 * the following reason:
34 *
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..
38 *
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.
42 *
43 * Visit the documentation pages under http://meta.wikipedia.com/Enotif
44 */
45 class EmailNotification {
46
47 /**
48 * Notification is due to user's user talk being edited
49 */
50 const USER_TALK = 'user_talk';
51 /**
52 * Notification is due to a watchlisted page being edited
53 */
54 const WATCHLIST = 'watchlist';
55 /**
56 * Notification because user is notified for all changes
57 */
58 const ALL_CHANGES = 'all_changes';
59
60 protected $subject, $body, $replyto, $from;
61 protected $timestamp, $summary, $minorEdit, $oldid, $composed_common, $pageStatus;
62 protected $mailTargets = array();
63
64 /**
65 * @var Title
66 */
67 protected $title;
68
69 /**
70 * @var User
71 */
72 protected $editor;
73
74 /**
75 * @param User $editor The editor that triggered the update. Their notification
76 * timestamp will not be updated(they have already seen it)
77 * @param Title $title The title to update timestamps for
78 * @param string $timestamp Set the update timestamp to this value
79 * @return int[] Array of user IDs
80 */
81 public static function updateWatchlistTimestamp( User $editor, Title $title, $timestamp ) {
82 global $wgEnotifWatchlist, $wgShowUpdatedMarker;
83
84 if ( !$wgEnotifWatchlist && !$wgShowUpdatedMarker ) {
85 return array();
86 }
87
88 $dbw = wfGetDB( DB_MASTER );
89 $res = $dbw->select( array( 'watchlist' ),
90 array( 'wl_user' ),
91 array(
92 'wl_user != ' . intval( $editor->getID() ),
93 'wl_namespace' => $title->getNamespace(),
94 'wl_title' => $title->getDBkey(),
95 'wl_notificationtimestamp IS NULL',
96 ), __METHOD__
97 );
98
99 $watchers = array();
100 foreach ( $res as $row ) {
101 $watchers[] = intval( $row->wl_user );
102 }
103
104 if ( $watchers ) {
105 // Update wl_notificationtimestamp for all watching users except the editor
106 $fname = __METHOD__;
107 $dbw->onTransactionIdle(
108 function () use ( $dbw, $timestamp, $watchers, $title, $fname ) {
109 $dbw->update( 'watchlist',
110 array( /* SET */
111 'wl_notificationtimestamp' => $dbw->timestamp( $timestamp )
112 ), array( /* WHERE */
113 'wl_user' => $watchers,
114 'wl_namespace' => $title->getNamespace(),
115 'wl_title' => $title->getDBkey(),
116 ), $fname
117 );
118 }
119 );
120 }
121
122 return $watchers;
123 }
124
125 /**
126 * Send emails corresponding to the user $editor editing the page $title.
127 *
128 * May be deferred via the job queue.
129 *
130 * @param User $editor
131 * @param Title $title
132 * @param string $timestamp
133 * @param string $summary
134 * @param bool $minorEdit
135 * @param bool $oldid (default: false)
136 * @param string $pageStatus (default: 'changed')
137 */
138 public function notifyOnPageChange( $editor, $title, $timestamp, $summary,
139 $minorEdit, $oldid = false, $pageStatus = 'changed'
140 ) {
141 global $wgEnotifMinorEdits, $wgUsersNotifiedOnAllChanges, $wgEnotifUserTalk;
142
143 if ( $title->getNamespace() < 0 ) {
144 return;
145 }
146
147 // update wl_notificationtimestamp for watchers
148 $watchers = self::updateWatchlistTimestamp( $editor, $title, $timestamp );
149
150 $sendEmail = true;
151 // $watchers deals with $wgEnotifWatchlist.
152 // If nobody is watching the page, and there are no users notified on all changes
153 // don't bother creating a job/trying to send emails, unless it's a
154 // talk page with an applicable notification.
155 if ( !count( $watchers ) && !count( $wgUsersNotifiedOnAllChanges ) ) {
156 $sendEmail = false;
157 // Only send notification for non minor edits, unless $wgEnotifMinorEdits
158 if ( !$minorEdit || ( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
159 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
160 if ( $wgEnotifUserTalk
161 && $isUserTalkPage
162 && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
163 ) {
164 $sendEmail = true;
165 }
166 }
167 }
168
169 if ( $sendEmail ) {
170 JobQueueGroup::singleton()->lazyPush( new EnotifNotifyJob(
171 $title,
172 array(
173 'editor' => $editor->getName(),
174 'editorID' => $editor->getID(),
175 'timestamp' => $timestamp,
176 'summary' => $summary,
177 'minorEdit' => $minorEdit,
178 'oldid' => $oldid,
179 'watchers' => $watchers,
180 'pageStatus' => $pageStatus
181 )
182 ) );
183 }
184 }
185
186 /**
187 * Immediate version of notifyOnPageChange().
188 *
189 * Send emails corresponding to the user $editor editing the page $title.
190 *
191 * @note Do not call directly. Use notifyOnPageChange so that wl_notificationtimestamp is updated.
192 * @param User $editor
193 * @param Title $title
194 * @param string $timestamp Edit timestamp
195 * @param string $summary Edit summary
196 * @param bool $minorEdit
197 * @param int $oldid Revision ID
198 * @param array $watchers Array of user IDs
199 * @param string $pageStatus
200 * @throws MWException
201 */
202 public function actuallyNotifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit,
203 $oldid, $watchers, $pageStatus = 'changed' ) {
204 # we use $wgPasswordSender as sender's address
205 global $wgUsersNotifiedOnAllChanges;
206 global $wgEnotifWatchlist, $wgBlockDisablesLogin;
207 global $wgEnotifMinorEdits, $wgEnotifUserTalk;
208
209 # The following code is only run, if several conditions are met:
210 # 1. EmailNotification for pages (other than user_talk pages) must be enabled
211 # 2. minor edits (changes) are only regarded if the global flag indicates so
212
213 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
214
215 $this->title = $title;
216 $this->timestamp = $timestamp;
217 $this->summary = $summary;
218 $this->minorEdit = $minorEdit;
219 $this->oldid = $oldid;
220 $this->editor = $editor;
221 $this->composed_common = false;
222 $this->pageStatus = $pageStatus;
223
224 $formattedPageStatus = array( 'deleted', 'created', 'moved', 'restored', 'changed' );
225
226 Hooks::run( 'UpdateUserMailerFormattedPageStatus', array( &$formattedPageStatus ) );
227 if ( !in_array( $this->pageStatus, $formattedPageStatus ) ) {
228 throw new MWException( 'Not a valid page status!' );
229 }
230
231 $userTalkId = false;
232
233 if ( !$minorEdit || ( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
234 if ( $wgEnotifUserTalk
235 && $isUserTalkPage
236 && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
237 ) {
238 $targetUser = User::newFromName( $title->getText() );
239 $this->compose( $targetUser, self::USER_TALK );
240 $userTalkId = $targetUser->getId();
241 }
242
243 if ( $wgEnotifWatchlist ) {
244 // Send updates to watchers other than the current editor
245 // and don't send to watchers who are blocked and cannot login
246 $userArray = UserArray::newFromIDs( $watchers );
247 foreach ( $userArray as $watchingUser ) {
248 if ( $watchingUser->getOption( 'enotifwatchlistpages' )
249 && ( !$minorEdit || $watchingUser->getOption( 'enotifminoredits' ) )
250 && $watchingUser->isEmailConfirmed()
251 && $watchingUser->getID() != $userTalkId
252 && !in_array( $watchingUser->getName(), $wgUsersNotifiedOnAllChanges )
253 && !( $wgBlockDisablesLogin && $watchingUser->isBlocked() )
254 ) {
255 if ( Hooks::run( 'SendWatchlistEmailNotification', array( $watchingUser, $title, $this ) ) ) {
256 $this->compose( $watchingUser, self::WATCHLIST );
257 }
258 }
259 }
260 }
261 }
262
263 foreach ( $wgUsersNotifiedOnAllChanges as $name ) {
264 if ( $editor->getName() == $name ) {
265 // No point notifying the user that actually made the change!
266 continue;
267 }
268 $user = User::newFromName( $name );
269 $this->compose( $user, self::ALL_CHANGES );
270 }
271
272 $this->sendMails();
273 }
274
275 /**
276 * @param User $editor
277 * @param Title $title
278 * @param bool $minorEdit
279 * @return bool
280 */
281 private function canSendUserTalkEmail( $editor, $title, $minorEdit ) {
282 global $wgEnotifUserTalk, $wgBlockDisablesLogin;
283 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
284
285 if ( $wgEnotifUserTalk && $isUserTalkPage ) {
286 $targetUser = User::newFromName( $title->getText() );
287
288 if ( !$targetUser || $targetUser->isAnon() ) {
289 wfDebug( __METHOD__ . ": user talk page edited, but user does not exist\n" );
290 } elseif ( $targetUser->getId() == $editor->getId() ) {
291 wfDebug( __METHOD__ . ": user edited their own talk page, no notification sent\n" );
292 } elseif ( $wgBlockDisablesLogin && $targetUser->isBlocked() ) {
293 wfDebug( __METHOD__ . ": talk page owner is blocked and cannot login, no notification sent\n" );
294 } elseif ( $targetUser->getOption( 'enotifusertalkpages' )
295 && ( !$minorEdit || $targetUser->getOption( 'enotifminoredits' ) )
296 ) {
297 if ( !$targetUser->isEmailConfirmed() ) {
298 wfDebug( __METHOD__ . ": talk page owner doesn't have validated email\n" );
299 } elseif ( !Hooks::run( 'AbortTalkPageEmailNotification', array( $targetUser, $title ) ) ) {
300 wfDebug( __METHOD__ . ": talk page update notification is aborted for this user\n" );
301 } else {
302 wfDebug( __METHOD__ . ": sending talk page update notification\n" );
303 return true;
304 }
305 } else {
306 wfDebug( __METHOD__ . ": talk page owner doesn't want notifications\n" );
307 }
308 }
309 return false;
310 }
311
312 /**
313 * Generate the generic "this page has been changed" e-mail text.
314 */
315 private function composeCommonMailtext() {
316 global $wgPasswordSender, $wgNoReplyAddress;
317 global $wgEnotifFromEditor, $wgEnotifRevealEditorAddress;
318 global $wgEnotifImpersonal, $wgEnotifUseRealName;
319
320 $this->composed_common = true;
321
322 # You as the WikiAdmin and Sysops can make use of plenty of
323 # named variables when composing your notification emails while
324 # simply editing the Meta pages
325
326 $keys = array();
327 $postTransformKeys = array();
328 $pageTitleUrl = $this->title->getCanonicalURL();
329 $pageTitle = $this->title->getPrefixedText();
330
331 if ( $this->oldid ) {
332 // Always show a link to the diff which triggered the mail. See bug 32210.
333 $keys['$NEWPAGE'] = "\n\n" . wfMessage( 'enotif_lastdiff',
334 $this->title->getCanonicalURL( array( 'diff' => 'next', 'oldid' => $this->oldid ) ) )
335 ->inContentLanguage()->text();
336
337 if ( !$wgEnotifImpersonal ) {
338 // For personal mail, also show a link to the diff of all changes
339 // since last visited.
340 $keys['$NEWPAGE'] .= "\n\n" . wfMessage( 'enotif_lastvisited',
341 $this->title->getCanonicalURL( array( 'diff' => '0', 'oldid' => $this->oldid ) ) )
342 ->inContentLanguage()->text();
343 }
344 $keys['$OLDID'] = $this->oldid;
345 // Deprecated since MediaWiki 1.21, not used by default. Kept for backwards-compatibility.
346 $keys['$CHANGEDORCREATED'] = wfMessage( 'changed' )->inContentLanguage()->text();
347 } else {
348 # clear $OLDID placeholder in the message template
349 $keys['$OLDID'] = '';
350 $keys['$NEWPAGE'] = '';
351 // Deprecated since MediaWiki 1.21, not used by default. Kept for backwards-compatibility.
352 $keys['$CHANGEDORCREATED'] = wfMessage( 'created' )->inContentLanguage()->text();
353 }
354
355 $keys['$PAGETITLE'] = $this->title->getPrefixedText();
356 $keys['$PAGETITLE_URL'] = $this->title->getCanonicalURL();
357 $keys['$PAGEMINOREDIT'] = $this->minorEdit ?
358 wfMessage( 'minoredit' )->inContentLanguage()->text() : '';
359 $keys['$UNWATCHURL'] = $this->title->getCanonicalURL( 'action=unwatch' );
360
361 if ( $this->editor->isAnon() ) {
362 # real anon (user:xxx.xxx.xxx.xxx)
363 $keys['$PAGEEDITOR'] = wfMessage( 'enotif_anon_editor', $this->editor->getName() )
364 ->inContentLanguage()->text();
365 $keys['$PAGEEDITOR_EMAIL'] = wfMessage( 'noemailtitle' )->inContentLanguage()->text();
366
367 } else {
368 $keys['$PAGEEDITOR'] = $wgEnotifUseRealName && $this->editor->getRealName() !== ''
369 ? $this->editor->getRealName() : $this->editor->getName();
370 $emailPage = SpecialPage::getSafeTitleFor( 'Emailuser', $this->editor->getName() );
371 $keys['$PAGEEDITOR_EMAIL'] = $emailPage->getCanonicalURL();
372 }
373
374 $keys['$PAGEEDITOR_WIKI'] = $this->editor->getUserPage()->getCanonicalURL();
375 $keys['$HELPPAGE'] = wfExpandUrl(
376 Skin::makeInternalOrExternalUrl( wfMessage( 'helppage' )->inContentLanguage()->text() )
377 );
378
379 # Replace this after transforming the message, bug 35019
380 $postTransformKeys['$PAGESUMMARY'] = $this->summary == '' ? ' - ' : $this->summary;
381
382 // Now build message's subject and body
383
384 // Messages:
385 // enotif_subject_deleted, enotif_subject_created, enotif_subject_moved,
386 // enotif_subject_restored, enotif_subject_changed
387 $this->subject = wfMessage( 'enotif_subject_' . $this->pageStatus )->inContentLanguage()
388 ->params( $pageTitle, $keys['$PAGEEDITOR'] )->text();
389
390 // Messages:
391 // enotif_body_intro_deleted, enotif_body_intro_created, enotif_body_intro_moved,
392 // enotif_body_intro_restored, enotif_body_intro_changed
393 $keys['$PAGEINTRO'] = wfMessage( 'enotif_body_intro_' . $this->pageStatus )
394 ->inContentLanguage()->params( $pageTitle, $keys['$PAGEEDITOR'], $pageTitleUrl )
395 ->text();
396
397 $body = wfMessage( 'enotif_body' )->inContentLanguage()->plain();
398 $body = strtr( $body, $keys );
399 $body = MessageCache::singleton()->transform( $body, false, null, $this->title );
400 $this->body = wordwrap( strtr( $body, $postTransformKeys ), 72 );
401
402 # Reveal the page editor's address as REPLY-TO address only if
403 # the user has not opted-out and the option is enabled at the
404 # global configuration level.
405 $adminAddress = new MailAddress( $wgPasswordSender,
406 wfMessage( 'emailsender' )->inContentLanguage()->text() );
407 if ( $wgEnotifRevealEditorAddress
408 && ( $this->editor->getEmail() != '' )
409 && $this->editor->getOption( 'enotifrevealaddr' )
410 ) {
411 $editorAddress = MailAddress::newFromUser( $this->editor );
412 if ( $wgEnotifFromEditor ) {
413 $this->from = $editorAddress;
414 } else {
415 $this->from = $adminAddress;
416 $this->replyto = $editorAddress;
417 }
418 } else {
419 $this->from = $adminAddress;
420 $this->replyto = new MailAddress( $wgNoReplyAddress );
421 }
422 }
423
424 /**
425 * Compose a mail to a given user and either queue it for sending, or send it now,
426 * depending on settings.
427 *
428 * Call sendMails() to send any mails that were queued.
429 * @param User $user
430 * @param string $source
431 */
432 function compose( $user, $source ) {
433 global $wgEnotifImpersonal;
434
435 if ( !$this->composed_common ) {
436 $this->composeCommonMailtext();
437 }
438
439 if ( $wgEnotifImpersonal ) {
440 $this->mailTargets[] = MailAddress::newFromUser( $user );
441 } else {
442 $this->sendPersonalised( $user, $source );
443 }
444 }
445
446 /**
447 * Send any queued mails
448 */
449 function sendMails() {
450 global $wgEnotifImpersonal;
451 if ( $wgEnotifImpersonal ) {
452 $this->sendImpersonal( $this->mailTargets );
453 }
454 }
455
456 /**
457 * Does the per-user customizations to a notification e-mail (name,
458 * timestamp in proper timezone, etc) and sends it out.
459 * Returns true if the mail was sent successfully.
460 *
461 * @param User $watchingUser
462 * @param string $source
463 * @return bool
464 * @private
465 */
466 function sendPersonalised( $watchingUser, $source ) {
467 global $wgContLang, $wgEnotifUseRealName;
468 // From the PHP manual:
469 // Note: The to parameter cannot be an address in the form of
470 // "Something <someone@example.com>". The mail command will not parse
471 // this properly while talking with the MTA.
472 $to = MailAddress::newFromUser( $watchingUser );
473
474 # $PAGEEDITDATE is the time and date of the page change
475 # expressed in terms of individual local time of the notification
476 # recipient, i.e. watching user
477 $body = str_replace(
478 array( '$WATCHINGUSERNAME',
479 '$PAGEEDITDATE',
480 '$PAGEEDITTIME' ),
481 array( $wgEnotifUseRealName && $watchingUser->getRealName() !== ''
482 ? $watchingUser->getRealName() : $watchingUser->getName(),
483 $wgContLang->userDate( $this->timestamp, $watchingUser ),
484 $wgContLang->userTime( $this->timestamp, $watchingUser ) ),
485 $this->body );
486
487 $headers = array();
488 if ( $source === self::WATCHLIST ) {
489 $headers['List-Help'] = 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Watchlist';
490 }
491
492 return UserMailer::send( $to, $this->from, $this->subject, $body, array(
493 'replyTo' => $this->replyto,
494 'headers' => $headers,
495 ) );
496 }
497
498 /**
499 * Same as sendPersonalised but does impersonal mail suitable for bulk
500 * mailing. Takes an array of MailAddress objects.
501 * @param MailAddress[] $addresses
502 * @return Status|null
503 */
504 function sendImpersonal( $addresses ) {
505 global $wgContLang;
506
507 if ( empty( $addresses ) ) {
508 return null;
509 }
510
511 $body = str_replace(
512 array( '$WATCHINGUSERNAME',
513 '$PAGEEDITDATE',
514 '$PAGEEDITTIME' ),
515 array( wfMessage( 'enotif_impersonal_salutation' )->inContentLanguage()->text(),
516 $wgContLang->date( $this->timestamp, false, false ),
517 $wgContLang->time( $this->timestamp, false, false ) ),
518 $this->body );
519
520 return UserMailer::send( $addresses, $this->from, $this->subject, $body, array(
521 'replyTo' => $this->replyto,
522 ) );
523 }
524
525 }