fix subpage linking
[mediawiki.git] / includes / api / ApiEmailUser.php
blobd9eed60ceec621cfd36bc769574d6d0901919f90
1 <?php
2 /**
5 * Created on June 1, 2008
7 * Copyright © 2008 Bryan Tong Minh <Bryan.TongMinh@Gmail.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
24 * @file
27 /**
28 * API Module to facilitate sending of emails to users
29 * @ingroup API
31 class ApiEmailUser extends ApiBase {
33 public function __construct( $main, $action ) {
34 parent::__construct( $main, $action );
37 public function execute() {
38 $params = $this->extractRequestParams();
40 // Validate target
41 $targetUser = SpecialEmailUser::getTarget( $params['target'] );
42 if ( !( $targetUser instanceof User ) ) {
43 $this->dieUsageMsg( array( $targetUser ) );
46 // Check permissions and errors
47 $error = SpecialEmailUser::getPermissionsError( $this->getUser(), $params['token'] );
48 if ( $error ) {
49 $this->dieUsageMsg( array( $error ) );
52 $data = array(
53 'Target' => $targetUser->getName(),
54 'Text' => $params['text'],
55 'Subject' => $params['subject'],
56 'CCMe' => $params['ccme'],
58 $retval = SpecialEmailUser::submit( $data );
60 if ( $retval instanceof Status ) {
61 // SpecialEmailUser sometimes returns a status
62 // sometimes it doesn't.
63 if ( $retval->isGood() ) {
64 $retval = true;
65 } else {
66 $retval = $retval->getErrorsArray();
70 if ( $retval === true ) {
71 $result = array( 'result' => 'Success' );
72 } else {
73 $result = array(
74 'result' => 'Failure',
75 'message' => $retval
79 $this->getResult()->addValue( null, $this->getModuleName(), $result );
82 public function mustBePosted() {
83 return true;
86 public function isWriteMode() {
87 return true;
90 public function getAllowedParams() {
91 return array(
92 'target' => array(
93 ApiBase::PARAM_TYPE => 'string',
94 ApiBase::PARAM_REQUIRED => true
96 'subject' => null,
97 'text' => array(
98 ApiBase::PARAM_TYPE => 'string',
99 ApiBase::PARAM_REQUIRED => true
101 'token' => null,
102 'ccme' => false,
106 public function getParamDescription() {
107 return array(
108 'target' => 'User to send email to',
109 'subject' => 'Subject header',
110 'text' => 'Mail body',
111 'token' => 'A token previously acquired via prop=info',
112 'ccme' => 'Send a copy of this mail to me',
116 public function getDescription() {
117 return 'Email a user.';
120 public function getPossibleErrors() {
121 return array_merge( parent::getPossibleErrors(), array(
122 array( 'usermaildisabled' ),
123 ) );
126 public function needsToken() {
127 return true;
130 public function getTokenSalt() {
131 return '';
134 public function getExamples() {
135 return array(
136 'api.php?action=emailuser&target=WikiSysop&text=Content' => 'Send an email to the User "WikiSysop" with the text "Content"',
140 public function getHelpUrls() {
141 return 'https://www.mediawiki.org/wiki/API:E-mail';
144 public function getVersion() {
145 return __CLASS__ . ': $Id$';