3 * Implements Special:Emailuser
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.
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.
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
21 * @ingroup SpecialPage
23 use MediaWiki\MediaWikiServices
;
26 * A special page that allows users to send e-mails to other users
28 * @ingroup SpecialPage
30 class SpecialEmailUser
extends UnlistedSpecialPage
{
34 * @var User|string $mTargetObj
36 protected $mTargetObj;
38 public function __construct() {
39 parent
::__construct( 'Emailuser' );
42 public function doesWrites() {
46 public function getDescription() {
47 $target = self
::getTarget( $this->mTarget
);
48 if ( !$target instanceof User
) {
49 return $this->msg( 'emailuser-title-notarget' )->text();
52 return $this->msg( 'emailuser-title-target', $target->getName() )->text();
55 protected function getFormFields() {
56 $linkRenderer = $this->getLinkRenderer();
61 'default' => $linkRenderer->makeLink(
62 $this->getUser()->getUserPage(),
63 $this->getUser()->getName()
65 'label-message' => 'emailfrom',
66 'id' => 'mw-emailuser-sender',
71 'default' => $linkRenderer->makeLink(
72 $this->mTargetObj
->getUserPage(),
73 $this->mTargetObj
->getName()
75 'label-message' => 'emailto',
76 'id' => 'mw-emailuser-recipient',
80 'default' => $this->mTargetObj
->getName(),
84 'default' => $this->msg( 'defemailsubject',
85 $this->getUser()->getName() )->inContentLanguage()->text(),
86 'label-message' => 'emailsubject',
95 'label-message' => 'emailmessage',
100 'label-message' => 'emailccme',
101 'default' => $this->getUser()->getBoolOption( 'ccmeonemails' ),
106 public function execute( $par ) {
107 $out = $this->getOutput();
108 $out->addModuleStyles( 'mediawiki.special' );
110 $this->mTarget
= is_null( $par )
111 ?
$this->getRequest()->getVal( 'wpTarget', $this->getRequest()->getVal( 'target', '' ) )
114 // This needs to be below assignment of $this->mTarget because
115 // getDescription() needs it to determine the correct page title.
117 $this->outputHeader();
119 // error out if sending user cannot do this
120 $error = self
::getPermissionsError(
122 $this->getRequest()->getVal( 'wpEditToken' ),
131 throw new PermissionsError( 'sendemail' );
132 case 'blockedemailuser':
133 throw new UserBlockedError( $this->getUser()->mBlock
);
134 case 'actionthrottledtext':
135 throw new ThrottledError
;
137 case 'usermaildisabled':
138 throw new ErrorPageError( $error, "{$error}text" );
141 list( $title, $msg, $params ) = $error;
142 throw new ErrorPageError( $title, $msg, $params );
144 // Got a valid target user name? Else ask for one.
145 $ret = self
::getTarget( $this->mTarget
);
146 if ( !$ret instanceof User
) {
147 if ( $this->mTarget
!= '' ) {
148 // Messages used here: notargettext, noemailtext, nowikiemailtext
149 $ret = ( $ret == 'notarget' ) ?
'emailnotarget' : ( $ret . 'text' );
150 $out->wrapWikiMsg( "<p class='error'>$1</p>", $ret );
152 $out->addHTML( $this->userForm( $this->mTarget
) );
157 $this->mTargetObj
= $ret;
159 // Set the 'relevant user' in the skin, so it displays links like Contributions,
160 // User logs, UserRights, etc.
161 $this->getSkin()->setRelevantUser( $this->mTargetObj
);
163 $context = new DerivativeContext( $this->getContext() );
164 $context->setTitle( $this->getPageTitle() ); // Remove subpage
165 $form = new HTMLForm( $this->getFormFields(), $context );
166 // By now we are supposed to be sure that $this->mTarget is a user name
167 $form->addPreText( $this->msg( 'emailpagetext', $this->mTarget
)->parse() );
168 $form->setSubmitTextMsg( 'emailsend' );
169 $form->setSubmitCallback( [ __CLASS__
, 'uiSubmit' ] );
170 $form->setWrapperLegendMsg( 'email-legend' );
173 if ( !Hooks
::run( 'EmailUserForm', [ &$form ] ) ) {
177 $result = $form->show();
179 if ( $result === true ||
( $result instanceof Status
&& $result->isGood() ) ) {
180 $out->setPageTitle( $this->msg( 'emailsent' ) );
181 $out->addWikiMsg( 'emailsenttext', $this->mTarget
);
182 $out->returnToMain( false, $this->mTargetObj
->getUserPage() );
187 * Validate target User
189 * @param string $target Target user name
190 * @return User User object on success or a string on error
192 public static function getTarget( $target ) {
193 if ( $target == '' ) {
194 wfDebug( "Target is empty.\n" );
199 $nu = User
::newFromName( $target );
200 if ( !$nu instanceof User ||
!$nu->getId() ) {
201 wfDebug( "Target is invalid user.\n" );
204 } elseif ( !$nu->isEmailConfirmed() ) {
205 wfDebug( "User has no valid email.\n" );
208 } elseif ( !$nu->canReceiveEmail() ) {
209 wfDebug( "User does not allow user emails.\n" );
211 return 'nowikiemail';
218 * Check whether a user is allowed to send email
221 * @param string $editToken Edit token
222 * @param Config $config optional for backwards compatibility
223 * @return string|null Null on success or string on error
225 public static function getPermissionsError( $user, $editToken, Config
$config = null ) {
226 if ( $config === null ) {
227 wfDebug( __METHOD__
. ' called without a Config instance passed to it' );
228 $config = MediaWikiServices
::getInstance()->getMainConfig();
230 if ( !$config->get( 'EnableEmail' ) ||
!$config->get( 'EnableUserEmail' ) ) {
231 return 'usermaildisabled';
234 if ( !$user->isAllowed( 'sendemail' ) ) {
238 if ( !$user->isEmailConfirmed() ) {
239 return 'mailnologin';
242 if ( $user->isBlockedFromEmailuser() ) {
243 wfDebug( "User is blocked from sending e-mail.\n" );
245 return "blockedemailuser";
248 if ( $user->pingLimiter( 'emailuser' ) ) {
249 wfDebug( "Ping limiter triggered.\n" );
251 return 'actionthrottledtext';
256 Hooks
::run( 'UserCanSendEmail', [ &$user, &$hookErr ] );
257 Hooks
::run( 'EmailUserPermissionsErrors', [ $user, $editToken, &$hookErr ] );
267 * Form to ask for target user name.
269 * @param string $name User name submitted.
270 * @return string Form asking for user name.
272 protected function userForm( $name ) {
273 $this->getOutput()->addModules( 'mediawiki.userSuggest' );
274 $string = Html
::openElement(
276 [ 'method' => 'get', 'action' => wfScript(), 'id' => 'askusername' ]
278 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) .
279 Html
::openElement( 'fieldset' ) .
280 Html
::rawElement( 'legend', null, $this->msg( 'emailtarget' )->parse() ) .
282 $this->msg( 'emailusername' )->text(),
290 'id' => 'emailusertarget',
291 'class' => 'mw-autocomplete-user', // used by mediawiki.userSuggest
297 Html
::submitButton( $this->msg( 'emailusernamesubmit' )->text(), [] ) .
298 Html
::closeElement( 'fieldset' ) .
299 Html
::closeElement( 'form' ) . "\n";
305 * Submit callback for an HTMLForm object, will simply call submit().
309 * @param HTMLForm $form
310 * @return Status|bool
312 public static function uiSubmit( array $data, HTMLForm
$form ) {
313 return self
::submit( $data, $form->getContext() );
317 * Really send a mail. Permissions should have been checked using
318 * getPermissionsError(). It is probably also a good
319 * idea to check the edit token and ping limiter in advance.
322 * @param IContextSource $context
323 * @return Status|bool
325 public static function submit( array $data, IContextSource
$context ) {
326 $config = $context->getConfig();
328 $target = self
::getTarget( $data['Target'] );
329 if ( !$target instanceof User
) {
330 // Messages used here: notargettext, noemailtext, nowikiemailtext
331 return Status
::newFatal( $target . 'text' );
334 $to = MailAddress
::newFromUser( $target );
335 $from = MailAddress
::newFromUser( $context->getUser() );
336 $subject = $data['Subject'];
337 $text = $data['Text'];
339 // Add a standard footer and trim up trailing newlines
340 $text = rtrim( $text ) . "\n\n-- \n";
341 $text .= $context->msg( 'emailuserfooter',
342 $from->name
, $to->name
)->inContentLanguage()->text();
345 if ( !Hooks
::run( 'EmailUser', [ &$to, &$from, &$subject, &$text, &$error ] ) ) {
346 if ( $error instanceof Status
) {
348 } elseif ( $error === false ||
$error === '' ||
$error === [] ) {
349 // Possibly to tell HTMLForm to pretend there was no submission?
351 } elseif ( $error === true ) {
352 // Hook sent the mail itself and indicates success?
353 return Status
::newGood();
354 } elseif ( is_array( $error ) ) {
355 $status = Status
::newGood();
356 foreach ( $error as $e ) {
357 $status->fatal( $e );
360 } elseif ( $error instanceof MessageSpecifier
) {
361 return Status
::newFatal( $error );
363 // Ugh. Either a raw HTML string, or something that's supposed
364 // to be treated like one.
365 $type = is_object( $error ) ?
get_class( $error ) : gettype( $error );
366 wfDeprecated( "EmailUser hook returning a $type as \$error", '1.29' );
367 return Status
::newFatal( new ApiRawMessage(
368 [ '$1', Message
::rawParam( (string)$error ) ], 'hookaborted'
373 if ( $config->get( 'UserEmailUseReplyTo' ) ) {
375 * Put the generic wiki autogenerated address in the From:
376 * header and reserve the user for Reply-To.
378 * This is a bit ugly, but will serve to differentiate
379 * wiki-borne mails from direct mails and protects against
380 * SPF and bounce problems with some mailers (see below).
382 $mailFrom = new MailAddress( $config->get( 'PasswordSender' ),
383 wfMessage( 'emailsender' )->inContentLanguage()->text() );
387 * Put the sending user's e-mail address in the From: header.
389 * This is clean-looking and convenient, but has issues.
390 * One is that it doesn't as clearly differentiate the wiki mail
391 * from "directly" sent mails.
393 * Another is that some mailers (like sSMTP) will use the From
394 * address as the envelope sender as well. For open sites this
395 * can cause mails to be flunked for SPF violations (since the
396 * wiki server isn't an authorized sender for various users'
397 * domains) as well as creating a privacy issue as bounces
398 * containing the recipient's e-mail address may get sent to
405 $status = UserMailer
::send( $to, $mailFrom, $subject, $text, [
406 'replyTo' => $replyTo,
409 if ( !$status->isGood() ) {
412 // if the user requested a copy of this mail, do this now,
413 // unless they are emailing themselves, in which case one
414 // copy of the message is sufficient.
415 if ( $data['CCMe'] && $to != $from ) {
418 $ccSubject = $context->msg( 'emailccsubject' )->rawParams(
419 $target->getName(), $subject )->text();
422 Hooks
::run( 'EmailUserCC', [ &$ccTo, &$ccFrom, &$ccSubject, &$ccText ] );
424 if ( $config->get( 'UserEmailUseReplyTo' ) ) {
425 $mailFrom = new MailAddress(
426 $config->get( 'PasswordSender' ),
427 wfMessage( 'emailsender' )->inContentLanguage()->text()
435 $ccStatus = UserMailer
::send(
436 $ccTo, $mailFrom, $ccSubject, $ccText, [
437 'replyTo' => $replyTo,
439 $status->merge( $ccStatus );
442 Hooks
::run( 'EmailUserComplete', [ $to, $from, $subject, $text ] );
449 * Return an array of subpages beginning with $search that this special page will accept.
451 * @param string $search Prefix to search for
452 * @param int $limit Maximum number of results to return (usually 10)
453 * @param int $offset Number of results to skip (usually 0)
454 * @return string[] Matching subpages
456 public function prefixSearchSubpages( $search, $limit, $offset ) {
457 $user = User
::newFromName( $search );
459 // No prefix suggestion for invalid user
462 // Autocomplete subpage as user list - public to allow caching
463 return UserNamePrefixSearch
::search( 'public', $search, $limit, $offset );
466 protected function getGroupName() {