MediaWiki  1.33.0
ApiUndelete.php
Go to the documentation of this file.
1 <?php
26 class ApiUndelete extends ApiBase {
27 
28  public function execute() {
30 
31  $params = $this->extractRequestParams();
32 
33  $user = $this->getUser();
34  $block = $user->getBlock();
35  if ( $block && $block->isSitewide() ) {
36  $this->dieBlocked( $user->getBlock() );
37  }
38 
39  $titleObj = Title::newFromText( $params['title'] );
40  if ( !$titleObj || $titleObj->isExternal() ) {
41  $this->dieWithError( [ 'apierror-invalidtitle', wfEscapeWikiText( $params['title'] ) ] );
42  }
43 
44  if ( !$titleObj->userCan( 'undelete', $user, 'secure' ) ) {
45  $this->dieWithError( 'permdenied-undelete' );
46  }
47 
48  // Check if user can add tags
49  if ( !is_null( $params['tags'] ) ) {
51  if ( !$ableToTag->isOK() ) {
52  $this->dieStatus( $ableToTag );
53  }
54  }
55 
56  // Convert timestamps
57  if ( !isset( $params['timestamps'] ) ) {
58  $params['timestamps'] = [];
59  }
60  if ( !is_array( $params['timestamps'] ) ) {
61  $params['timestamps'] = [ $params['timestamps'] ];
62  }
63  foreach ( $params['timestamps'] as $i => $ts ) {
64  $params['timestamps'][$i] = wfTimestamp( TS_MW, $ts );
65  }
66 
67  $pa = new PageArchive( $titleObj, $this->getConfig() );
68  $retval = $pa->undelete(
69  ( $params['timestamps'] ?? [] ),
70  $params['reason'],
71  $params['fileids'],
72  false,
73  $user,
74  $params['tags']
75  );
76  if ( !is_array( $retval ) ) {
77  $this->dieWithError( 'apierror-cantundelete' );
78  }
79 
80  if ( $retval[1] ) {
81  Hooks::run( 'FileUndeleteComplete',
82  [ $titleObj, $params['fileids'], $this->getUser(), $params['reason'] ] );
83  }
84 
85  $this->setWatch( $params['watchlist'], $titleObj );
86 
87  $info['title'] = $titleObj->getPrefixedText();
88  $info['revisions'] = (int)$retval[0];
89  $info['fileversions'] = (int)$retval[1];
90  $info['reason'] = $retval[2];
91  $this->getResult()->addValue( null, $this->getModuleName(), $info );
92  }
93 
94  public function mustBePosted() {
95  return true;
96  }
97 
98  public function isWriteMode() {
99  return true;
100  }
101 
102  public function getAllowedParams() {
103  return [
104  'title' => [
105  ApiBase::PARAM_TYPE => 'string',
107  ],
108  'reason' => '',
109  'tags' => [
110  ApiBase::PARAM_TYPE => 'tags',
111  ApiBase::PARAM_ISMULTI => true,
112  ],
113  'timestamps' => [
114  ApiBase::PARAM_TYPE => 'timestamp',
115  ApiBase::PARAM_ISMULTI => true,
116  ],
117  'fileids' => [
118  ApiBase::PARAM_TYPE => 'integer',
119  ApiBase::PARAM_ISMULTI => true,
120  ],
121  'watchlist' => [
122  ApiBase::PARAM_DFLT => 'preferences',
124  'watch',
125  'unwatch',
126  'preferences',
127  'nochange'
128  ],
129  ],
130  ];
131  }
132 
133  public function needsToken() {
134  return 'csrf';
135  }
136 
137  protected function getExamplesMessages() {
138  return [
139  'action=undelete&title=Main%20Page&token=123ABC&reason=Restoring%20main%20page'
140  => 'apihelp-undelete-example-page',
141  'action=undelete&title=Main%20Page&token=123ABC' .
142  '&timestamps=2007-07-03T22:00:45Z|2007-07-02T19:48:56Z'
143  => 'apihelp-undelete-example-revisions',
144  ];
145  }
146 
147  public function getHelpUrls() {
148  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Undelete';
149  }
150 }
ContextSource\getConfig
getConfig()
Definition: ContextSource.php:63
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:306
ApiBase\PARAM_REQUIRED
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition: ApiBase.php:111
ApiUndelete\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiUndelete.php:102
PageArchive
Used to show archived pages and eventually restore them.
Definition: PageArchive.php:32
ApiBase\dieWithError
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition: ApiBase.php:1990
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1912
ApiUndelete\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiUndelete.php:137
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:87
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:632
$params
$params
Definition: styleTest.css.php:44
ContextSource\getUser
getUser()
Definition: ContextSource.php:120
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ApiBase
This abstract class implements many basic API functions, and is the base of all API classes.
Definition: ApiBase.php:37
ApiBase\dieBlocked
dieBlocked(Block $block)
Throw an ApiUsageException, which will (if uncaught) call the main module's error handler and die wit...
Definition: ApiBase.php:2030
ApiUndelete\needsToken
needsToken()
Returns the token type this module requires in order to execute.
Definition: ApiUndelete.php:133
ApiUndelete\execute
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
Definition: ApiUndelete.php:28
ApiBase\extractRequestParams
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:743
ApiUndelete
Definition: ApiUndelete.php:26
ApiUndelete\isWriteMode
isWriteMode()
Indicates whether this module requires write mode.
Definition: ApiUndelete.php:98
ApiBase\setWatch
setWatch( $watch, $titleObj, $userOption=null)
Set a watch (or unwatch) based the based on a watchlist parameter.
Definition: ApiBase.php:1726
ApiBase\useTransactionalTimeLimit
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
Definition: ApiBase.php:1847
wfEscapeWikiText
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
Definition: GlobalFunctions.php:1577
ChangeTags\canAddTagsAccompanyingChange
static canAddTagsAccompanyingChange(array $tags, User $user=null)
Is it OK to allow the user to apply all the specified tags at the same time as they edit/make the cha...
Definition: ChangeTags.php:481
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:48
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
ApiBase\dieStatus
dieStatus(StatusValue $status)
Throw an ApiUsageException based on the Status object.
Definition: ApiBase.php:2061
ApiBase\getModuleName
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:512
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:51
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1985
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
ApiUndelete\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiUndelete.php:147
ApiUndelete\mustBePosted
mustBePosted()
Indicates whether this module must be called with a POST request.
Definition: ApiUndelete.php:94