Localisation updates from http://translatewiki.net.
[lhc/web/wiklou.git] / includes / UserMailer.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 * Stores a single person's name and email address.
29 * These are passed in via the constructor, and will be returned in SMTP
30 * header format when requested.
31 */
32 class MailAddress {
33 /**
34 * @param string|User $address string with an email address, or a User object
35 * @param string $name human-readable name if a string address is given
36 * @param string $realName human-readable real name if a string address is given
37 */
38 function __construct( $address, $name = null, $realName = null ) {
39 if ( is_object( $address ) && $address instanceof User ) {
40 $this->address = $address->getEmail();
41 $this->name = $address->getName();
42 $this->realName = $address->getRealName();
43 } else {
44 $this->address = strval( $address );
45 $this->name = strval( $name );
46 $this->realName = strval( $realName );
47 }
48 }
49
50 /**
51 * Return formatted and quoted address to insert into SMTP headers
52 * @return string
53 */
54 function toString() {
55 # PHP's mail() implementation under Windows is somewhat shite, and
56 # can't handle "Joe Bloggs <joe@bloggs.com>" format email addresses,
57 # so don't bother generating them
58 if ( $this->address ) {
59 if ( $this->name != '' && !wfIsWindows() ) {
60 global $wgEnotifUseRealName;
61 $name = ( $wgEnotifUseRealName && $this->realName ) ? $this->realName : $this->name;
62 $quoted = UserMailer::quotedPrintable( $name );
63 if ( strpos( $quoted, '.' ) !== false || strpos( $quoted, ',' ) !== false ) {
64 $quoted = '"' . $quoted . '"';
65 }
66 return "$quoted <{$this->address}>";
67 } else {
68 return $this->address;
69 }
70 } else {
71 return "";
72 }
73 }
74
75 function __toString() {
76 return $this->toString();
77 }
78 }
79
80 /**
81 * Collection of static functions for sending mail
82 */
83 class UserMailer {
84 static $mErrorString;
85
86 /**
87 * Send mail using a PEAR mailer
88 *
89 * @param $mailer
90 * @param $dest
91 * @param $headers
92 * @param $body
93 *
94 * @return Status
95 */
96 protected static function sendWithPear( $mailer, $dest, $headers, $body ) {
97 $mailResult = $mailer->send( $dest, $headers, $body );
98
99 # Based on the result return an error string,
100 if ( PEAR::isError( $mailResult ) ) {
101 wfDebug( "PEAR::Mail failed: " . $mailResult->getMessage() . "\n" );
102 return Status::newFatal( 'pear-mail-error', $mailResult->getMessage() );
103 } else {
104 return Status::newGood();
105 }
106 }
107
108 /**
109 * Creates a single string from an associative array
110 *
111 * @param array $headers Associative Array: keys are header field names,
112 * values are ... values.
113 * @param string $endl The end of line character. Defaults to "\n"
114 *
115 * Note RFC2822 says newlines must be CRLF (\r\n)
116 * but php mail naively "corrects" it and requires \n for the "correction" to work
117 *
118 * @return String
119 */
120 static function arrayToHeaderString( $headers, $endl = "\n" ) {
121 $strings = array();
122 foreach ( $headers as $name => $value ) {
123 $strings[] = "$name: $value";
124 }
125 return implode( $endl, $strings );
126 }
127
128 /**
129 * Create a value suitable for the MessageId Header
130 *
131 * @return String
132 */
133 static function makeMsgId() {
134 global $wgSMTP, $wgServer;
135
136 $msgid = uniqid( wfWikiID() . ".", true ); /* true required for cygwin */
137 if ( is_array( $wgSMTP ) && isset( $wgSMTP['IDHost'] ) && $wgSMTP['IDHost'] ) {
138 $domain = $wgSMTP['IDHost'];
139 } else {
140 $url = wfParseUrl( $wgServer );
141 $domain = $url['host'];
142 }
143 return "<$msgid@$domain>";
144 }
145
146 /**
147 * This function will perform a direct (authenticated) login to
148 * a SMTP Server to use for mail relaying if 'wgSMTP' specifies an
149 * array of parameters. It requires PEAR:Mail to do that.
150 * Otherwise it just uses the standard PHP 'mail' function.
151 *
152 * @param $to MailAddress: recipient's email (or an array of them)
153 * @param $from MailAddress: sender's email
154 * @param string $subject email's subject.
155 * @param string $body email's text or Array of two strings to be the text and html bodies
156 * @param $replyto MailAddress: optional reply-to email (default: null).
157 * @param string $contentType optional custom Content-Type (default: text/plain; charset=UTF-8)
158 * @throws MWException
159 * @return Status object
160 */
161 public static function send( $to, $from, $subject, $body, $replyto = null, $contentType = 'text/plain; charset=UTF-8' ) {
162 global $wgSMTP, $wgEnotifMaxRecips, $wgAdditionalMailParams, $wgAllowHTMLEmail;
163 $mime = null;
164 if ( !is_array( $to ) ) {
165 $to = array( $to );
166 }
167
168 // mail body must have some content
169 $minBodyLen = 10;
170 // arbitrary but longer than Array or Object to detect casting error
171
172 // body must either be a string or an array with text and body
173 if (
174 !(
175 !is_array( $body ) &&
176 strlen( $body ) >= $minBodyLen
177 )
178 &&
179 !(
180 is_array( $body ) &&
181 isset( $body['text'] ) &&
182 isset( $body['html'] ) &&
183 strlen( $body['text'] ) >= $minBodyLen &&
184 strlen( $body['html'] ) >= $minBodyLen
185 )
186 ) {
187 // if it is neither we have a problem
188 return Status::newFatal( 'user-mail-no-body' );
189 }
190
191 if ( !$wgAllowHTMLEmail && is_array( $body ) ) {
192 // HTML not wanted. Dump it.
193 $body = $body['text'];
194 }
195
196 wfDebug( __METHOD__ . ': sending mail to ' . implode( ', ', $to ) . "\n" );
197
198 # Make sure we have at least one address
199 $has_address = false;
200 foreach ( $to as $u ) {
201 if ( $u->address ) {
202 $has_address = true;
203 break;
204 }
205 }
206 if ( !$has_address ) {
207 return Status::newFatal( 'user-mail-no-addy' );
208 }
209
210 # Forge email headers
211 # -------------------
212 #
213 # WARNING
214 #
215 # DO NOT add To: or Subject: headers at this step. They need to be
216 # handled differently depending upon the mailer we are going to use.
217 #
218 # To:
219 # PHP mail() first argument is the mail receiver. The argument is
220 # used as a recipient destination and as a To header.
221 #
222 # PEAR mailer has a recipient argument which is only used to
223 # send the mail. If no To header is given, PEAR will set it to
224 # to 'undisclosed-recipients:'.
225 #
226 # NOTE: To: is for presentation, the actual recipient is specified
227 # by the mailer using the Rcpt-To: header.
228 #
229 # Subject:
230 # PHP mail() second argument to pass the subject, passing a Subject
231 # as an additional header will result in a duplicate header.
232 #
233 # PEAR mailer should be passed a Subject header.
234 #
235 # -- hashar 20120218
236
237 $headers['From'] = $from->toString();
238 $headers['Return-Path'] = $from->address;
239
240 if ( $replyto ) {
241 $headers['Reply-To'] = $replyto->toString();
242 }
243
244 $headers['Date'] = MWTimestamp::getLocalInstance()->format( 'r' );
245 $headers['Message-ID'] = self::makeMsgId();
246 $headers['X-Mailer'] = 'MediaWiki mailer';
247
248 # Line endings need to be different on Unix and Windows due to
249 # the bug described at http://trac.wordpress.org/ticket/2603
250 if ( wfIsWindows() ) {
251 $endl = "\r\n";
252 } else {
253 $endl = "\n";
254 }
255
256 if ( is_array( $body ) ) {
257 // we are sending a multipart message
258 wfDebug( "Assembling multipart mime email\n" );
259 if ( !stream_resolve_include_path( 'Mail/mime.php' ) ) {
260 wfDebug( "PEAR Mail_Mime package is not installed. Falling back to text email.\n" );
261 // remove the html body for text email fall back
262 $body = $body['text'];
263 }
264 else {
265 require_once 'Mail/mime.php';
266 if ( wfIsWindows() ) {
267 $body['text'] = str_replace( "\n", "\r\n", $body['text'] );
268 $body['html'] = str_replace( "\n", "\r\n", $body['html'] );
269 }
270 $mime = new Mail_mime( array( 'eol' => $endl, 'text_charset' => 'UTF-8', 'html_charset' => 'UTF-8' ) );
271 $mime->setTXTBody( $body['text'] );
272 $mime->setHTMLBody( $body['html'] );
273 $body = $mime->get(); // must call get() before headers()
274 $headers = $mime->headers( $headers );
275 }
276 }
277 if ( !isset( $mime ) ) {
278 // sending text only, either deliberately or as a fallback
279 if ( wfIsWindows() ) {
280 $body = str_replace( "\n", "\r\n", $body );
281 }
282 $headers['MIME-Version'] = '1.0';
283 $headers['Content-type'] = ( is_null( $contentType ) ?
284 'text/plain; charset=UTF-8' : $contentType );
285 $headers['Content-transfer-encoding'] = '8bit';
286 }
287
288 $ret = wfRunHooks( 'AlternateUserMailer', array( $headers, $to, $from, $subject, $body ) );
289 if ( $ret === false ) {
290 // the hook implementation will return false to skip regular mail sending
291 return Status::newGood();
292 } elseif ( $ret !== true ) {
293 // the hook implementation will return a string to pass an error message
294 return Status::newFatal( 'php-mail-error', $ret );
295 }
296
297 if ( is_array( $wgSMTP ) ) {
298 #
299 # PEAR MAILER
300 #
301
302 if ( !stream_resolve_include_path( 'Mail.php' ) ) {
303 throw new MWException( 'PEAR mail package is not installed' );
304 }
305 require_once 'Mail.php';
306
307 wfSuppressWarnings();
308
309 // Create the mail object using the Mail::factory method
310 $mail_object =& Mail::factory( 'smtp', $wgSMTP );
311 if ( PEAR::isError( $mail_object ) ) {
312 wfDebug( "PEAR::Mail factory failed: " . $mail_object->getMessage() . "\n" );
313 wfRestoreWarnings();
314 return Status::newFatal( 'pear-mail-error', $mail_object->getMessage() );
315 }
316
317 wfDebug( "Sending mail via PEAR::Mail\n" );
318
319 $headers['Subject'] = self::quotedPrintable( $subject );
320
321 # When sending only to one recipient, shows it its email using To:
322 if ( count( $to ) == 1 ) {
323 $headers['To'] = $to[0]->toString();
324 }
325
326 # Split jobs since SMTP servers tends to limit the maximum
327 # number of possible recipients.
328 $chunks = array_chunk( $to, $wgEnotifMaxRecips );
329 foreach ( $chunks as $chunk ) {
330 $status = self::sendWithPear( $mail_object, $chunk, $headers, $body );
331 # FIXME : some chunks might be sent while others are not!
332 if ( !$status->isOK() ) {
333 wfRestoreWarnings();
334 return $status;
335 }
336 }
337 wfRestoreWarnings();
338 return Status::newGood();
339 } else {
340 #
341 # PHP mail()
342 #
343 if ( count( $to ) > 1 ) {
344 $headers['To'] = 'undisclosed-recipients:;';
345 }
346 $headers = self::arrayToHeaderString( $headers, $endl );
347
348 wfDebug( "Sending mail via internal mail() function\n" );
349
350 self::$mErrorString = '';
351 $html_errors = ini_get( 'html_errors' );
352 ini_set( 'html_errors', '0' );
353 set_error_handler( 'UserMailer::errorHandler' );
354
355 $safeMode = wfIniGetBool( 'safe_mode' );
356
357 foreach ( $to as $recip ) {
358 if ( $safeMode ) {
359 $sent = mail( $recip, self::quotedPrintable( $subject ), $body, $headers );
360 } else {
361 $sent = mail( $recip, self::quotedPrintable( $subject ), $body, $headers, $wgAdditionalMailParams );
362 }
363 }
364
365 restore_error_handler();
366 ini_set( 'html_errors', $html_errors );
367
368 if ( self::$mErrorString ) {
369 wfDebug( "Error sending mail: " . self::$mErrorString . "\n" );
370 return Status::newFatal( 'php-mail-error', self::$mErrorString );
371 } elseif ( ! $sent ) {
372 // mail function only tells if there's an error
373 wfDebug( "Unknown error sending mail\n" );
374 return Status::newFatal( 'php-mail-error-unknown' );
375 } else {
376 return Status::newGood();
377 }
378 }
379 }
380
381 /**
382 * Set the mail error message in self::$mErrorString
383 *
384 * @param $code Integer: error number
385 * @param string $string error message
386 */
387 static function errorHandler( $code, $string ) {
388 self::$mErrorString = preg_replace( '/^mail\(\)(\s*\[.*?\])?: /', '', $string );
389 }
390
391 /**
392 * Converts a string into a valid RFC 822 "phrase", such as is used for the sender name
393 * @param $phrase string
394 * @return string
395 */
396 public static function rfc822Phrase( $phrase ) {
397 $phrase = strtr( $phrase, array( "\r" => '', "\n" => '', '"' => '' ) );
398 return '"' . $phrase . '"';
399 }
400
401 /**
402 * Converts a string into quoted-printable format
403 * @since 1.17
404 *
405 * From PHP5.3 there is a built in function quoted_printable_encode()
406 * This method does not duplicate that.
407 * This method is doing Q encoding inside encoded-words as defined by RFC 2047
408 * This is for email headers.
409 * The built in quoted_printable_encode() is for email bodies
410 * @return string
411 */
412 public static function quotedPrintable( $string, $charset = '' ) {
413 # Probably incomplete; see RFC 2045
414 if ( empty( $charset ) ) {
415 $charset = 'UTF-8';
416 }
417 $charset = strtoupper( $charset );
418 $charset = str_replace( 'ISO-8859', 'ISO8859', $charset ); // ?
419
420 $illegal = '\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\xff=';
421 $replace = $illegal . '\t ?_';
422 if ( !preg_match( "/[$illegal]/", $string ) ) {
423 return $string;
424 }
425 $out = "=?$charset?Q?";
426 $out .= preg_replace_callback( "/([$replace])/",
427 array( __CLASS__, 'quotedPrintableCallback' ), $string );
428 $out .= '?=';
429 return $out;
430 }
431
432 protected static function quotedPrintableCallback( $matches ) {
433 return sprintf( "=%02X", ord( $matches[1] ) );
434 }
435 }
436
437 /**
438 * This module processes the email notifications when the current page is
439 * changed. It looks up the table watchlist to find out which users are watching
440 * that page.
441 *
442 * The current implementation sends independent emails to each watching user for
443 * the following reason:
444 *
445 * - Each watching user will be notified about the page edit time expressed in
446 * his/her local time (UTC is shown additionally). To achieve this, we need to
447 * find the individual timeoffset of each watching user from the preferences..
448 *
449 * Suggested improvement to slack down the number of sent emails: We could think
450 * of sending out bulk mails (bcc:user1,user2...) for all these users having the
451 * same timeoffset in their preferences.
452 *
453 * Visit the documentation pages under http://meta.wikipedia.com/Enotif
454 *
455 *
456 */
457 class EmailNotification {
458 protected $subject, $body, $replyto, $from;
459 protected $timestamp, $summary, $minorEdit, $oldid, $composed_common, $pageStatus;
460 protected $mailTargets = array();
461
462 /**
463 * @var Title
464 */
465 protected $title;
466
467 /**
468 * @var User
469 */
470 protected $editor;
471
472 /**
473 * Send emails corresponding to the user $editor editing the page $title.
474 * Also updates wl_notificationtimestamp.
475 *
476 * May be deferred via the job queue.
477 *
478 * @param $editor User object
479 * @param $title Title object
480 * @param $timestamp
481 * @param $summary
482 * @param $minorEdit
483 * @param $oldid (default: false)
484 * @param $pageStatus (default: 'changed')
485 */
486 public function notifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit, $oldid = false, $pageStatus = 'changed' ) {
487 global $wgEnotifUseJobQ, $wgEnotifWatchlist, $wgShowUpdatedMarker, $wgEnotifMinorEdits,
488 $wgUsersNotifiedOnAllChanges, $wgEnotifUserTalk;
489
490 if ( $title->getNamespace() < 0 ) {
491 return;
492 }
493
494 // Build a list of users to notify
495 $watchers = array();
496 if ( $wgEnotifWatchlist || $wgShowUpdatedMarker ) {
497 $dbw = wfGetDB( DB_MASTER );
498 $res = $dbw->select( array( 'watchlist' ),
499 array( 'wl_user' ),
500 array(
501 'wl_user != ' . intval( $editor->getID() ),
502 'wl_namespace' => $title->getNamespace(),
503 'wl_title' => $title->getDBkey(),
504 'wl_notificationtimestamp IS NULL',
505 ), __METHOD__
506 );
507 foreach ( $res as $row ) {
508 $watchers[] = intval( $row->wl_user );
509 }
510 if ( $watchers ) {
511 // Update wl_notificationtimestamp for all watching users except the editor
512 $fname = __METHOD__;
513 $dbw->onTransactionIdle(
514 function() use ( $dbw, $timestamp, $watchers, $title, $fname ) {
515 $dbw->begin( $fname );
516 $dbw->update( 'watchlist',
517 array( /* SET */
518 'wl_notificationtimestamp' => $dbw->timestamp( $timestamp )
519 ), array( /* WHERE */
520 'wl_user' => $watchers,
521 'wl_namespace' => $title->getNamespace(),
522 'wl_title' => $title->getDBkey(),
523 ), $fname
524 );
525 $dbw->commit( $fname );
526 }
527 );
528 }
529 }
530
531 $sendEmail = true;
532 // If nobody is watching the page, and there are no users notified on all changes
533 // don't bother creating a job/trying to send emails
534 // $watchers deals with $wgEnotifWatchlist
535 if ( !count( $watchers ) && !count( $wgUsersNotifiedOnAllChanges ) ) {
536 $sendEmail = false;
537 // Only send notification for non minor edits, unless $wgEnotifMinorEdits
538 if ( !$minorEdit || ( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
539 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
540 if ( $wgEnotifUserTalk && $isUserTalkPage && $this->canSendUserTalkEmail( $editor, $title, $minorEdit ) ) {
541 $sendEmail = true;
542 }
543 }
544 }
545
546 if ( !$sendEmail ) {
547 return;
548 }
549 if ( $wgEnotifUseJobQ ) {
550 $params = array(
551 'editor' => $editor->getName(),
552 'editorID' => $editor->getID(),
553 'timestamp' => $timestamp,
554 'summary' => $summary,
555 'minorEdit' => $minorEdit,
556 'oldid' => $oldid,
557 'watchers' => $watchers,
558 'pageStatus' => $pageStatus
559 );
560 $job = new EnotifNotifyJob( $title, $params );
561 JobQueueGroup::singleton()->push( $job );
562 } else {
563 $this->actuallyNotifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit, $oldid, $watchers, $pageStatus );
564 }
565 }
566
567 /**
568 * Immediate version of notifyOnPageChange().
569 *
570 * Send emails corresponding to the user $editor editing the page $title.
571 * Also updates wl_notificationtimestamp.
572 *
573 * @param $editor User object
574 * @param $title Title object
575 * @param string $timestamp Edit timestamp
576 * @param string $summary Edit summary
577 * @param $minorEdit bool
578 * @param int $oldid Revision ID
579 * @param array $watchers of user IDs
580 * @param string $pageStatus
581 * @throws MWException
582 */
583 public function actuallyNotifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit,
584 $oldid, $watchers, $pageStatus = 'changed' ) {
585 # we use $wgPasswordSender as sender's address
586 global $wgEnotifWatchlist;
587 global $wgEnotifMinorEdits, $wgEnotifUserTalk;
588
589 wfProfileIn( __METHOD__ );
590
591 # The following code is only run, if several conditions are met:
592 # 1. EmailNotification for pages (other than user_talk pages) must be enabled
593 # 2. minor edits (changes) are only regarded if the global flag indicates so
594
595 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
596
597 $this->title = $title;
598 $this->timestamp = $timestamp;
599 $this->summary = $summary;
600 $this->minorEdit = $minorEdit;
601 $this->oldid = $oldid;
602 $this->editor = $editor;
603 $this->composed_common = false;
604 $this->pageStatus = $pageStatus;
605
606 $formattedPageStatus = array( 'deleted', 'created', 'moved', 'restored', 'changed' );
607
608 wfRunHooks( 'UpdateUserMailerFormattedPageStatus', array( &$formattedPageStatus ) );
609 if ( !in_array( $this->pageStatus, $formattedPageStatus ) ) {
610 wfProfileOut( __METHOD__ );
611 throw new MWException( 'Not a valid page status!' );
612 }
613
614 $userTalkId = false;
615
616 if ( !$minorEdit || ( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
617
618 if ( $wgEnotifUserTalk && $isUserTalkPage && $this->canSendUserTalkEmail( $editor, $title, $minorEdit ) ) {
619 $targetUser = User::newFromName( $title->getText() );
620 $this->compose( $targetUser );
621 $userTalkId = $targetUser->getId();
622 }
623
624 if ( $wgEnotifWatchlist ) {
625 // Send updates to watchers other than the current editor
626 $userArray = UserArray::newFromIDs( $watchers );
627 foreach ( $userArray as $watchingUser ) {
628 if ( $watchingUser->getOption( 'enotifwatchlistpages' ) &&
629 ( !$minorEdit || $watchingUser->getOption( 'enotifminoredits' ) ) &&
630 $watchingUser->isEmailConfirmed() &&
631 $watchingUser->getID() != $userTalkId )
632 {
633 $this->compose( $watchingUser );
634 }
635 }
636 }
637 }
638
639 global $wgUsersNotifiedOnAllChanges;
640 foreach ( $wgUsersNotifiedOnAllChanges as $name ) {
641 if ( $editor->getName() == $name ) {
642 // No point notifying the user that actually made the change!
643 continue;
644 }
645 $user = User::newFromName( $name );
646 $this->compose( $user );
647 }
648
649 $this->sendMails();
650 wfProfileOut( __METHOD__ );
651 }
652
653 /**
654 * @param $editor User
655 * @param $title Title bool
656 * @param $minorEdit
657 * @return bool
658 */
659 private function canSendUserTalkEmail( $editor, $title, $minorEdit ) {
660 global $wgEnotifUserTalk;
661 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
662
663 if ( $wgEnotifUserTalk && $isUserTalkPage ) {
664 $targetUser = User::newFromName( $title->getText() );
665
666 if ( !$targetUser || $targetUser->isAnon() ) {
667 wfDebug( __METHOD__ . ": user talk page edited, but user does not exist\n" );
668 } elseif ( $targetUser->getId() == $editor->getId() ) {
669 wfDebug( __METHOD__ . ": user edited their own talk page, no notification sent\n" );
670 } elseif ( $targetUser->getOption( 'enotifusertalkpages' ) &&
671 ( !$minorEdit || $targetUser->getOption( 'enotifminoredits' ) ) )
672 {
673 if ( !$targetUser->isEmailConfirmed() ) {
674 wfDebug( __METHOD__ . ": talk page owner doesn't have validated email\n" );
675 } elseif ( !wfRunHooks( 'AbortTalkPageEmailNotification', array( $targetUser, $title ) ) ) {
676 wfDebug( __METHOD__ . ": talk page update notification is aborted for this user\n" );
677 } else {
678 wfDebug( __METHOD__ . ": sending talk page update notification\n" );
679 return true;
680 }
681 } else {
682 wfDebug( __METHOD__ . ": talk page owner doesn't want notifications\n" );
683 }
684 }
685 return false;
686 }
687
688 /**
689 * Generate the generic "this page has been changed" e-mail text.
690 */
691 private function composeCommonMailtext() {
692 global $wgPasswordSender, $wgPasswordSenderName, $wgNoReplyAddress;
693 global $wgEnotifFromEditor, $wgEnotifRevealEditorAddress;
694 global $wgEnotifImpersonal, $wgEnotifUseRealName;
695
696 $this->composed_common = true;
697
698 # You as the WikiAdmin and Sysops can make use of plenty of
699 # named variables when composing your notification emails while
700 # simply editing the Meta pages
701
702 $keys = array();
703 $postTransformKeys = array();
704 $pageTitleUrl = $this->title->getCanonicalURL();
705 $pageTitle = $this->title->getPrefixedText();
706
707 if ( $this->oldid ) {
708 // Always show a link to the diff which triggered the mail. See bug 32210.
709 $keys['$NEWPAGE'] = "\n\n" . wfMessage( 'enotif_lastdiff',
710 $this->title->getCanonicalURL( array( 'diff' => 'next', 'oldid' => $this->oldid ) ) )
711 ->inContentLanguage()->text();
712
713 if ( !$wgEnotifImpersonal ) {
714 // For personal mail, also show a link to the diff of all changes
715 // since last visited.
716 $keys['$NEWPAGE'] .= "\n\n" . wfMessage( 'enotif_lastvisited',
717 $this->title->getCanonicalURL( array( 'diff' => '0', 'oldid' => $this->oldid ) ) )
718 ->inContentLanguage()->text();
719 }
720 $keys['$OLDID'] = $this->oldid;
721 // @deprecated Remove in MediaWiki 1.23.
722 $keys['$CHANGEDORCREATED'] = wfMessage( 'changed' )->inContentLanguage()->text();
723 } else {
724 # clear $OLDID placeholder in the message template
725 $keys['$OLDID'] = '';
726 $keys['$NEWPAGE'] = '';
727 // @deprecated Remove in MediaWiki 1.23.
728 $keys['$CHANGEDORCREATED'] = wfMessage( 'created' )->inContentLanguage()->text();
729 }
730
731 $keys['$PAGETITLE'] = $this->title->getPrefixedText();
732 $keys['$PAGETITLE_URL'] = $this->title->getCanonicalURL();
733 $keys['$PAGEMINOREDIT'] = $this->minorEdit ?
734 wfMessage( 'minoredit' )->inContentLanguage()->text() : '';
735 $keys['$UNWATCHURL'] = $this->title->getCanonicalURL( 'action=unwatch' );
736
737 if ( $this->editor->isAnon() ) {
738 # real anon (user:xxx.xxx.xxx.xxx)
739 $keys['$PAGEEDITOR'] = wfMessage( 'enotif_anon_editor', $this->editor->getName() )
740 ->inContentLanguage()->text();
741 $keys['$PAGEEDITOR_EMAIL'] = wfMessage( 'noemailtitle' )->inContentLanguage()->text();
742
743 } else {
744 $keys['$PAGEEDITOR'] = $wgEnotifUseRealName ? $this->editor->getRealName() : $this->editor->getName();
745 $emailPage = SpecialPage::getSafeTitleFor( 'Emailuser', $this->editor->getName() );
746 $keys['$PAGEEDITOR_EMAIL'] = $emailPage->getCanonicalURL();
747 }
748
749 $keys['$PAGEEDITOR_WIKI'] = $this->editor->getUserPage()->getCanonicalURL();
750
751 # Replace this after transforming the message, bug 35019
752 $postTransformKeys['$PAGESUMMARY'] = $this->summary == '' ? ' - ' : $this->summary;
753
754 # Now build message's subject and body
755 $this->subject = wfMessage( 'enotif_subject_' . $this->pageStatus )->inContentLanguage()
756 ->params( $pageTitle, $keys['$PAGEEDITOR'] )->text();
757
758 $keys['$PAGEINTRO'] = wfMessage( 'enotif_body_intro_' . $this->pageStatus )
759 ->inContentLanguage()->params( $pageTitle, $keys['$PAGEEDITOR'], $pageTitleUrl )
760 ->text();
761
762 $body = wfMessage( 'enotif_body' )->inContentLanguage()->plain();
763 $body = strtr( $body, $keys );
764 $body = MessageCache::singleton()->transform( $body, false, null, $this->title );
765 $this->body = wordwrap( strtr( $body, $postTransformKeys ), 72 );
766
767 # Reveal the page editor's address as REPLY-TO address only if
768 # the user has not opted-out and the option is enabled at the
769 # global configuration level.
770 $adminAddress = new MailAddress( $wgPasswordSender, $wgPasswordSenderName );
771 if ( $wgEnotifRevealEditorAddress
772 && ( $this->editor->getEmail() != '' )
773 && $this->editor->getOption( 'enotifrevealaddr' ) )
774 {
775 $editorAddress = new MailAddress( $this->editor );
776 if ( $wgEnotifFromEditor ) {
777 $this->from = $editorAddress;
778 } else {
779 $this->from = $adminAddress;
780 $this->replyto = $editorAddress;
781 }
782 } else {
783 $this->from = $adminAddress;
784 $this->replyto = new MailAddress( $wgNoReplyAddress );
785 }
786 }
787
788 /**
789 * Compose a mail to a given user and either queue it for sending, or send it now,
790 * depending on settings.
791 *
792 * Call sendMails() to send any mails that were queued.
793 * @param $user User
794 */
795 function compose( $user ) {
796 global $wgEnotifImpersonal;
797
798 if ( !$this->composed_common ) {
799 $this->composeCommonMailtext();
800 }
801
802 if ( $wgEnotifImpersonal ) {
803 $this->mailTargets[] = new MailAddress( $user );
804 } else {
805 $this->sendPersonalised( $user );
806 }
807 }
808
809 /**
810 * Send any queued mails
811 */
812 function sendMails() {
813 global $wgEnotifImpersonal;
814 if ( $wgEnotifImpersonal ) {
815 $this->sendImpersonal( $this->mailTargets );
816 }
817 }
818
819 /**
820 * Does the per-user customizations to a notification e-mail (name,
821 * timestamp in proper timezone, etc) and sends it out.
822 * Returns true if the mail was sent successfully.
823 *
824 * @param $watchingUser User object
825 * @return Boolean
826 * @private
827 */
828 function sendPersonalised( $watchingUser ) {
829 global $wgContLang, $wgEnotifUseRealName;
830 // From the PHP manual:
831 // Note: The to parameter cannot be an address in the form of "Something <someone@example.com>".
832 // The mail command will not parse this properly while talking with the MTA.
833 $to = new MailAddress( $watchingUser );
834
835 # $PAGEEDITDATE is the time and date of the page change
836 # expressed in terms of individual local time of the notification
837 # recipient, i.e. watching user
838 $body = str_replace(
839 array( '$WATCHINGUSERNAME',
840 '$PAGEEDITDATE',
841 '$PAGEEDITTIME' ),
842 array( $wgEnotifUseRealName ? $watchingUser->getRealName() : $watchingUser->getName(),
843 $wgContLang->userDate( $this->timestamp, $watchingUser ),
844 $wgContLang->userTime( $this->timestamp, $watchingUser ) ),
845 $this->body );
846
847 return UserMailer::send( $to, $this->from, $this->subject, $body, $this->replyto );
848 }
849
850 /**
851 * Same as sendPersonalised but does impersonal mail suitable for bulk
852 * mailing. Takes an array of MailAddress objects.
853 * @param $addresses array
854 * @return Status|null
855 */
856 function sendImpersonal( $addresses ) {
857 global $wgContLang;
858
859 if ( empty( $addresses ) ) {
860 return null;
861 }
862
863 $body = str_replace(
864 array( '$WATCHINGUSERNAME',
865 '$PAGEEDITDATE',
866 '$PAGEEDITTIME' ),
867 array( wfMessage( 'enotif_impersonal_salutation' )->inContentLanguage()->text(),
868 $wgContLang->date( $this->timestamp, false, false ),
869 $wgContLang->time( $this->timestamp, false, false ) ),
870 $this->body );
871
872 return UserMailer::send( $addresses, $this->from, $this->subject, $body, $this->replyto );
873 }
874
875 } # end of class EmailNotification