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
24 * User-requested page cache purging.
26 * For users with 'purge', this will directly trigger the cache purging and
27 * for users without that right, it will show a confirmation form.
31 class PurgeAction
extends FormAction
{
33 private $redirectParams;
35 public function getName() {
39 public function requiresUnblock() {
43 public function getDescription() {
48 * Just get an empty form with a single submit button
51 protected function getFormFields() {
55 public function onSubmit( $data ) {
56 return $this->page
->doPurge();
60 * purge is slightly weird because it can be either formed or formless depending
63 public function show() {
66 // This will throw exceptions if there's a problem
67 $this->checkCanExecute( $this->getUser() );
69 if ( $this->getUser()->isAllowed( 'purge' ) ) {
70 $this->redirectParams
= wfArrayToCgi( array_diff_key(
71 $this->getRequest()->getQueryValues(),
72 array( 'title' => null, 'action' => null )
74 if ( $this->onSubmit( array() ) ) {
78 $this->redirectParams
= $this->getRequest()->getVal( 'redirectparams', '' );
79 $form = $this->getForm();
80 if ( $form->show() ) {
86 protected function alterForm( HTMLForm
$form ) {
87 $form->setSubmitTextMsg( 'confirm_purge_button' );
90 protected function preText() {
91 return $this->msg( 'confirm-purge-top' )->parse();
94 protected function postText() {
95 return $this->msg( 'confirm-purge-bottom' )->parse();
98 public function onSuccess() {
99 $this->getOutput()->redirect( $this->getTitle()->getFullURL( $this->redirectParams
) );