3 * Base classes for actions done on pages.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 * @defgroup Actions Action done on pages
27 * Actions are things which can be done to pages (edit, delete, rollback, etc). They
28 * are distinct from Special Pages because an action must apply to exactly one page.
30 * To add an action in an extension, create a subclass of Action, and add the key to
31 * $wgActions. There is also the deprecated UnknownAction hook
33 * Actions generally fall into two groups: the show-a-form-then-do-something-with-the-input
34 * format (protect, delete, move, etc), and the just-do-something format (watch, rollback,
35 * patrol, etc). The FormAction and FormlessAction classes represent these two groups.
37 abstract class Action
{
40 * Page on which we're performing the action
42 * @var WikiPage|Article|ImagePage|CategoryPage|Page $page
47 * IContextSource if specified; otherwise we'll use the Context from the Page
49 * @var IContextSource $context
54 * The fields used to create the HTMLForm
61 * Get the Action subclass which should be used to handle this action, false if
62 * the action is disabled, or null if it's not recognised
63 * @param string $action
64 * @param array $overrides
65 * @return bool|null|string|callable|Action
67 final private static function getClass( $action, array $overrides ) {
69 $action = strtolower( $action );
71 if ( !isset( $wgActions[$action] ) ) {
75 if ( $wgActions[$action] === false ) {
77 } elseif ( $wgActions[$action] === true && isset( $overrides[$action] ) ) {
78 return $overrides[$action];
79 } elseif ( $wgActions[$action] === true ) {
80 return ucfirst( $action ) . 'Action';
82 return $wgActions[$action];
87 * Get an appropriate Action subclass for the given action
89 * @param string $action
91 * @param IContextSource|null $context
92 * @return Action|bool|null False if the action is disabled, null
93 * if it is not recognised
95 final public static function factory( $action, Page
$page, IContextSource
$context = null ) {
96 $classOrCallable = self
::getClass( $action, $page->getActionOverrides() );
98 if ( is_string( $classOrCallable ) ) {
99 if ( !class_exists( $classOrCallable ) ) {
102 $obj = new $classOrCallable( $page, $context );
106 if ( is_callable( $classOrCallable ) ) {
107 return call_user_func_array( $classOrCallable, [ $page, $context ] );
110 return $classOrCallable;
114 * Get the action that will be executed, not necessarily the one passed
115 * passed through the "action" request parameter. Actions disabled in
116 * $wgActions will be replaced by "nosuchaction".
119 * @param IContextSource $context
120 * @return string Action name
122 final public static function getActionName( IContextSource
$context ) {
125 $request = $context->getRequest();
126 $actionName = $request->getVal( 'action', 'view' );
128 // Check for disabled actions
129 if ( isset( $wgActions[$actionName] ) && $wgActions[$actionName] === false ) {
130 $actionName = 'nosuchaction';
133 // Workaround for bug #20966: inability of IE to provide an action dependent
134 // on which submit button is clicked.
135 if ( $actionName === 'historysubmit' ) {
136 if ( $request->getBool( 'revisiondelete' ) ) {
137 $actionName = 'revisiondelete';
138 } elseif ( $request->getBool( 'editchangetags' ) ) {
139 $actionName = 'editchangetags';
141 $actionName = 'view';
143 } elseif ( $actionName == 'editredlink' ) {
144 $actionName = 'edit';
147 // Trying to get a WikiPage for NS_SPECIAL etc. will result
148 // in WikiPage::factory throwing "Invalid or virtual namespace -1 given."
149 // For SpecialPages et al, default to action=view.
150 if ( !$context->canUseWikiPage() ) {
154 $action = Action
::factory( $actionName, $context->getWikiPage(), $context );
155 if ( $action instanceof Action
) {
156 return $action->getName();
159 return 'nosuchaction';
163 * Check if a given action is recognised, even if it's disabled
166 * @param string $name Name of an action
169 final public static function exists( $name ) {
170 return self
::getClass( $name, [] ) !== null;
174 * Get the IContextSource in use here
176 * @return IContextSource
178 final public function getContext() {
179 if ( $this->context
instanceof IContextSource
) {
180 return $this->context
;
181 } elseif ( $this->page
instanceof Article
) {
182 // NOTE: $this->page can be a WikiPage, which does not have a context.
183 wfDebug( __METHOD__
. ": no context known, falling back to Article's context.\n" );
184 return $this->page
->getContext();
187 wfWarn( __METHOD__
. ': no context known, falling back to RequestContext::getMain().' );
188 return RequestContext
::getMain();
192 * Get the WebRequest being used for this instance
197 final public function getRequest() {
198 return $this->getContext()->getRequest();
202 * Get the OutputPage being used for this instance
207 final public function getOutput() {
208 return $this->getContext()->getOutput();
212 * Shortcut to get the User being used for this instance
217 final public function getUser() {
218 return $this->getContext()->getUser();
222 * Shortcut to get the Skin being used for this instance
227 final public function getSkin() {
228 return $this->getContext()->getSkin();
232 * Shortcut to get the user Language being used for this instance
236 final public function getLanguage() {
237 return $this->getContext()->getLanguage();
241 * Shortcut to get the Title object from the page
246 final public function getTitle() {
247 return $this->page
->getTitle();
251 * Get a Message object with context set
252 * Parameters are the same as wfMessage()
256 final public function msg() {
257 $params = func_get_args();
258 return call_user_func_array( [ $this->getContext(), 'msg' ], $params );
264 * Only public since 1.21
267 * @param IContextSource|null $context
269 public function __construct( Page
$page, IContextSource
$context = null ) {
270 if ( $context === null ) {
271 wfWarn( __METHOD__
. ' called without providing a Context object.' );
272 // NOTE: We could try to initialize $context using $page->getContext(),
273 // if $page is an Article. That however seems to not work seamlessly.
277 $this->context
= $context;
281 * Return the name of the action this object responds to
284 * @return string Lowercase name
286 abstract public function getName();
289 * Get the permission required to perform this action. Often, but not always,
290 * the same as the action name
293 * @return string|null
295 public function getRestriction() {
300 * Checks if the given user (identified by an object) can perform this action. Can be
301 * overridden by sub-classes with more complicated permissions schemes. Failures here
302 * must throw subclasses of ErrorPageError
305 * @param User $user The user to check, or null to use the context user
306 * @throws UserBlockedError|ReadOnlyError|PermissionsError
308 protected function checkCanExecute( User
$user ) {
309 $right = $this->getRestriction();
310 if ( $right !== null ) {
311 $errors = $this->getTitle()->getUserPermissionsErrors( $right, $user );
312 if ( count( $errors ) ) {
313 throw new PermissionsError( $right, $errors );
317 if ( $this->requiresUnblock() && $user->isBlocked() ) {
318 $block = $user->getBlock();
319 throw new UserBlockedError( $block );
322 // This should be checked at the end so that the user won't think the
323 // error is only temporary when he also don't have the rights to execute
325 if ( $this->requiresWrite() && wfReadOnly() ) {
326 throw new ReadOnlyError();
331 * Whether this action requires the wiki not to be locked
336 public function requiresWrite() {
341 * Whether this action can still be executed by a blocked user
346 public function requiresUnblock() {
351 * Set output headers for noindexing etc. This function will not be called through
352 * the execute() entry point, so only put UI-related stuff in here.
355 protected function setHeaders() {
356 $out = $this->getOutput();
357 $out->setRobotPolicy( "noindex,nofollow" );
358 $out->setPageTitle( $this->getPageTitle() );
359 $out->setSubtitle( $this->getDescription() );
360 $out->setArticleRelated( true );
364 * Returns the name that goes in the \<h1\> page title
368 protected function getPageTitle() {
369 return $this->getTitle()->getPrefixedText();
373 * Returns the description that goes below the \<h1\> tag
376 * @return string HTML
378 protected function getDescription() {
379 return $this->msg( strtolower( $this->getName() ) )->escaped();
383 * Adds help link with an icon via page indicators.
384 * Link target can be overridden by a local message containing a wikilink:
385 * the message key is: lowercase action name + '-helppage'.
386 * @param string $to Target MediaWiki.org page title or encoded URL.
387 * @param bool $overrideBaseUrl Whether $url is a full URL, to avoid MW.o.
390 public function addHelpLink( $to, $overrideBaseUrl = false ) {
392 $msg = wfMessage( $wgContLang->lc(
393 Action
::getActionName( $this->getContext() )
396 if ( !$msg->isDisabled() ) {
397 $helpUrl = Skin
::makeUrl( $msg->plain() );
398 $this->getOutput()->addHelpLink( $helpUrl, true );
400 $this->getOutput()->addHelpLink( $to, $overrideBaseUrl );
405 * The main action entry point. Do all output for display and send it to the context
406 * output. Do not use globals $wgOut, $wgRequest, etc, in implementations; use
407 * $this->getOutput(), etc.
410 * @throws ErrorPageError
412 abstract public function show();
415 * Call wfTransactionalTimeLimit() if this request was POSTed
418 protected function useTransactionalTimeLimit() {
419 if ( $this->getRequest()->wasPosted() ) {
420 wfTransactionalTimeLimit();
425 * Indicates whether this action may perform database writes
429 public function doesWrites() {