initialize array before preg_match*
[lhc/web/wiklou.git] / includes / UserMailer.php
1 <?php
2 /**
3 * UserMailer.php
4 * Copyright (C) 2004 Thomas Gries <mail@tgries.de>
5 * http://www.mediawiki.org/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * http://www.gnu.org/copyleft/gpl.html
21 *
22 * @author <brion@pobox.com>
23 * @author <mail@tgries.de>
24 *
25 * @package MediaWiki
26 */
27
28 require_once( 'WikiError.php' );
29
30 /**
31 * Converts a string into a valid RFC 822 "phrase", such as is used for the sender name
32 */
33 function wfRFC822Phrase( $phrase ) {
34 $phrase = strtr( $phrase, array( "\r" => '', "\n" => '', '"' => '' ) );
35 return '"' . $phrase . '"';
36 }
37
38 /**
39 * This function will perform a direct (authenticated) login to
40 * a SMTP Server to use for mail relaying if 'wgSMTP' specifies an
41 * array of parameters. It requires PEAR:Mail to do that.
42 * Otherwise it just uses the standard PHP 'mail' function.
43 *
44 * @param string $to recipient's email
45 * @param string $from sender's email
46 * @param string $subject email's subject
47 * @param string $body email's text
48 * @param string $replyto optional reply-to email (default : false)
49 */
50 function userMailer( $to, $from, $subject, $body, $replyto=false ) {
51 global $wgUser, $wgSMTP, $wgOutputEncoding, $wgErrorString;
52
53 if (is_array( $wgSMTP )) {
54 require_once( 'Mail.php' );
55
56 $timestamp = time();
57
58 $headers['From'] = $from;
59 if ( $replyto ) {
60 $headers['Reply-To'] = $replyto;
61 }
62 $headers['Subject'] = $subject;
63 $headers['MIME-Version'] = '1.0';
64 $headers['Content-type'] = 'text/plain; charset='.$wgOutputEncoding;
65 $headers['Content-transfer-encoding'] = '8bit';
66 $headers['Message-ID'] = "<{$timestamp}" . $wgUser->getName() . '@' . $wgSMTP['IDHost'] . '>';
67 $headers['X-Mailer'] = 'MediaWiki mailer';
68
69 // Create the mail object using the Mail::factory method
70 $mail_object =& Mail::factory('smtp', $wgSMTP);
71 wfDebug( "Sending mail via PEAR::Mail\n" );
72 $mailResult =& $mail_object->send($to, $headers, $body);
73
74 # Based on the result return an error string,
75 if ($mailResult === true) {
76 return '';
77 } elseif (is_object($mailResult)) {
78 return $mailResult->getMessage();
79 } else {
80 return 'Mail object return unknown error.';
81 }
82 } else {
83 # In the following $headers = expression we removed "Reply-To: {$from}\r\n" , because it is treated differently
84 # (fifth parameter of the PHP mail function, see some lines below)
85 $headers =
86 "MIME-Version: 1.0\n" .
87 "Content-type: text/plain; charset={$wgOutputEncoding}\n" .
88 "Content-Transfer-Encoding: 8bit\n" .
89 "X-Mailer: MediaWiki mailer\n".
90 'From: ' . $from . "\n";
91 if ($replyto) {
92 $headers .= "Reply-To: $replyto\n";
93 }
94
95 $wgErrorString = '';
96 set_error_handler( 'mailErrorHandler' );
97 wfDebug( "Sending mail via internal mail() function\n" );
98 mail( $to, $subject, $body, $headers );
99 restore_error_handler();
100
101 if ( $wgErrorString ) {
102 wfDebug( "Error sending mail: $wgErrorString\n" );
103 }
104 return $wgErrorString;
105 }
106 }
107
108 /**
109 * Get the mail error message in global $wgErrorString
110 *
111 * @parameter $code error number
112 * @parameter $string error message
113 */
114 function mailErrorHandler( $code, $string ) {
115 global $wgErrorString;
116 $wgErrorString = preg_replace( "/^mail\(\): /", '', $string );
117 }
118
119
120 /**
121 * This module processes the email notifications when the current page is
122 * changed. It looks up the table watchlist to find out which users are watching
123 * that page.
124 *
125 * The current implementation sends independent emails to each watching user for
126 * the following reason:
127 *
128 * - Each watching user will be notified about the page edit time expressed in
129 * his/her local time (UTC is shown additionally). To achieve this, we need to
130 * find the individual timeoffset of each watching user from the preferences..
131 *
132 * Suggested improvement to slack down the number of sent emails: We could think
133 * of sending out bulk mails (bcc:user1,user2...) for all these users having the
134 * same timeoffset in their preferences.
135 *
136 * Visit the documentation pages under http://meta.wikipedia.com/Enotif
137 *
138 * @package MediaWiki
139 *
140 */
141 class EmailNotification {
142 /**#@+
143 * @access private
144 */
145 var $to, $subject, $body, $replyto, $from;
146 var $user, $title, $timestamp, $summary, $minorEdit, $oldid;
147
148 /**#@-*/
149
150 /**
151 * @todo document
152 * @param $currentPage
153 * @param $currentNs
154 * @param $timestamp
155 * @param $currentSummary
156 * @param $currentMinorEdit
157 * @param $oldid (default: false)
158 */
159 function notifyOnPageChange(&$title, $timestamp, $summary, $minorEdit, $oldid=false) {
160
161 # we use $wgEmergencyContact as sender's address
162 global $wgUser, $wgEnotifWatchlist;
163 global $wgEnotifMinorEdits, $wgEnotifUserTalk, $wgShowUpdatedMarker;
164
165 $fname = 'UserMailer::notifyOnPageChange';
166 wfProfileIn( $fname );
167
168 # The following code is only run, if several conditions are met:
169 # 1. EmailNotification for pages (other than user_talk pages) must be enabled
170 # 2. minor edits (changes) are only regarded if the global flag indicates so
171
172 $isUserTalkPage = ($title->getNamespace() == NS_USER_TALK);
173 $enotifusertalkpage = ($isUserTalkPage && $wgEnotifUserTalk);
174 $enotifwatchlistpage = (!$isUserTalkPage && $wgEnotifWatchlist);
175
176
177 if ( ($enotifusertalkpage || $enotifwatchlistpage) && (!$minorEdit || $wgEnotifMinorEdits) ) {
178 $dbr =& wfGetDB( DB_MASTER );
179 extract( $dbr->tableNames( 'watchlist' ) );
180 $res = $dbr->select( 'watchlist', array( 'wl_user' ),
181 array(
182 'wl_title' => $title->getDBkey(),
183 'wl_namespace' => $title->getNamespace(),
184 'wl_user <> ' . $wgUser->getID(),
185 'wl_notificationtimestamp ' . $dbr->isNullTimestamp(),
186 ), $fname );
187
188 # if anyone is watching ... set up the email message text which is
189 # common for all receipients ...
190 if ( $dbr->numRows( $res ) > 0 ) {
191 $this->user &= $wgUser;
192 $this->title =& $title;
193 $this->timestamp = $timestamp;
194 $this->summary = $summary;
195 $this->minorEdit = $minorEdit;
196 $this->oldid = $oldid;
197
198 $this->composeCommonMailtext();
199 $watchingUser = new User();
200
201 # ... now do for all watching users ... if the options fit
202 for ($i = 1; $i <= $dbr->numRows( $res ); $i++) {
203
204 $wuser = $dbr->fetchObject( $res );
205 $watchingUser->setID($wuser->wl_user);
206 if ( ( $enotifwatchlistpage && $watchingUser->getOption('enotifwatchlistpages') ) ||
207 ( $enotifusertalkpage && $watchingUser->getOption('enotifusertalkpages') )
208 && (!$minorEdit || ($wgEnotifMinorEdits && $watchingUser->getOption('enotifminoredits') ) )
209 && ($watchingUser->isEmailConfirmed() ) ) {
210 # ... adjust remaining text and page edit time placeholders
211 # which needs to be personalized for each user
212 $this->composeAndSendPersonalisedMail( $watchingUser );
213
214 } # if the watching user has an email address in the preferences
215 }
216 } # if anyone is watching
217 } # if $wgEnotifWatchlist = true
218
219 if ( $wgShowUpdatedMarker || $wgEnotifWatchlist ) {
220 # mark the changed watch-listed page with a timestamp, so that the page is
221 # listed with an "updated since your last visit" icon in the watch list, ...
222 $dbw =& wfGetDB( DB_MASTER );
223 $success = $dbw->update( 'watchlist',
224 array( /* SET */
225 'wl_notificationtimestamp' => $dbw->timestamp($timestamp)
226 ), array( /* WHERE */
227 'wl_title' => $title->getDBkey(),
228 'wl_namespace' => $title->getNamespace(),
229 ), 'UserMailer::NotifyOnChange'
230 );
231 # FIXME what do we do on failure ?
232 }
233
234 } # function NotifyOnChange
235
236 /**
237 * @access private
238 */
239 function composeCommonMailtext() {
240 global $wgUser, $wgEmergencyContact, $wgNoReplyAddress;
241 global $wgEnotifFromEditor, $wgEnotifRevealEditorAddress;
242
243 $summary = ($this->summary == '') ? ' - ' : $this->summary;
244 $medit = ($this->minorEdit) ? wfMsg( 'minoredit' ) : '';
245
246 # You as the WikiAdmin and Sysops can make use of plenty of
247 # named variables when composing your notification emails while
248 # simply editing the Meta pages
249
250 $subject = wfMsgForContent( 'enotif_subject' );
251 $body = wfMsgForContent( 'enotif_body' );
252 $from = ''; /* fail safe */
253 $replyto = ''; /* fail safe */
254 $keys = array();
255
256 # regarding the use of oldid as an indicator for the last visited version, see also
257 # http://bugzilla.wikipeda.org/show_bug.cgi?id=603 "Delete + undelete cycle doesn't preserve old_id"
258 # However, in the case of a new page which is already watched, we have no previous version to compare
259 if( $this->oldid ) {
260 $difflink = $this->title->getFullUrl( 'diff=0&oldid=' . $this->oldid );
261 $keys['$NEWPAGE'] = wfMsgForContent( 'enotif_lastvisited', $difflink );
262 $keys['$OLDID'] = $this->oldid;
263 $keys['$CHANGEDORCREATED'] = wfMsgForContent( 'changed' );
264 } else {
265 $keys['$NEWPAGE'] = wfMsgForContent( 'enotif_newpagetext' );
266 # clear $OLDID placeholder in the message template
267 $keys['$OLDID'] = '';
268 $keys['$CHANGEDORCREATED'] = wfMsgForContent( 'created' );
269 }
270
271 $body = strtr( $body, $keys );
272 $pagetitle = $this->title->getPrefixedText();
273 $keys['$PAGETITLE'] = $pagetitle;
274 $keys['$PAGETITLE_URL'] = $this->title->getFullUrl();
275
276 $keys['$PAGEMINOREDIT'] = $medit;
277 $keys['$PAGESUMMARY'] = $summary;
278
279 $subject = strtr( $subject, $keys );
280
281 # Reveal the page editor's address as REPLY-TO address only if
282 # the user has not opted-out and the option is enabled at the
283 # global configuration level.
284 $name = $wgUser->getName();
285 $adminAddress = 'WikiAdmin <' . $wgEmergencyContact . '>';
286 $editorAddress = wfRFC822Phrase( $name ) . ' <' . $wgUser->getEmail() . '>';
287 if( $wgEnotifRevealEditorAddress
288 && ( $wgUser->getEmail() != '' )
289 && $wgUser->getOption( 'enotifrevealaddr' ) ) {
290 if( $wgEnotifFromEditor ) {
291 $from = $editorAddress;
292 } else {
293 $from = $adminAddress;
294 $replyto = $editorAddress;
295 }
296 } else {
297 $from = $adminAddress;
298 $replyto = $wgNoReplyAddress;
299 }
300
301 if( $wgUser->isIP( $name ) ) {
302 #real anon (user:xxx.xxx.xxx.xxx)
303 $subject = str_replace('$PAGEEDITOR', 'anonymous user '. $name, $subject);
304 $keys['$PAGEEDITOR'] = 'anonymous user ' . $name;
305 $keys['$PAGEEDITOR_EMAIL'] = wfMsgForContent( 'noemailtitle' );
306 } else {
307 $subject = str_replace('$PAGEEDITOR', $name, $subject);
308 $keys['$PAGEEDITOR'] = $name;
309 $emailPage = Title::makeTitle( NS_SPECIAL, 'Emailuser/' . $name );
310 $keys['$PAGEEDITOR_EMAIL'] = $emailPage->getFullUrl();
311 }
312 $userPage = $wgUser->getUserPage();
313 $keys['$PAGEEDITOR_WIKI'] = $userPage->getFullUrl();
314 $body = strtr( $body, $keys );
315 $body = wordwrap( $body, 72 );
316
317 # now save this as the constant user-independent part of the message
318 $this->from = $from;
319 $this->replyto = $replyto;
320 $this->subject = $subject;
321 $this->body = $body;
322 }
323
324
325
326 /**
327 * Does the per-user customizations to a notification e-mail (name,
328 * timestamp in proper timezone, etc) and sends it out.
329 * Returns true if the mail was sent successfully.
330 *
331 * @param User $watchingUser
332 * @param object $mail
333 * @return bool
334 * @access private
335 */
336 function composeAndSendPersonalisedMail( $watchingUser ) {
337 global $wgLang;
338 // From the PHP manual:
339 // Note: The to parameter cannot be an address in the form of "Something <someone@example.com>".
340 // The mail command will not parse this properly while talking with the MTA.
341 $to = $watchingUser->getEmail();
342 $body = str_replace( '$WATCHINGUSERNAME', $watchingUser->getName() , $this->body );
343
344 $timecorrection = $watchingUser->getOption( 'timecorrection' );
345
346 # $PAGEEDITDATE is the time and date of the page change
347 # expressed in terms of individual local time of the notification
348 # recipient, i.e. watching user
349 $body = str_replace('$PAGEEDITDATE',
350 $wgLang->timeanddate( $this->timestamp, true, false, $timecorrection ),
351 $body);
352
353 $error = userMailer( $to, $this->from, $this->subject, $body, $this->replyto );
354 return ($error == '');
355 }
356
357 } # end of class EmailNotification
358 ?>