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