Merge "Fix the Rubocop offense AmbiguousRegexpLiteral"
[mediawiki.git] / includes / actions / Action.php
blob8d11d901a20fb06d2455b5eccbf46ce9599d4386
1 <?php
2 /**
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
19 * @file
22 /**
23 * @defgroup Actions Action done on pages
26 /**
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 {
39 /**
40 * Page on which we're performing the action
41 * @since 1.17
42 * @var WikiPage|Article|ImagePage|CategoryPage|Page $page
44 protected $page;
46 /**
47 * IContextSource if specified; otherwise we'll use the Context from the Page
48 * @since 1.17
49 * @var IContextSource $context
51 protected $context;
53 /**
54 * The fields used to create the HTMLForm
55 * @since 1.17
56 * @var array $fields
58 protected $fields;
60 /**
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
67 final private static function getClass( $action, array $overrides ) {
68 global $wgActions;
69 $action = strtolower( $action );
71 if ( !isset( $wgActions[$action] ) ) {
72 return null;
75 if ( $wgActions[$action] === false ) {
76 return false;
77 } elseif ( $wgActions[$action] === true && isset( $overrides[$action] ) ) {
78 return $overrides[$action];
79 } elseif ( $wgActions[$action] === true ) {
80 return ucfirst( $action ) . 'Action';
81 } else {
82 return $wgActions[$action];
86 /**
87 * Get an appropriate Action subclass for the given action
88 * @since 1.17
89 * @param string $action
90 * @param Page $page
91 * @param IContextSource $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 $obj = new $classOrCallable( $page, $context );
100 return $obj;
103 if ( is_callable( $classOrCallable ) ) {
104 return call_user_func_array( $classOrCallable, array( $page, $context ) );
107 return $classOrCallable;
111 * Get the action that will be executed, not necessarily the one passed
112 * passed through the "action" request parameter. Actions disabled in
113 * $wgActions will be replaced by "nosuchaction".
115 * @since 1.19
116 * @param IContextSource $context
117 * @return string Action name
119 final public static function getActionName( IContextSource $context ) {
120 global $wgActions;
122 $request = $context->getRequest();
123 $actionName = $request->getVal( 'action', 'view' );
125 // Check for disabled actions
126 if ( isset( $wgActions[$actionName] ) && $wgActions[$actionName] === false ) {
127 $actionName = 'nosuchaction';
130 // Workaround for bug #20966: inability of IE to provide an action dependent
131 // on which submit button is clicked.
132 if ( $actionName === 'historysubmit' ) {
133 if ( $request->getBool( 'revisiondelete' ) ) {
134 $actionName = 'revisiondelete';
135 } else {
136 $actionName = 'view';
138 } elseif ( $actionName == 'editredlink' ) {
139 $actionName = 'edit';
142 // Trying to get a WikiPage for NS_SPECIAL etc. will result
143 // in WikiPage::factory throwing "Invalid or virtual namespace -1 given."
144 // For SpecialPages et al, default to action=view.
145 if ( !$context->canUseWikiPage() ) {
146 return 'view';
149 $action = Action::factory( $actionName, $context->getWikiPage(), $context );
150 if ( $action instanceof Action ) {
151 return $action->getName();
154 return 'nosuchaction';
158 * Check if a given action is recognised, even if it's disabled
159 * @since 1.17
161 * @param string $name Name of an action
162 * @return bool
164 final public static function exists( $name ) {
165 return self::getClass( $name, array() ) !== null;
169 * Get the IContextSource in use here
170 * @since 1.17
171 * @return IContextSource
173 final public function getContext() {
174 if ( $this->context instanceof IContextSource ) {
175 return $this->context;
176 } elseif ( $this->page instanceof Article ) {
177 // NOTE: $this->page can be a WikiPage, which does not have a context.
178 wfDebug( __METHOD__ . ": no context known, falling back to Article's context.\n" );
179 return $this->page->getContext();
182 wfWarn( __METHOD__ . ': no context known, falling back to RequestContext::getMain().' );
183 return RequestContext::getMain();
187 * Get the WebRequest being used for this instance
188 * @since 1.17
190 * @return WebRequest
192 final public function getRequest() {
193 return $this->getContext()->getRequest();
197 * Get the OutputPage being used for this instance
198 * @since 1.17
200 * @return OutputPage
202 final public function getOutput() {
203 return $this->getContext()->getOutput();
207 * Shortcut to get the User being used for this instance
208 * @since 1.17
210 * @return User
212 final public function getUser() {
213 return $this->getContext()->getUser();
217 * Shortcut to get the Skin being used for this instance
218 * @since 1.17
220 * @return Skin
222 final public function getSkin() {
223 return $this->getContext()->getSkin();
227 * Shortcut to get the user Language being used for this instance
229 * @return Language
231 final public function getLanguage() {
232 return $this->getContext()->getLanguage();
236 * Shortcut to get the Title object from the page
237 * @since 1.17
239 * @return Title
241 final public function getTitle() {
242 return $this->page->getTitle();
246 * Get a Message object with context set
247 * Parameters are the same as wfMessage()
249 * @return Message
251 final public function msg() {
252 $params = func_get_args();
253 return call_user_func_array( array( $this->getContext(), 'msg' ), $params );
257 * Constructor.
259 * Only public since 1.21
261 * @param Page $page
262 * @param IContextSource $context
264 public function __construct( Page $page, IContextSource $context = null ) {
265 if ( $context === null ) {
266 wfWarn( __METHOD__ . ' called without providing a Context object.' );
267 // NOTE: We could try to initialize $context using $page->getContext(),
268 // if $page is an Article. That however seems to not work seamlessly.
271 $this->page = $page;
272 $this->context = $context;
276 * Return the name of the action this object responds to
277 * @since 1.17
279 * @return string Lowercase name
281 abstract public function getName();
284 * Get the permission required to perform this action. Often, but not always,
285 * the same as the action name
286 * @since 1.17
288 * @return string|null
290 public function getRestriction() {
291 return null;
295 * Checks if the given user (identified by an object) can perform this action. Can be
296 * overridden by sub-classes with more complicated permissions schemes. Failures here
297 * must throw subclasses of ErrorPageError
298 * @since 1.17
300 * @param User $user The user to check, or null to use the context user
301 * @throws UserBlockedError|ReadOnlyError|PermissionsError
303 protected function checkCanExecute( User $user ) {
304 $right = $this->getRestriction();
305 if ( $right !== null ) {
306 $errors = $this->getTitle()->getUserPermissionsErrors( $right, $user );
307 if ( count( $errors ) ) {
308 throw new PermissionsError( $right, $errors );
312 if ( $this->requiresUnblock() && $user->isBlocked() ) {
313 $block = $user->getBlock();
314 throw new UserBlockedError( $block );
317 // This should be checked at the end so that the user won't think the
318 // error is only temporary when he also don't have the rights to execute
319 // this action
320 if ( $this->requiresWrite() && wfReadOnly() ) {
321 throw new ReadOnlyError();
326 * Whether this action requires the wiki not to be locked
327 * @since 1.17
329 * @return bool
331 public function requiresWrite() {
332 return true;
336 * Whether this action can still be executed by a blocked user
337 * @since 1.17
339 * @return bool
341 public function requiresUnblock() {
342 return true;
346 * Set output headers for noindexing etc. This function will not be called through
347 * the execute() entry point, so only put UI-related stuff in here.
348 * @since 1.17
350 protected function setHeaders() {
351 $out = $this->getOutput();
352 $out->setRobotPolicy( "noindex,nofollow" );
353 $out->setPageTitle( $this->getPageTitle() );
354 $out->setSubtitle( $this->getDescription() );
355 $out->setArticleRelated( true );
359 * Returns the name that goes in the \<h1\> page title
361 * @return string
363 protected function getPageTitle() {
364 return $this->getTitle()->getPrefixedText();
368 * Returns the description that goes below the \<h1\> tag
369 * @since 1.17
371 * @return string
373 protected function getDescription() {
374 return $this->msg( strtolower( $this->getName() ) )->escaped();
378 * The main action entry point. Do all output for display and send it to the context
379 * output. Do not use globals $wgOut, $wgRequest, etc, in implementations; use
380 * $this->getOutput(), etc.
381 * @since 1.17
383 * @throws ErrorPageError
385 abstract public function show();