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
28 * API Module to facilitate sending of emails to users
31 class ApiEmailUser
extends ApiBase
{
33 public function execute() {
34 $params = $this->extractRequestParams();
37 $targetUser = SpecialEmailUser
::getTarget( $params['target'] );
38 if ( !( $targetUser instanceof User
) ) {
39 $this->dieUsageMsg( [ $targetUser ] );
42 // Check permissions and errors
43 $error = SpecialEmailUser
::getPermissionsError(
49 $this->dieUsageMsg( [ $error ] );
53 'Target' => $targetUser->getName(),
54 'Text' => $params['text'],
55 'Subject' => $params['subject'],
56 'CCMe' => $params['ccme'],
58 $retval = SpecialEmailUser
::submit( $data, $this->getContext() );
60 if ( $retval instanceof Status
) {
61 // SpecialEmailUser sometimes returns a status
62 // sometimes it doesn't.
63 if ( $retval->isGood() ) {
66 $retval = $retval->getErrorsArray();
70 if ( $retval === true ) {
71 $result = [ 'result' => 'Success' ];
74 'result' => 'Failure',
79 $this->getResult()->addValue( null, $this->getModuleName(), $result );
82 public function mustBePosted() {
86 public function isWriteMode() {
90 public function getAllowedParams() {
93 ApiBase
::PARAM_TYPE
=> 'string',
94 ApiBase
::PARAM_REQUIRED
=> true
98 ApiBase
::PARAM_TYPE
=> 'text',
99 ApiBase
::PARAM_REQUIRED
=> true
105 public function needsToken() {
109 protected function getExamplesMessages() {
111 'action=emailuser&target=WikiSysop&text=Content&token=123ABC'
112 => 'apihelp-emailuser-example-email',
116 public function getHelpUrls() {
117 return 'https://www.mediawiki.org/wiki/API:Email';