01b6afab40bb52db891600c55a30b798ce820e1e
[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[]
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 $wgEnotifUseJobQ, $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 // If nobody is watching the page, and there are no users notified on all changes
152 // don't bother creating a job/trying to send emails, unless it's a
153 // talk page with an applicable notification.
154 //
155 // $watchers deals with $wgEnotifWatchlist
156 if ( !count( $watchers ) && !count( $wgUsersNotifiedOnAllChanges ) ) {
157 $sendEmail = false;
158 // Only send notification for non minor edits, unless $wgEnotifMinorEdits
159 if ( !$minorEdit || ( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
160 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
161 if ( $wgEnotifUserTalk
162 && $isUserTalkPage
163 && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
164 ) {
165 $sendEmail = true;
166 }
167 }
168 }
169
170 if ( !$sendEmail ) {
171 return;
172 }
173
174 if ( $wgEnotifUseJobQ ) {
175 $params = array(
176 'editor' => $editor->getName(),
177 'editorID' => $editor->getID(),
178 'timestamp' => $timestamp,
179 'summary' => $summary,
180 'minorEdit' => $minorEdit,
181 'oldid' => $oldid,
182 'watchers' => $watchers,
183 'pageStatus' => $pageStatus
184 );
185 $job = new EnotifNotifyJob( $title, $params );
186 JobQueueGroup::singleton()->lazyPush( $job );
187 } else {
188 $this->actuallyNotifyOnPageChange(
189 $editor,
190 $title,
191 $timestamp,
192 $summary,
193 $minorEdit,
194 $oldid,
195 $watchers,
196 $pageStatus
197 );
198 }
199 }
200
201 /**
202 * Immediate version of notifyOnPageChange().
203 *
204 * Send emails corresponding to the user $editor editing the page $title.
205 *
206 * @note Do not call directly. Use notifyOnPageChange so that wl_notificationtimestamp is updated.
207 * @param User $editor
208 * @param Title $title
209 * @param string $timestamp Edit timestamp
210 * @param string $summary Edit summary
211 * @param bool $minorEdit
212 * @param int $oldid Revision ID
213 * @param array $watchers Array of user IDs
214 * @param string $pageStatus
215 * @throws MWException
216 */
217 public function actuallyNotifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit,
218 $oldid, $watchers, $pageStatus = 'changed' ) {
219 # we use $wgPasswordSender as sender's address
220 global $wgEnotifWatchlist, $wgBlockDisablesLogin;
221 global $wgEnotifMinorEdits, $wgEnotifUserTalk;
222
223 # The following code is only run, if several conditions are met:
224 # 1. EmailNotification for pages (other than user_talk pages) must be enabled
225 # 2. minor edits (changes) are only regarded if the global flag indicates so
226
227 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
228
229 $this->title = $title;
230 $this->timestamp = $timestamp;
231 $this->summary = $summary;
232 $this->minorEdit = $minorEdit;
233 $this->oldid = $oldid;
234 $this->editor = $editor;
235 $this->composed_common = false;
236 $this->pageStatus = $pageStatus;
237
238 $formattedPageStatus = array( 'deleted', 'created', 'moved', 'restored', 'changed' );
239
240 Hooks::run( 'UpdateUserMailerFormattedPageStatus', array( &$formattedPageStatus ) );
241 if ( !in_array( $this->pageStatus, $formattedPageStatus ) ) {
242 throw new MWException( 'Not a valid page status!' );
243 }
244
245 $userTalkId = false;
246
247 if ( !$minorEdit || ( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
248 if ( $wgEnotifUserTalk
249 && $isUserTalkPage
250 && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
251 ) {
252 $targetUser = User::newFromName( $title->getText() );
253 $this->compose( $targetUser, self::USER_TALK );
254 $userTalkId = $targetUser->getId();
255 }
256
257 if ( $wgEnotifWatchlist ) {
258 // Send updates to watchers other than the current editor
259 // and don't send to watchers who are blocked and cannot login
260 $userArray = UserArray::newFromIDs( $watchers );
261 foreach ( $userArray as $watchingUser ) {
262 if ( $watchingUser->getOption( 'enotifwatchlistpages' )
263 && ( !$minorEdit || $watchingUser->getOption( 'enotifminoredits' ) )
264 && $watchingUser->isEmailConfirmed()
265 && $watchingUser->getID() != $userTalkId
266 && !( $wgBlockDisablesLogin && $watchingUser->isBlocked() )
267 ) {
268 if ( Hooks::run( 'SendWatchlistEmailNotification', array( $watchingUser, $title, $this ) ) ) {
269 $this->compose( $watchingUser, self::WATCHLIST );
270 }
271 }
272 }
273 }
274 }
275
276 global $wgUsersNotifiedOnAllChanges;
277 foreach ( $wgUsersNotifiedOnAllChanges as $name ) {
278 if ( $editor->getName() == $name ) {
279 // No point notifying the user that actually made the change!
280 continue;
281 }
282 $user = User::newFromName( $name );
283 $this->compose( $user, self::ALL_CHANGES );
284 }
285
286 $this->sendMails();
287 }
288
289 /**
290 * @param User $editor
291 * @param Title $title
292 * @param bool $minorEdit
293 * @return bool
294 */
295 private function canSendUserTalkEmail( $editor, $title, $minorEdit ) {
296 global $wgEnotifUserTalk, $wgBlockDisablesLogin;
297 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
298
299 if ( $wgEnotifUserTalk && $isUserTalkPage ) {
300 $targetUser = User::newFromName( $title->getText() );
301
302 if ( !$targetUser || $targetUser->isAnon() ) {
303 wfDebug( __METHOD__ . ": user talk page edited, but user does not exist\n" );
304 } elseif ( $targetUser->getId() == $editor->getId() ) {
305 wfDebug( __METHOD__ . ": user edited their own talk page, no notification sent\n" );
306 } elseif ( $wgBlockDisablesLogin && $targetUser->isBlocked() ) {
307 wfDebug( __METHOD__ . ": talk page owner is blocked and cannot login, no notification sent\n" );
308 } elseif ( $targetUser->getOption( 'enotifusertalkpages' )
309 && ( !$minorEdit || $targetUser->getOption( 'enotifminoredits' ) )
310 ) {
311 if ( !$targetUser->isEmailConfirmed() ) {
312 wfDebug( __METHOD__ . ": talk page owner doesn't have validated email\n" );
313 } elseif ( !Hooks::run( 'AbortTalkPageEmailNotification', array( $targetUser, $title ) ) ) {
314 wfDebug( __METHOD__ . ": talk page update notification is aborted for this user\n" );
315 } else {
316 wfDebug( __METHOD__ . ": sending talk page update notification\n" );
317 return true;
318 }
319 } else {
320 wfDebug( __METHOD__ . ": talk page owner doesn't want notifications\n" );
321 }
322 }
323 return false;
324 }
325
326 /**
327 * Generate the generic "this page has been changed" e-mail text.
328 */
329 private function composeCommonMailtext() {
330 global $wgPasswordSender, $wgNoReplyAddress;
331 global $wgEnotifFromEditor, $wgEnotifRevealEditorAddress;
332 global $wgEnotifImpersonal, $wgEnotifUseRealName;
333
334 $this->composed_common = true;
335
336 # You as the WikiAdmin and Sysops can make use of plenty of
337 # named variables when composing your notification emails while
338 # simply editing the Meta pages
339
340 $keys = array();
341 $postTransformKeys = array();
342 $pageTitleUrl = $this->title->getCanonicalURL();
343 $pageTitle = $this->title->getPrefixedText();
344
345 if ( $this->oldid ) {
346 // Always show a link to the diff which triggered the mail. See bug 32210.
347 $keys['$NEWPAGE'] = "\n\n" . wfMessage( 'enotif_lastdiff',
348 $this->title->getCanonicalURL( array( 'diff' => 'next', 'oldid' => $this->oldid ) ) )
349 ->inContentLanguage()->text();
350
351 if ( !$wgEnotifImpersonal ) {
352 // For personal mail, also show a link to the diff of all changes
353 // since last visited.
354 $keys['$NEWPAGE'] .= "\n\n" . wfMessage( 'enotif_lastvisited',
355 $this->title->getCanonicalURL( array( 'diff' => '0', 'oldid' => $this->oldid ) ) )
356 ->inContentLanguage()->text();
357 }
358 $keys['$OLDID'] = $this->oldid;
359 // Deprecated since MediaWiki 1.21, not used by default. Kept for backwards-compatibility.
360 $keys['$CHANGEDORCREATED'] = wfMessage( 'changed' )->inContentLanguage()->text();
361 } else {
362 # clear $OLDID placeholder in the message template
363 $keys['$OLDID'] = '';
364 $keys['$NEWPAGE'] = '';
365 // Deprecated since MediaWiki 1.21, not used by default. Kept for backwards-compatibility.
366 $keys['$CHANGEDORCREATED'] = wfMessage( 'created' )->inContentLanguage()->text();
367 }
368
369 $keys['$PAGETITLE'] = $this->title->getPrefixedText();
370 $keys['$PAGETITLE_URL'] = $this->title->getCanonicalURL();
371 $keys['$PAGEMINOREDIT'] = $this->minorEdit ?
372 wfMessage( 'minoredit' )->inContentLanguage()->text() : '';
373 $keys['$UNWATCHURL'] = $this->title->getCanonicalURL( 'action=unwatch' );
374
375 if ( $this->editor->isAnon() ) {
376 # real anon (user:xxx.xxx.xxx.xxx)
377 $keys['$PAGEEDITOR'] = wfMessage( 'enotif_anon_editor', $this->editor->getName() )
378 ->inContentLanguage()->text();
379 $keys['$PAGEEDITOR_EMAIL'] = wfMessage( 'noemailtitle' )->inContentLanguage()->text();
380
381 } else {
382 $keys['$PAGEEDITOR'] = $wgEnotifUseRealName && $this->editor->getRealName() !== ''
383 ? $this->editor->getRealName() : $this->editor->getName();
384 $emailPage = SpecialPage::getSafeTitleFor( 'Emailuser', $this->editor->getName() );
385 $keys['$PAGEEDITOR_EMAIL'] = $emailPage->getCanonicalURL();
386 }
387
388 $keys['$PAGEEDITOR_WIKI'] = $this->editor->getUserPage()->getCanonicalURL();
389 $keys['$HELPPAGE'] = wfExpandUrl(
390 Skin::makeInternalOrExternalUrl( wfMessage( 'helppage' )->inContentLanguage()->text() )
391 );
392
393 # Replace this after transforming the message, bug 35019
394 $postTransformKeys['$PAGESUMMARY'] = $this->summary == '' ? ' - ' : $this->summary;
395
396 // Now build message's subject and body
397
398 // Messages:
399 // enotif_subject_deleted, enotif_subject_created, enotif_subject_moved,
400 // enotif_subject_restored, enotif_subject_changed
401 $this->subject = wfMessage( 'enotif_subject_' . $this->pageStatus )->inContentLanguage()
402 ->params( $pageTitle, $keys['$PAGEEDITOR'] )->text();
403
404 // Messages:
405 // enotif_body_intro_deleted, enotif_body_intro_created, enotif_body_intro_moved,
406 // enotif_body_intro_restored, enotif_body_intro_changed
407 $keys['$PAGEINTRO'] = wfMessage( 'enotif_body_intro_' . $this->pageStatus )
408 ->inContentLanguage()->params( $pageTitle, $keys['$PAGEEDITOR'], $pageTitleUrl )
409 ->text();
410
411 $body = wfMessage( 'enotif_body' )->inContentLanguage()->plain();
412 $body = strtr( $body, $keys );
413 $body = MessageCache::singleton()->transform( $body, false, null, $this->title );
414 $this->body = wordwrap( strtr( $body, $postTransformKeys ), 72 );
415
416 # Reveal the page editor's address as REPLY-TO address only if
417 # the user has not opted-out and the option is enabled at the
418 # global configuration level.
419 $adminAddress = new MailAddress( $wgPasswordSender,
420 wfMessage( 'emailsender' )->inContentLanguage()->text() );
421 if ( $wgEnotifRevealEditorAddress
422 && ( $this->editor->getEmail() != '' )
423 && $this->editor->getOption( 'enotifrevealaddr' )
424 ) {
425 $editorAddress = MailAddress::newFromUser( $this->editor );
426 if ( $wgEnotifFromEditor ) {
427 $this->from = $editorAddress;
428 } else {
429 $this->from = $adminAddress;
430 $this->replyto = $editorAddress;
431 }
432 } else {
433 $this->from = $adminAddress;
434 $this->replyto = new MailAddress( $wgNoReplyAddress );
435 }
436 }
437
438 /**
439 * Compose a mail to a given user and either queue it for sending, or send it now,
440 * depending on settings.
441 *
442 * Call sendMails() to send any mails that were queued.
443 * @param User $user
444 * @param string $source
445 */
446 function compose( $user, $source ) {
447 global $wgEnotifImpersonal;
448
449 if ( !$this->composed_common ) {
450 $this->composeCommonMailtext();
451 }
452
453 if ( $wgEnotifImpersonal ) {
454 $this->mailTargets[] = MailAddress::newFromUser( $user );
455 } else {
456 $this->sendPersonalised( $user, $source );
457 }
458 }
459
460 /**
461 * Send any queued mails
462 */
463 function sendMails() {
464 global $wgEnotifImpersonal;
465 if ( $wgEnotifImpersonal ) {
466 $this->sendImpersonal( $this->mailTargets );
467 }
468 }
469
470 /**
471 * Does the per-user customizations to a notification e-mail (name,
472 * timestamp in proper timezone, etc) and sends it out.
473 * Returns true if the mail was sent successfully.
474 *
475 * @param User $watchingUser
476 * @param string $source
477 * @return bool
478 * @private
479 */
480 function sendPersonalised( $watchingUser, $source ) {
481 global $wgContLang, $wgEnotifUseRealName;
482 // From the PHP manual:
483 // Note: The to parameter cannot be an address in the form of
484 // "Something <someone@example.com>". The mail command will not parse
485 // this properly while talking with the MTA.
486 $to = MailAddress::newFromUser( $watchingUser );
487
488 # $PAGEEDITDATE is the time and date of the page change
489 # expressed in terms of individual local time of the notification
490 # recipient, i.e. watching user
491 $body = str_replace(
492 array( '$WATCHINGUSERNAME',
493 '$PAGEEDITDATE',
494 '$PAGEEDITTIME' ),
495 array( $wgEnotifUseRealName && $watchingUser->getRealName() !== ''
496 ? $watchingUser->getRealName() : $watchingUser->getName(),
497 $wgContLang->userDate( $this->timestamp, $watchingUser ),
498 $wgContLang->userTime( $this->timestamp, $watchingUser ) ),
499 $this->body );
500
501 $headers = array();
502 if ( $source === self::WATCHLIST ) {
503 $headers['List-Help'] = 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Watchlist';
504 }
505
506 return UserMailer::send( $to, $this->from, $this->subject, $body, array(
507 'replyTo' => $this->replyto,
508 'headers' => $headers,
509 ) );
510 }
511
512 /**
513 * Same as sendPersonalised but does impersonal mail suitable for bulk
514 * mailing. Takes an array of MailAddress objects.
515 * @param MailAddress[] $addresses
516 * @return Status|null
517 */
518 function sendImpersonal( $addresses ) {
519 global $wgContLang;
520
521 if ( empty( $addresses ) ) {
522 return null;
523 }
524
525 $body = str_replace(
526 array( '$WATCHINGUSERNAME',
527 '$PAGEEDITDATE',
528 '$PAGEEDITTIME' ),
529 array( wfMessage( 'enotif_impersonal_salutation' )->inContentLanguage()->text(),
530 $wgContLang->date( $this->timestamp, false, false ),
531 $wgContLang->time( $this->timestamp, false, false ) ),
532 $this->body );
533
534 return UserMailer::send( $addresses, $this->from, $this->subject, $body, array(
535 'replyTo' => $this->replyto,
536 ) );
537 }
538
539 }