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