23a2e0f04c7c46fd284a9636144a00a3816becaa
[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, $wgEmergencyContact;
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
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 else if (is_object($mailResult))
78 return $mailResult->getMessage();
79 else
80 return 'Mail object return unknown error.';
81 } else {
82 # In the following $headers = expression we removed "Reply-To: {$from}\r\n" , because it is treated differently
83 # (fifth parameter of the PHP mail function, see some lines below)
84 $headers =
85 "MIME-Version: 1.0\n" .
86 "Content-type: text/plain; charset={$wgOutputEncoding}\n" .
87 "Content-Transfer-Encoding: 8bit\n" .
88 "X-Mailer: MediaWiki mailer\n".
89 'From: ' . $from . "\n";
90 if ($replyto) {
91 $headers .= "Reply-To: $replyto\n";
92 }
93
94 $wgErrorString = '';
95 set_error_handler( 'mailErrorHandler' );
96 # added -f parameter, see PHP manual for the fifth parameter when using the mail function
97 mail( $to, $subject, $body, $headers, " -f {$wgEmergencyContact}\n");
98 restore_error_handler();
99
100 if ( $wgErrorString ) {
101 wfDebug( "Error sending mail: $wgErrorString\n" );
102 }
103 return $wgErrorString;
104 }
105 }
106
107 /**
108 * @todo document
109 */
110 function mailErrorHandler( $code, $string ) {
111 global $wgErrorString;
112 $wgErrorString = preg_replace( "/^mail\(\): /", "", $string );
113 }
114
115
116 /**
117 * This module processes the email notifications when the current page is
118 * changed. It looks up the table watchlist to find out which users are watching
119 * that page.
120 *
121 * The current implementation sends independent emails to each watching user for
122 * the following reason:
123 *
124 * - Each watching user will be notified about the page edit time expressed in
125 * his/her local time (UTC is shown additionally). To achieve this, we need to
126 * find the individual timeoffset of each watching user from the preferences..
127 *
128 * Suggested improvement to slack down the number of sent emails: We could think
129 * of sending out bulk mails (bcc:user1,user2...) for all these users having the
130 * same timeoffset in their preferences.
131 *
132 * Visit the documentation pages under http://meta.wikipedia.com/Enotif
133 *
134 * @package MediaWiki
135 *
136 */
137 class EmailNotification {
138 /**#@+
139 * @access private
140 */
141 var $to, $subject, $body, $replyto, $from;
142 var $user, $title, $timestamp, $summary, $minorEdit, $oldid;
143
144 /**#@-*/
145
146 /**
147 * @todo document
148 * @param $currentPage
149 * @param $currentNs
150 * @param $timestamp
151 * @param $currentSummary
152 * @param $currentMinorEdit
153 * @param $oldid (default: false)
154 */
155 function notifyOnPageChange(&$title, $timestamp, $summary, $minorEdit, $oldid=false) {
156
157 # we use $wgEmergencyContact as sender's address
158 global $wgUser, $wgLang, $wgEmergencyContact;
159 global $wgEnotifWatchlist, $wgEnotifMinorEdits;
160 global $wgEnotifUserTalk;
161 global $wgEnotifRevealEditorAddress;
162 global $wgEnotifFromEditor;
163 global $wgEmailAuthentication;
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 if ( ($enotifusertalkpage || $enotifwatchlistpage) && (!$minorEdit || $wgEnotifMinorEdits) ) {
177 $dbr =& wfGetDB( DB_MASTER );
178 extract( $dbr->tableNames( 'watchlist' ) );
179 $res = $dbr->select( 'watchlist', array( 'wl_user' ),
180 array(
181 'wl_title' => $title->getDBkey(),
182 'wl_namespace' => $title->getNamespace(),
183 'wl_user <> ' . $wgUser->getID(),
184 'wl_notificationtimestamp <= 1',
185 ), $fname );
186
187 # if anyone is watching ... set up the email message text which is
188 # common for all receipients ...
189 if ( $dbr->numRows( $res ) > 0 ) {
190 $this->user &= $wgUser;
191 $this->title =& $title;
192 $this->timestamp = $timestamp;
193 $this->summary = $summary;
194 $this->minorEdit = $minorEdit;
195 $this->oldid = $oldid;
196
197 $this->composeCommonMailtext();
198 $watchingUser = new User();
199
200 # ... now do for all watching users ... if the options fit
201 for ($i = 1; $i <= $dbr->numRows( $res ); $i++) {
202
203 $wuser = $dbr->fetchObject( $res );
204 $watchingUser->setID($wuser->wl_user);
205 if ( ( $enotifwatchlistpage && $watchingUser->getOption('enotifwatchlistpages') ) ||
206 ( $enotifusertalkpage && $watchingUser->getOption('enotifusertalkpages') )
207 && (!$minorEdit || ($wgEnotifMinorEdits && $watchingUser->getOption('enotifminoredits') ) )
208 && ($watchingUser->isEmailConfirmed() ) ) {
209 # ... adjust remaining text and page edit time placeholders
210 # which needs to be personalized for each user
211 $this->composeAndSendPersonalisedMail( $watchingUser );
212
213 } # if the watching user has an email address in the preferences
214 }
215
216 # mark the changed watch-listed page with a timestamp, so that the page is
217 # listed with an "updated since your last visit" icon in the watch list, ...
218 $dbw =& wfGetDB( DB_MASTER );
219 $success = $dbw->update( 'watchlist',
220 array( /* SET */
221 'wl_notificationtimestamp' => $timestamp
222 ), array( /* WHERE */
223 'wl_title' => $title->getDBkey(),
224 'wl_namespace' => $title->getNamespace(),
225 ), 'UserMailer::NotifyOnChange'
226 );
227 } # if anyone is watching
228 } # if $wgEnotifWatchlist = true
229 } # function NotifyOnChange
230
231 /**
232 * @access private
233 */
234 function composeCommonMailtext() {
235 global $wgLang, $wgUser, $wgEmergencyContact;
236 global $wgEnotifRevealEditorAddress;
237 global $wgEnotifFromEditor;
238 global $wgNoReplyAddress;
239
240 $summary = ($this->summary == '') ? ' - ' : $this->summary;
241 $medit = ($this->minorEdit) ? wfMsg( 'minoredit' ) : '';
242
243 # You as the WikiAdmin and Sysops can make use of plenty of
244 # named variables when composing your notification emails while
245 # simply editing the Meta pages
246
247 $subject = wfMsgForContent( 'enotif_subject' );
248 $body = wfMsgForContent( 'enotif_body' );
249 $from = ''; /* fail safe */
250 $replyto = ''; /* fail safe */
251 $keys = array();
252
253 # regarding the use of oldid as an indicator for the last visited version, see also
254 # http://bugzilla.wikipeda.org/show_bug.cgi?id=603 "Delete + undelete cycle doesn't preserve old_id"
255 # However, in the case of a new page which is already watched, we have no previous version to compare
256 if( $this->oldid ) {
257 $keys['$NEWPAGE'] = wfMsgForContent( 'enotif_lastvisited' );
258 $keys['$OLDID'] = $this->oldid;
259 $keys['$CHANGEDORCREATED'] = wfMsgForContent( 'changed' );
260 } else {
261 $keys['$NEWPAGE'] = wfMsgForContent( 'enotif_newpagetext' );
262 # clear $OLDID placeholder in the message template
263 $keys['$OLDID'] = '';
264 $keys['$CHANGEDORCREATED'] = wfMsgForContent( 'created' );
265 }
266
267 $body = strtr( $body, $keys );
268 $pagetitle = $this->title->getPrefixedText();
269
270 $keys['%24PAGETITLE_RAWURL'] = wfUrlencode( $pagetitle );
271 $keys['$PAGETITLE_RAWURL'] = wfUrlencode( $pagetitle );
272 $keys['%24PAGETITLE'] = $pagetitle; # needed for the {{localurl:$PAGETITLE}} in the messagetext, "$" appears here as "%24"
273 $keys['$PAGETITLE'] = $pagetitle;
274 $keys['$PAGETIMESTAMP'] = $article->mTimestamp; # this is the raw internal timestamp - can be useful, too
275 $keys['$PAGEMINOREDIT'] = $medit;
276 $keys['$PAGESUMMARY'] = $summary;
277
278 $subject = strtr( $subject, $keys );
279
280 # Reveal the page editor's address as REPLY-TO address only if
281 # the user has not opted-out and the option is enabled at the
282 # global configuration level.
283 $name = $wgUser->getName();
284 $adminAddress = 'WikiAdmin <' . $wgEmergencyContact . '>';
285 $editorAddress = wfRFC822Phrase( $name ) . ' <' . $wgUser->getEmail() . '>';
286 if( $wgEnotifRevealEditorAddress
287 && ( $wgUser->getEmail() != '' )
288 && $wgUser->getOption( 'enotifrevealaddr' ) ) {
289 if( $wgEnotifFromEditor ) {
290 $from = $editorAddress;
291 } else {
292 $from = $adminAddress;
293 $replyto = $editorAddress;
294 }
295 } else {
296 $from = $adminAddress;
297 $replyto = $wgNoReplyAddress;
298 }
299
300 if( $wgUser->isIP( $name ) ) {
301 #real anon (user:xxx.xxx.xxx.xxx)
302 $anon = $name . ' (anonymous user)';
303 $anonUrl = wfUrlencode( $name ) . ' (anonymous user)';
304 $subject = str_replace('$PAGEEDITOR', 'anonymous user '. $name, $subject);
305
306 $keys['$PAGEEDITOR_RAWURL'] = $anonUrl;
307 $keys['%24PAGEEDITOR_RAWURL'] = $anonUrl;
308 $keys['%24PAGEEDITORE'] = $anon;
309 $keys['$PAGEEDITOR'] = 'anonymous user ' . $name;
310 } else {
311 $subject = str_replace('$PAGEEDITOR', $name, $subject);
312 $keys['$PAGEEDITOR_RAWURL'] = wfUrlencode( $name );
313 $keys['%24PAGEEDITOR_RAWURL'] = wfUrlencode( $name );
314 $keys['%24PAGEEDITORE'] = $wgUser->getTitleKey();
315 $keys['$PAGEEDITOR'] = $name;
316 }
317 $body = strtr( $body, $keys );
318
319 # now save this as the constant user-independent part of the message
320 $this->from = $from;
321 $this->replyto = $replyto;
322 $this->subject = $subject;
323 $this->body = $body;
324 }
325
326
327
328 /**
329 * Does the per-user customizations to a notification e-mail (name,
330 * timestamp in proper timezone, etc) and sends it out.
331 * Returns true if the mail was sent successfully.
332 *
333 * @param User $watchingUser
334 * @param object $mail
335 * @return bool
336 * @access private
337 */
338 function composeAndSendPersonalisedMail( $watchingUser ) {
339 global $wgLang;
340 // From the PHP manual:
341 // Note: The to parameter cannot be an address in the form of "Something <someone@example.com>".
342 // The mail command will not parse this properly while talking with the MTA.
343 $to = $watchingUser->getEmail();
344 $body = str_replace( '$WATCHINGUSERNAME', $watchingUser->getName() , $this->body );
345
346 $timecorrection = $watchingUser->getOption( 'timecorrection' );
347 if( !$timecorrection ) {
348 # fail safe - I prefer it. TomGries
349 $timecorrection = '00:00';
350 }
351 # $PAGEEDITDATE is the time and date of the page change
352 # expressed in terms of individual local time of the notification
353 # recipient, i.e. watching user
354 $body = str_replace('$PAGEEDITDATE',
355 $wgLang->timeanddate( $this->timestamp, true, false, $timecorrection ),
356 $body);
357
358 $error = userMailer( $to, $this->from, $this->subject, $body, $this->replyto );
359 return ($error == '');
360 }
361
362 } # end of class EmailNotification
363 ?>