2008-09-04 15:17:51 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on Sep 2, 2008
|
|
|
|
|
*
|
|
|
|
|
* API for MediaWiki 1.14+
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2008 Soxred93 soxred93@gmail.com,
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!defined('MEDIAWIKI')) {
|
|
|
|
|
require_once ('ApiBase.php');
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-19 00:21:03 +00:00
|
|
|
/**
|
|
|
|
|
* Allows user to patrol pages
|
|
|
|
|
* @ingroup API
|
|
|
|
|
*/
|
2008-09-04 15:17:51 +00:00
|
|
|
class ApiPatrol extends ApiBase {
|
|
|
|
|
|
|
|
|
|
public function __construct($main, $action) {
|
|
|
|
|
parent :: __construct($main, $action);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Patrols the article or provides the reason the patrol failed.
|
|
|
|
|
*/
|
|
|
|
|
public function execute() {
|
|
|
|
|
global $wgUser, $wgUseRCPatrol, $wgUseNPPatrol;
|
|
|
|
|
$this->getMain()->requestWriteMode();
|
|
|
|
|
$params = $this->extractRequestParams();
|
|
|
|
|
|
|
|
|
|
if(!isset($params['token']))
|
|
|
|
|
$this->dieUsageMsg(array('missingparam', 'token'));
|
|
|
|
|
if(!isset($params['rcid']))
|
|
|
|
|
$this->dieUsageMsg(array('missingparam', 'rcid'));
|
|
|
|
|
if(!$wgUser->matchEditToken($params['token']))
|
|
|
|
|
$this->dieUsageMsg(array('sessionfailure'));
|
|
|
|
|
|
|
|
|
|
$rc = RecentChange::newFromID($params['rcid']);
|
|
|
|
|
if(!$rc instanceof RecentChange)
|
|
|
|
|
$this->dieUsageMsg(array('nosuchrcid', $params['rcid']));
|
|
|
|
|
$retval = RecentChange::markPatrolled($params['rcid']);
|
|
|
|
|
|
2008-10-25 14:04:43 +00:00
|
|
|
if($retval)
|
2008-09-04 15:17:51 +00:00
|
|
|
$this->dieUsageMsg(current($retval));
|
|
|
|
|
|
2009-02-27 16:03:01 +00:00
|
|
|
$result = array('rcid' => intval($rc->getAttribute('rc_id')));
|
2008-09-04 15:17:51 +00:00
|
|
|
ApiQueryBase::addTitleInfo($result, $rc->getTitle());
|
|
|
|
|
$this->getResult()->addValue(null, $this->getModuleName(), $result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getAllowedParams() {
|
|
|
|
|
return array (
|
|
|
|
|
'token' => null,
|
|
|
|
|
'rcid' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'integer'
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getParamDescription() {
|
|
|
|
|
return array (
|
|
|
|
|
'token' => 'Patrol token obtained from list=recentchanges',
|
|
|
|
|
'rcid' => 'Recentchanges ID to patrol',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getDescription() {
|
|
|
|
|
return array (
|
|
|
|
|
'Patrol a page or revision. '
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamples() {
|
|
|
|
|
return array(
|
|
|
|
|
'api.php?action=patrol&token=123abc&rcid=230672766'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
|
|
|
|
return __CLASS__ . ': $Id$';
|
|
|
|
|
}
|
|
|
|
|
}
|