Article validation code (a start)
authorMagnus Manske <magnusmanske@users.mediawiki.org>
Sun, 18 Jul 2004 20:45:28 +0000 (20:45 +0000)
committerMagnus Manske <magnusmanske@users.mediawiki.org>
Sun, 18 Jul 2004 20:45:28 +0000 (20:45 +0000)
includes/SpecialGeo.php
includes/SpecialPage.php
includes/SpecialValidate.php [new file with mode: 0644]
languages/Language.php
maintenance/tables.sql

index c20c40f..1eac8db 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-# Copyright (C) 2003 Brion Vibber <brion@pobox.com>
+# Copyright (C) 2004 Magnus Manske <magnus.manske@web.de>
 # http://www.mediawiki.org/
 # 
 # This program is free software; you can redistribute it and/or modify
index 4dcb7e9..dd4d4c2 100644 (file)
@@ -37,7 +37,8 @@ $wgSpecialPages = array_merge($wgSpecialPages, array (
        "Recentchangeslinked" => new UnlistedSpecialPage( "Recentchangeslinked" ),
        "Movepage"              => new UnlistedSpecialPage( "Movepage" ),
        "Blockme"       => new UnlistedSpecialPage( "Blockme" ),
-       "Geo" => new SpecialPage( "Geo" ),
+       "Geo"   =>      new SpecialPage( "Geo" ),
+       "Validate"      =>      new SpecialPage( "Validate" ),
        "Booksources"   => new SpecialPage( "Booksources" ),
        "Categories"    => new SpecialPage( "Categories" ),
        "Export"                => new SpecialPage( "Export" ),
diff --git a/includes/SpecialValidate.php b/includes/SpecialValidate.php
new file mode 100644 (file)
index 0000000..975902a
--- /dev/null
@@ -0,0 +1,152 @@
+<?php
+# Copyright (C) 2004 Magnus Manske <magnus.manske@web.de>
+# http://www.mediawiki.org/
+# 
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or 
+# (at your option) any later version.
+# 
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# 
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# http://www.gnu.org/copyleft/gpl.html
+
+function find_this_version ( $article_title , &$article_time , &$id , &$tab )
+       {
+       $id = "" ;
+       $sql = "SELECT cur_id,cur_timestamp FROM cur WHERE cur_namespace=0 AND cur_title='{$article_title}'" ;
+       $res = wfQuery( $sql, DB_READ );
+       if( $s = wfFetchObject( $res ) )
+               {
+               if ( $article_time == "" ) $article_time = $s->cur_timestamp ; # No timestamp = current version
+               if ( $article_time == $s->cur_timestamp ) # Means current version
+                       {
+                       $tab = "cur" ;
+                       $id = $s->cur_id ;
+                       }
+               }
+               
+       if ( $id == "" )
+               {
+               $sql = "SELECT old_id FROM old WHERE old_namespace=0 AND old_title='{$article_title}' AND old_timestamp='{$article_time}'" ;
+               $res = wfQuery( $sql, DB_READ );
+               if( $s = wfFetchObject( $res ) )
+                       {
+                       $tab = "old" ;
+                       $id = $s->old_id ;
+                       }
+               }
+       }
+       
+function get_prev_data ( $user_id , $article_title , $article_timestamp = "" )
+       {
+       $ret = array () ;
+       $sql = "SELECT * FROM validate WHERE val_user={$user_id} AND val_title='{$article_title}'" ;
+       if ( $article_timestamp != "" ) $sql .= " AND val_timestamp='{$article_timestamp}'" ;
+       $res = wfQuery( $sql, DB_READ );
+       while( $s = wfFetchObject( $res ) ) $ret[$s->val_timestamp][$s->val_type] = $s ;
+       return $ret ;
+       }
+
+function wfSpecialValidate( $page = "" ) {
+       global $wgOut, $wgLang, $wgUser;
+       if ( $wgUser->getID() == 0 ) return ; # Anon
+       $article_title = $_GET['article'] ;
+       $article_time = "" ;
+       if ( isset ( $_GET['timestamp'] ) ) $article_time = $_GET['timestamp'] ;        
+       find_this_version ( $article_title , $article_time , $id , $tab ) ;
+       $article = Title::newFromText ( $article_title ) ;
+
+       # $tab now contains "cur" or "old"
+       # $id contains the id in that table
+       
+       # Things that should be in the language files
+       $clear_old = "Clear my other validation data for <a href=\"$1\">this article</a>" ;
+       $noop = "No opinion" ;
+       $types = array (
+               "0" => "Style|Awful|Awesome|5",
+               "1" => "Legal|Illegal|Legal|5",
+               "2" => "Completeness|Stub|Extensive|5",
+               "3" => "Facts|Wild guesses|Concrete|5"
+               ) ;
+       
+       # Now we get all the "votes" for the different versions of this article for this user
+       $val = get_prev_data ( $wgUser->getID() , $article_title ) ;
+       if ( !isset ( $val[$article_time] ) ) $val["{$article_time}"] = array () ;
+       
+       # User has clicked "Doit" before, so evaluating form
+       if ( isset ( $_POST['doit'] ) )
+               {
+               $oldtime = $_POST['oldtime'] ;
+               if ( !isset ( $val["{$oldtime}"] ) ) $val["{$oldtime}"] = array () ;
+               if ( isset ( $_POST['clear_other'] ) && $_POST['clear_other'] == 1 ) # Clear all others
+                       {
+                       $sql = "DELETE FROM validate WHERE val_title='{$article_title}' AND val_timestamp<>'{$oldtime}' AND val_user='" ;
+                       $sql .= $wgUser->getID() . "'" ;
+                       wfQuery( $sql, DB_WRITE );
+                       $val2 = $val["{$oldtime}"] ; # Only version left
+                       $val = array () ; # So clear others
+                       $val["{$oldtime}"] = $val2 ;
+                       }
+
+               # Delete old "votes" for this version
+               $sql = "DELETE FROM validate WHERE val_title='{$article_title}' AND val_timestamp='{$oldtime}' AND val_user='" ;
+               $sql .= $wgUser->getID() . "'" ;
+               wfQuery( $sql, DB_WRITE );
+
+               for ( $idx = 0 ; $idx < count ( $types) ; $idx++ ) # Changes
+                       {
+                       $rad = $_POST["rad{$idx}"] ;
+                       if ( !isset ( $val["{$oldtime}"][$idx] ) ) $val["{$oldtime}"][$idx] = "" ;
+                       $val["{$oldtime}"][$idx]->value = $rad ;
+                       if ( $rad != -1 )
+                               {
+                               # Store it in the database
+                               $sql = "INSERT INTO validate VALUES ( '" . $wgUser->getID() . "','{$article_title}','{$oldtime}','{$idx}','{$rad}')" ;
+                               if ( $rad != -1 ) wfQuery( $sql, DB_WRITE );
+                               }
+                       }
+               }
+       
+       # Generating HTML
+       $html = "<h1>" . $article->getPrefixedText() . "</h1>\n" ;
+       foreach ( $val AS $time => $stuff )
+               {
+               if ( $time == $article_time ) $html .= "<h2>This version</h2>\n" ;
+               else $html .= "<h2>Version of {$time}</h2>\n" ;
+               $html .= "<form method=post>\n" ;
+               $html .= "<input type=hidden name=oldtime value='{$time}'>" ;
+               $html .= "<table>\n" ;
+               for ( $idx = 0 ; $idx < count ( $types) ; $idx++ )
+                       {
+                       $x = explode ( "|" , $types[$idx] , 4 ) ;
+                       if ( isset ( $stuff[$idx] ) ) $choice = $stuff[$idx]->value ;
+                       else $choice = -1 ;
+                       $html .= "<tr><th align=left>{$x[0]}</th><td align=right>{$x[1]}</td><td>" ;
+                       for ( $cnt = 0 ; $cnt < $x[3] ; $cnt++)
+                               {
+                               $html .= "<input type=radio name='rad{$idx}' value='{$cnt}'" ;
+                               if ( $choice == $cnt ) $html .= " checked" ;
+                               $html .= "> " ;
+                               }
+                       $html .= "</td><td>{$x[2]}</td>" ;
+                       $html .= "<td><input type=radio name='rad{$idx}' value='-1'" ;
+                       if ( $choice == -1 ) $html .= " checked" ;
+                       $html .= "> {$noop}</td></tr>\n" ;
+                       }
+               $html .= "<tr><td></td><td colspan=3><input type=checkbox name=clear_other value=1 checked>" ;
+               $html .= str_replace ( "$1" , $article->getFullURL() , $clear_old ) ;
+               $html .= "</td><td align=right><input type=submit name=doit value='Do it'></td>" ;
+               $html .= "</tr></table></form>\n" ;
+               }
+
+       $wgOut->addHTML( $html ) ;
+}
+
+?>
index 0a61d62..e10a74a 100644 (file)
@@ -924,6 +924,7 @@ That comes to '''$5''' average edits per page, and '''$6''' views per edit.",
 #
 'orphans'              => 'Orphaned pages',
 'geo'          => 'GEO coordinates',
+'validate'             => 'Validate page',
 'lonelypages'  => 'Orphaned pages',
 'unusedimages' => 'Unused images',
 'popularpages' => 'Popular pages',
index 6d1e4d4..161d4d7 100644 (file)
@@ -251,3 +251,14 @@ CREATE TABLE blobs (
   blob_data longblob NOT NULL default '',
   UNIQUE key blob_index (blob_index)
 );
+
+-- For article validation
+
+CREATE TABLE `validate` (
+  `val_user` int(11) NOT NULL default '0',
+  `val_title` varchar(255) binary NOT NULL default '',
+  `val_timestamp` varchar(14) binary NOT NULL default '',
+  `val_type` int(10) unsigned NOT NULL default '0',
+  `val_value` int(11) default '0',
+  KEY `val_user` (`val_user`,`val_title`,`val_timestamp`)
+) TYPE=MyISAM;