40 parent::__construct( $mainModule, $moduleName );
42 $this->emailUserFactory = $emailUserFactory;
43 $this->userFactory = $userFactory;
49 $emailUser = $this->emailUserFactory->newEmailUser( RequestContext::getMain()->
getAuthority() );
50 $targetUser = $this->userFactory->newFromName(
$params[
'target'] );
52 if ( $targetUser ===
null ) {
59 $status = $emailUser->validateTarget( $targetUser );
61 if ( !$status->isOK() ) {
66 $error = $emailUser->canSend();
68 if ( !$error->isGood() ) {
72 $retval = $emailUser->sendEmailUnsafe(
80 if ( !$retval instanceof
Status ) {
82 $retval = Status::newFatal(
'hookaborted' );
85 $result = array_filter( [
86 'result' => $retval->isGood() ?
'Success' : ( $retval->isOK() ?
'Warnings' :
'Failure' ),
105 ParamValidator::PARAM_TYPE =>
'string',
106 ParamValidator::PARAM_REQUIRED => true
109 ParamValidator::PARAM_TYPE =>
'string',
110 ParamValidator::PARAM_REQUIRED => true
113 ParamValidator::PARAM_TYPE =>
'text',
114 ParamValidator::PARAM_REQUIRED => true
126 'action=emailuser&target=WikiSysop&text=Content&token=123ABC'
127 =>
'apihelp-emailuser-example-email',
132 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Email';
wfEscapeWikiText( $input)
Escapes the given text so that it may be output using addWikiText() without any linking,...
array $params
The job parameters.
This abstract class implements many basic API functions, and is the base of all API classes.
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getModuleName()
Get the name of the module being executed by this instance.
dieStatus(StatusValue $status)
Throw an ApiUsageException based on the Status object.
API Module to facilitate sending of emails to users.
needsToken()
Returns the token type this module requires in order to execute.
getHelpUrls()
Return links to more detailed help pages about the module.
isWriteMode()
Indicates whether this module requires write access to the wiki.
mustBePosted()
Indicates whether this module must be called with a POST request.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiMain $mainModule, $moduleName, EmailUserFactory $emailUserFactory, UserFactory $userFactory)
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getExamplesMessages()
Returns usage examples for this module.
This is the main API class, used for both external and internal processing.
Group all the pieces relevant to the context of a request into one instance.