3 * Implements Special:ComparePages
5 * Copyright © 2010 Derk-Jan Hartman <hartman@videolan.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
23 * @ingroup SpecialPage
27 * Implements Special:ComparePages
29 * @ingroup SpecialPage
31 class SpecialComparePages
extends SpecialPage
{
34 protected $opts, $skin;
36 // Some internal settings
37 protected $showNavigation = false;
39 public function __construct() {
40 parent
::__construct( 'ComparePages' );
44 * Show a form for filtering namespace and username
49 public function execute( $par ) {
51 $this->outputHeader();
53 $form = new HTMLForm( array(
57 'label-message' => 'compare-page1',
60 'validation-callback' => array( $this, 'checkExistingTitle' ),
65 'label-message' => 'compare-rev1',
68 'validation-callback' => array( $this, 'checkExistingRevision' ),
73 'label-message' => 'compare-page2',
76 'validation-callback' => array( $this, 'checkExistingTitle' ),
81 'label-message' => 'compare-rev2',
84 'validation-callback' => array( $this, 'checkExistingRevision' ),
98 ), $this->getContext(), 'compare' );
99 $form->setSubmitTextMsg( 'compare-submit' );
100 $form->suppressReset();
101 $form->setMethod( 'get' );
102 $form->setSubmitCallback( array( __CLASS__
, 'showDiff' ) );
105 $form->displayForm( '' );
109 public static function showDiff( $data, HTMLForm
$form ) {
110 $rev1 = self
::revOrTitle( $data['Revision1'], $data['Page1'] );
111 $rev2 = self
::revOrTitle( $data['Revision2'], $data['Page2'] );
113 if ( $rev1 && $rev2 ) {
114 $revision = Revision
::newFromId( $rev1 );
116 if ( $revision ) { // NOTE: $rev1 was already checked, should exist.
117 $contentHandler = $revision->getContentHandler();
118 $de = $contentHandler->createDifferenceEngine( $form->getContext(),
122 ( $data['Action'] == 'purge' ),
123 ( $data['Unhide'] == '1' )
125 $de->showDiffPage( true );
130 public static function revOrTitle( $revision, $title ) {
133 } elseif ( $title ) {
134 $title = Title
::newFromText( $title );
135 if ( $title instanceof Title
) {
136 return $title->getLatestRevID();
143 public function checkExistingTitle( $value, $alldata ) {
144 if ( $value === '' ||
$value === null ) {
147 $title = Title
::newFromText( $value );
148 if ( !$title instanceof Title
) {
149 return $this->msg( 'compare-invalid-title' )->parseAsBlock();
151 if ( !$title->exists() ) {
152 return $this->msg( 'compare-title-not-exists' )->parseAsBlock();
158 public function checkExistingRevision( $value, $alldata ) {
159 if ( $value === '' ||
$value === null ) {
162 $revision = Revision
::newFromId( $value );
163 if ( $revision === null ) {
164 return $this->msg( 'compare-revision-not-exists' )->parseAsBlock();
170 protected function getGroupName() {