46 $sourceUrl = $this->file->getArchiveVirtualUrl( $this->archiveName );
47 $status = $this->file->upload(
49 $this->params[
'comment'],
50 $this->params[
'comment'],
57 if ( $status->isGood() ) {
58 $result = [
'result' =>
'Success' ];
61 'result' =>
'Failure',
75 $title = Title::makeTitleSafe(
NS_FILE, $this->params[
'filename'] );
81 $localRepo = RepoGroup::singleton()->getLocalRepo();
84 $this->file = $localRepo->newFile(
$title );
85 if ( !$this->file->exists() ) {
90 $this->archiveName = $this->params[
'archivename'];
91 $oldFile = $localRepo->newFromArchiveName(
$title, $this->archiveName );
92 if ( !$oldFile->exists() ) {
127 'action=filerevert&filename=Wiki.png&comment=Revert&' .
128 'archivename=20110305152740!Wiki.png&token=123ABC'
129 =>
'apihelp-filerevert-example-revert',
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
This abstract class implements many basic API functions, and is the base of all API classes.
const PARAM_REQUIRED
(boolean) Is the parameter required?
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
checkTitleUserPermissions(LinkTarget $linkTarget, $actions, $options=[])
Helper function for permission-denied errors.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getErrorFormatter()
Get the error formatter.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
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.
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
isWriteMode()
Indicates whether this module requires write mode.
validateParameters()
Validate the user parameters and set $this->archiveName and $this->file.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
mustBePosted()
Indicates whether this module must be called with a POST request.
needsToken()
Returns the token type this module requires in order to execute.
getExamplesMessages()
Returns usage examples for this module.
Class to represent a local file in the wiki's own database.