3 * User-requested page cache purging.
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 use MediaWiki\HTMLForm\HTMLForm
;
24 use MediaWiki\Permissions\PermissionStatus
;
25 use MediaWiki\Status\Status
;
28 * User-requested page cache purging
32 class PurgeAction
extends FormAction
{
35 private $redirectParams;
37 public function getName() {
41 public function getDescription() {
45 public function onSubmit( $data ) {
46 $authority = $this->getAuthority();
47 $page = $this->getWikiPage();
49 $status = PermissionStatus
::newEmpty();
50 if ( !$authority->authorizeAction( 'purge', $status ) ) {
51 return Status
::wrap( $status );
54 return $page->doPurge();
57 public function show() {
60 // This will throw exceptions if there's a problem
61 $this->checkCanExecute( $this->getUser() );
63 if ( $this->getRequest()->wasPosted() ) {
64 $this->redirectParams
= wfArrayToCgi( array_diff_key(
65 $this->getRequest()->getQueryValues(),
66 [ 'title' => null, 'action' => null ]
69 $result = $this->onSubmit( [] );
70 if ( $result === true ) {
72 } elseif ( $result instanceof Status
) {
73 if ( $result->isOK() ) {
76 $this->getOutput()->addHTML( $result->getHTML() );
80 $this->redirectParams
= $this->getRequest()->getVal( 'redirectparams', '' );
81 $form = $this->getForm();
82 if ( $form->show() ) {
88 protected function usesOOUI() {
92 protected function getFormFields() {
97 'default' => $this->msg( 'confirm-purge-top' )->parse()
102 protected function alterForm( HTMLForm
$form ) {
103 $form->setWrapperLegendMsg( 'confirm-purge-title' );
104 $form->setSubmitTextMsg( 'confirm_purge_button' );
107 protected function postText() {
108 return $this->msg( 'confirm-purge-bottom' )->parse();
111 public function onSuccess() {
112 $this->getOutput()->redirect( $this->getTitle()->getFullURL( $this->redirectParams
) );
115 public function doesWrites() {