MediaWiki REL1_28
RollbackAction.php
Go to the documentation of this file.
1<?php
29
30 public function getName() {
31 return 'rollback';
32 }
33
34 public function getRestriction() {
35 return 'rollback';
36 }
37
49 public function onView() {
50 // TODO: use $this->useTransactionalTimeLimit(); when POST only
52
53 $request = $this->getRequest();
54 $user = $this->getUser();
55 $from = $request->getVal( 'from' );
56 $rev = $this->page->getRevision();
57 if ( $from === null ) {
58 throw new ErrorPageError( 'rollbackfailed', 'rollback-missingparam' );
59 }
60 if ( !$rev ) {
61 throw new ErrorPageError( 'rollbackfailed', 'rollback-missingrevision' );
62 }
63 if ( $from !== $rev->getUserText() ) {
64 throw new ErrorPageError( 'rollbackfailed', 'alreadyrolled', [
65 $this->getTitle()->getPrefixedText(),
66 $from,
67 $rev->getUserText()
68 ] );
69 }
70
71 $data = null;
72 $errors = $this->page->doRollback(
73 $from,
74 $request->getText( 'summary' ),
75 $request->getVal( 'token' ),
76 $request->getBool( 'bot' ),
77 $data,
78 $this->getUser()
79 );
80
81 if ( in_array( [ 'actionthrottledtext' ], $errors ) ) {
82 throw new ThrottledError;
83 }
84
85 if ( isset( $errors[0][0] ) &&
86 ( $errors[0][0] == 'alreadyrolled' || $errors[0][0] == 'cantrollback' )
87 ) {
88 $this->getOutput()->setPageTitle( $this->msg( 'rollbackfailed' ) );
89 $errArray = $errors[0];
90 $errMsg = array_shift( $errArray );
91 $this->getOutput()->addWikiMsgArray( $errMsg, $errArray );
92
93 if ( isset( $data['current'] ) ) {
95 $current = $data['current'];
96
97 if ( $current->getComment() != '' ) {
98 $this->getOutput()->addHTML( $this->msg( 'editcomment' )->rawParams(
99 Linker::formatComment( $current->getComment() ) )->parse() );
100 }
101 }
102
103 return;
104 }
105
106 # NOTE: Permission errors already handled by Action::checkExecute.
107 if ( $errors == [ [ 'readonlytext' ] ] ) {
108 throw new ReadOnlyError;
109 }
110
111 # XXX: Would be nice if ErrorPageError could take multiple errors, and/or a status object.
112 # Right now, we only show the first error
113 foreach ( $errors as $error ) {
114 throw new ErrorPageError( 'rollbackfailed', $error[0], array_slice( $error, 1 ) );
115 }
116
118 $current = $data['current'];
119 $target = $data['target'];
120 $newId = $data['newid'];
121 $this->getOutput()->setPageTitle( $this->msg( 'actioncomplete' ) );
122 $this->getOutput()->setRobotPolicy( 'noindex,nofollow' );
123
124 $old = Linker::revUserTools( $current );
125 $new = Linker::revUserTools( $target );
126 $this->getOutput()->addHTML( $this->msg( 'rollback-success' )->rawParams( $old, $new )
127 ->parseAsBlock() );
128
129 if ( $user->getBoolOption( 'watchrollback' ) ) {
130 $user->addWatch( $this->page->getTitle(), User::IGNORE_USER_RIGHTS );
131 }
132
133 $this->getOutput()->returnToMain( false, $this->getTitle() );
134
135 if ( !$request->getBool( 'hidediff', false ) &&
136 !$this->getUser()->getBoolOption( 'norollbackdiff' )
137 ) {
138 $contentHandler = $current->getContentHandler();
139 $de = $contentHandler->createDifferenceEngine(
140 $this->getContext(),
141 $current->getId(),
142 $newId,
143 false,
144 true
145 );
146 $de->showDiff( '', '' );
147 }
148 return;
149 }
150
151 protected function getDescription() {
152 return '';
153 }
154
155 public function doesWrites() {
156 return true;
157 }
158}
wfTransactionalTimeLimit()
Set PHP's time limit to the larger of php.ini or $wgTransactionalTimeLimit.
msg()
Get a Message object with context set Parameters are the same as wfMessage()
Definition Action.php:256
getTitle()
Shortcut to get the Title object from the page.
Definition Action.php:246
getContext()
Get the IContextSource in use here.
Definition Action.php:178
getOutput()
Get the OutputPage being used for this instance.
Definition Action.php:207
getUser()
Shortcut to get the User being used for this instance.
Definition Action.php:217
getRequest()
Get the WebRequest being used for this instance.
Definition Action.php:197
getUser()
Get the User object.
An error page which can definitely be safely rendered using the OutputPage.
An action which just does something, without showing a form first.
static revUserTools( $rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
Definition Linker.php:1141
static formatComment( $comment, $title=null, $local=false, $wikiId=null)
This function is called by all recent changes variants, by the page history, and by the user contribu...
Definition Linker.php:1180
Show an error when the wiki is locked/read-only and the user tries to do something that requires writ...
User interface for the rollback action.
getDescription()
Returns the description that goes below the <h1> tag.
getRestriction()
Get the permission required to perform this action.
onView()
Temporarily unused message keys due to T88044/T136375:
doesWrites()
Indicates whether this action may perform database writes.
getName()
Return the name of the action this object responds to.
Show an error when the user hits a rate limit.
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
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:249
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2685
namespace are movable Hooks may change this value to override the return value of MWNamespace::isMovable(). 'NewDifferenceEngine' do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk page
Definition hooks.txt:2543
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1734
$from
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:37