* Converted UserMailer stuff to return a Status object instead of true-or-WikiError
[lhc/web/wiklou.git] / includes / specials / SpecialEmailuser.php
1 <?php
2 /**
3 * Implements Special:Emailuser
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 * @ingroup SpecialPage
22 */
23
24 /**
25 * A special page that allows users to send e-mails to other users
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialEmailUser extends UnlistedSpecialPage {
30 protected $mTarget;
31
32 public function __construct(){
33 parent::__construct( 'Emailuser' );
34 }
35
36 protected function getFormFields(){
37 global $wgUser;
38 return array(
39 'From' => array(
40 'type' => 'info',
41 'raw' => 1,
42 'default' => $wgUser->getSkin()->link(
43 $wgUser->getUserPage(),
44 htmlspecialchars( $wgUser->getName() )
45 ),
46 'label-message' => 'emailfrom',
47 'id' => 'mw-emailuser-sender',
48 ),
49 'To' => array(
50 'type' => 'info',
51 'raw' => 1,
52 'default' => $wgUser->getSkin()->link(
53 $this->mTargetObj->getUserPage(),
54 htmlspecialchars( $this->mTargetObj->getName() )
55 ),
56 'label-message' => 'emailto',
57 'id' => 'mw-emailuser-recipient',
58 ),
59 'Target' => array(
60 'name' => 'wpTarget',
61 'type' => 'hidden',
62 'default' => $this->mTargetObj->getName(),
63 ),
64 'Subject' => array(
65 'type' => 'text',
66 'default' => wfMsgExt( 'defemailsubject', array( 'content', 'parsemag' ) ),
67 'label-message' => 'emailsubject',
68 'maxlength' => 200,
69 'size' => 60,
70 'required' => 1,
71 ),
72 'Text' => array(
73 'type' => 'textarea',
74 'rows' => 20,
75 'cols' => 80,
76 'label-message' => 'emailmessage',
77 'required' => 1,
78 ),
79 'CCMe' => array(
80 'type' => 'check',
81 'label-message' => 'emailccme',
82 'default' => $wgUser->getBoolOption( 'ccmeonemails' ),
83 ),
84 );
85 }
86
87 public function execute( $par ) {
88 global $wgRequest, $wgOut, $wgUser;
89
90 $this->setHeaders();
91 $this->outputHeader();
92
93 $this->mTarget = is_null( $par )
94 ? $wgRequest->getVal( 'wpTarget', '' )
95 : $par;
96
97 $ret = self::getTarget( $this->mTarget );
98 if( $ret instanceof User ){
99 $this->mTargetObj = $ret;
100 } else {
101 $wgOut->showErrorPage( "{$ret}title", "{$ret}text" );
102 return false;
103 }
104
105 $error = self::getPermissionsError( $wgUser, $wgRequest->getVal( 'wpEditToken' ) );
106 switch ( $error ) {
107 case null:
108 # Wahey!
109 break;
110 case 'badaccess':
111 $wgOut->permissionRequired( 'sendemail' );
112 return;
113 case 'blockedemailuser':
114 $wgOut->blockedPage();
115 return;
116 case 'actionthrottledtext':
117 $wgOut->rateLimited();
118 return;
119 case 'mailnologin':
120 case 'usermaildisabled':
121 $wgOut->showErrorPage( $error, "{$error}text" );
122 return;
123 default:
124 # It's a hook error
125 list( $title, $msg, $params ) = $error;
126 $wgOut->showErrorPage( $title, $msg, $params );
127 return;
128 }
129
130 $form = new HTMLForm( $this->getFormFields() );
131 $form->addPreText( wfMsgExt( 'emailpagetext', 'parseinline' ) );
132 $form->setSubmitText( wfMsg( 'emailsend' ) );
133 $form->setTitle( $this->getTitle() );
134 $form->setSubmitCallback( array( __CLASS__, 'submit' ) );
135 $form->setWrapperLegend( wfMsgExt( 'email-legend', 'parsemag' ) );
136 $form->loadData();
137
138 if( !wfRunHooks( 'EmailUserForm', array( &$form ) ) ){
139 return false;
140 }
141
142 $wgOut->setPagetitle( wfMsg( 'emailpage' ) );
143 $result = $form->show();
144
145 if( $result === true || ( $result instanceof Status && $result->isGood() ) ){
146 $wgOut->setPagetitle( wfMsg( 'emailsent' ) );
147 $wgOut->addWikiMsg( 'emailsenttext' );
148 $wgOut->returnToMain( false, $this->mTargetObj->getUserPage() );
149 }
150 }
151
152 /**
153 * Validate target User
154 *
155 * @param $target String: target user name
156 * @return User object on success or a string on error
157 */
158 public static function getTarget( $target ) {
159 if ( $target == '' ) {
160 wfDebug( "Target is empty.\n" );
161 return 'notarget';
162 }
163
164 $nu = User::newFromName( $target );
165 if( !$nu instanceof User || !$nu->getId() ) {
166 wfDebug( "Target is invalid user.\n" );
167 return 'notarget';
168 } else if ( !$nu->isEmailConfirmed() ) {
169 wfDebug( "User has no valid email.\n" );
170 return 'noemail';
171 } else if ( !$nu->canReceiveEmail() ) {
172 wfDebug( "User does not allow user emails.\n" );
173 return 'nowikiemail';
174 }
175
176 return $nu;
177 }
178
179 /**
180 * Check whether a user is allowed to send email
181 *
182 * @param $user User object
183 * @param $editToken String: edit token
184 * @return null on success or string on error
185 */
186 public static function getPermissionsError( $user, $editToken ) {
187 global $wgEnableEmail, $wgEnableUserEmail;
188 if( !$wgEnableEmail || !$wgEnableUserEmail ){
189 return 'usermaildisabled';
190 }
191
192 if( !$user->isAllowed( 'sendemail' ) ) {
193 return 'badaccess';
194 }
195
196 if( !$user->isEmailConfirmed() ){
197 return 'mailnologin';
198 }
199
200 if( $user->isBlockedFromEmailuser() ) {
201 wfDebug( "User is blocked from sending e-mail.\n" );
202 return "blockedemailuser";
203 }
204
205 if( $user->pingLimiter( 'emailuser' ) ) {
206 wfDebug( "Ping limiter triggered.\n" );
207 return 'actionthrottledtext';
208 }
209
210 $hookErr = false;
211 wfRunHooks( 'UserCanSendEmail', array( &$user, &$hookErr ) );
212 wfRunHooks( 'EmailUserPermissionsErrors', array( $user, $editToken, &$hookErr ) );
213 if ( $hookErr ) {
214 return $hookErr;
215 }
216
217 return null;
218 }
219
220 /**
221 * Really send a mail. Permissions should have been checked using
222 * getPermissionsError(). It is probably also a good
223 * idea to check the edit token and ping limiter in advance.
224 *
225 * @return Mixed: True on success, String on error
226 */
227 public static function submit( $data ) {
228 global $wgUser, $wgUserEmailUseReplyTo;
229
230 $target = self::getTarget( $data['Target'] );
231 if( !$target instanceof User ){
232 return wfMsgExt( $target . 'text', 'parse' );
233 }
234 $to = new MailAddress( $target );
235 $from = new MailAddress( $wgUser );
236 $subject = $data['Subject'];
237 $text = $data['Text'];
238
239 // Add a standard footer and trim up trailing newlines
240 $text = rtrim( $text ) . "\n\n-- \n";
241 $text .= wfMsgExt(
242 'emailuserfooter',
243 array( 'content', 'parsemag' ),
244 array( $from->name, $to->name )
245 );
246
247 $error = '';
248 if( !wfRunHooks( 'EmailUser', array( &$to, &$from, &$subject, &$text, &$error ) ) ) {
249 return $error;
250 }
251
252 if( $wgUserEmailUseReplyTo ) {
253 // Put the generic wiki autogenerated address in the From:
254 // header and reserve the user for Reply-To.
255 //
256 // This is a bit ugly, but will serve to differentiate
257 // wiki-borne mails from direct mails and protects against
258 // SPF and bounce problems with some mailers (see below).
259 global $wgPasswordSender, $wgPasswordSenderName;
260 $mailFrom = new MailAddress( $wgPasswordSender, $wgPasswordSenderName );
261 $replyTo = $from;
262 } else {
263 // Put the sending user's e-mail address in the From: header.
264 //
265 // This is clean-looking and convenient, but has issues.
266 // One is that it doesn't as clearly differentiate the wiki mail
267 // from "directly" sent mails.
268 //
269 // Another is that some mailers (like sSMTP) will use the From
270 // address as the envelope sender as well. For open sites this
271 // can cause mails to be flunked for SPF violations (since the
272 // wiki server isn't an authorized sender for various users'
273 // domains) as well as creating a privacy issue as bounces
274 // containing the recipient's e-mail address may get sent to
275 // the sending user.
276 $mailFrom = $from;
277 $replyTo = null;
278 }
279
280 $status = UserMailer::send( $to, $mailFrom, $subject, $text, $replyTo );
281
282 if( !$status->isGood() && false ) {
283 return $status;
284 } else {
285 // if the user requested a copy of this mail, do this now,
286 // unless they are emailing themselves, in which case one
287 // copy of the message is sufficient.
288 if ( $data['CCMe'] && $to != $from ) {
289 $cc_subject = wfMsg(
290 'emailccsubject',
291 $target->getName(),
292 $subject
293 );
294 wfRunHooks( 'EmailUserCC', array( &$from, &$from, &$cc_subject, &$text ) );
295 $ccStatus = UserMailer::send( $from, $from, $cc_subject, $text );
296 $status->merge( $ccStatus );
297 }
298
299 wfRunHooks( 'EmailUserComplete', array( $to, $from, $subject, $text ) );
300 return $status;
301 }
302 }
303 }