2007-12-06 16:06:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on Jun 30, 2007
|
|
|
|
|
* API for MediaWiki 1.8+
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2007 Roan Kattouw <Firstname>.<Lastname>@home.nl
|
|
|
|
|
*
|
|
|
|
|
* 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')) {
|
|
|
|
|
// Eclipse helper - will be ignored in production
|
|
|
|
|
require_once ("ApiBase.php");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* API module that facilitates deleting pages. The API eqivalent of action=delete.
|
2008-01-12 07:08:17 +00:00
|
|
|
* Requires API write mode to be enabled.
|
|
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup API
|
2007-12-06 16:06:22 +00:00
|
|
|
*/
|
|
|
|
|
class ApiDelete extends ApiBase {
|
|
|
|
|
|
|
|
|
|
public function __construct($main, $action) {
|
|
|
|
|
parent :: __construct($main, $action);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-01-12 07:08:17 +00:00
|
|
|
* Extracts the title, token, and reason from the request parameters and invokes
|
2008-04-14 07:45:50 +00:00
|
|
|
* the local delete() function with these as arguments. It does not make use of
|
|
|
|
|
* the delete function specified by Article.php. If the deletion succeeds, the
|
|
|
|
|
* details of the article deleted and the reason for deletion are added to the
|
2008-01-12 07:08:17 +00:00
|
|
|
* result object.
|
2007-12-06 16:06:22 +00:00
|
|
|
*/
|
|
|
|
|
public function execute() {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
$this->getMain()->requestWriteMode();
|
|
|
|
|
$params = $this->extractRequestParams();
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-10-07 14:57:59 +00:00
|
|
|
$this->requireOnlyOneParameter($params, 'title', 'pageid');
|
2007-12-06 16:06:22 +00:00
|
|
|
if(!isset($params['token']))
|
2008-01-18 16:01:31 +00:00
|
|
|
$this->dieUsageMsg(array('missingparam', 'token'));
|
2007-12-06 16:06:22 +00:00
|
|
|
|
2008-10-07 14:57:59 +00:00
|
|
|
if(isset($params['title']))
|
|
|
|
|
{
|
|
|
|
|
$titleObj = Title::newFromText($params['title']);
|
|
|
|
|
if(!$titleObj)
|
|
|
|
|
$this->dieUsageMsg(array('invalidtitle', $params['title']));
|
|
|
|
|
}
|
|
|
|
|
else if(isset($params['pageid']))
|
|
|
|
|
{
|
|
|
|
|
$titleObj = Title::newFromID($params['pageid']);
|
|
|
|
|
if(!$titleObj)
|
|
|
|
|
$this->dieUsageMsg(array('nosuchpageid', $params['pageid']));
|
|
|
|
|
}
|
2007-12-06 16:06:22 +00:00
|
|
|
if(!$titleObj->exists())
|
2008-01-18 15:52:40 +00:00
|
|
|
$this->dieUsageMsg(array('notanarticle'));
|
2007-12-06 16:06:22 +00:00
|
|
|
|
|
|
|
|
$reason = (isset($params['reason']) ? $params['reason'] : NULL);
|
2008-05-19 21:30:03 +00:00
|
|
|
if ($titleObj->getNamespace() == NS_IMAGE) {
|
2008-10-25 14:04:43 +00:00
|
|
|
$retval = self::deleteFile($params['token'], $titleObj, $params['oldimage'], $reason, false);
|
|
|
|
|
if(count($retval))
|
2008-05-19 21:30:03 +00:00
|
|
|
// We don't care about multiple errors, just report one of them
|
|
|
|
|
$this->dieUsageMsg(current($retval));
|
|
|
|
|
} else {
|
|
|
|
|
$articleObj = new Article($titleObj);
|
|
|
|
|
$retval = self::delete($articleObj, $params['token'], $reason);
|
|
|
|
|
|
2008-10-25 14:04:43 +00:00
|
|
|
if(count($retval))
|
2008-05-19 21:30:03 +00:00
|
|
|
// We don't care about multiple errors, just report one of them
|
|
|
|
|
$this->dieUsageMsg(current($retval));
|
|
|
|
|
|
|
|
|
|
if($params['watch'] || $wgUser->getOption('watchdeletion'))
|
|
|
|
|
$articleObj->doWatch();
|
|
|
|
|
else if($params['unwatch'])
|
|
|
|
|
$articleObj->doUnwatch();
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-12-06 16:06:22 +00:00
|
|
|
$r = array('title' => $titleObj->getPrefixedText(), 'reason' => $reason);
|
|
|
|
|
$this->getResult()->addValue(null, $this->getModuleName(), $r);
|
|
|
|
|
}
|
2008-01-12 07:08:17 +00:00
|
|
|
|
2008-05-19 21:30:03 +00:00
|
|
|
private static function getPermissionsError(&$title, $token) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
|
|
|
|
|
// Check permissions
|
|
|
|
|
$errors = $title->getUserPermissionsErrors('delete', $wgUser);
|
|
|
|
|
if (count($errors) > 0) return $errors;
|
|
|
|
|
|
|
|
|
|
// Check token
|
|
|
|
|
if(!$wgUser->matchEditToken($token))
|
|
|
|
|
return array(array('sessionfailure'));
|
|
|
|
|
return array();
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-12 07:08:17 +00:00
|
|
|
/**
|
|
|
|
|
* We have our own delete() function, since Article.php's implementation is split in two phases
|
|
|
|
|
*
|
|
|
|
|
* @param Article $article - Article object to work on
|
|
|
|
|
* @param string $token - Delete token (same as edit token)
|
|
|
|
|
* @param string $reason - Reason for the deletion. Autogenerated if NULL
|
2008-01-18 14:34:14 +00:00
|
|
|
* @return Title::getUserPermissionsErrors()-like array
|
2008-01-12 07:08:17 +00:00
|
|
|
*/
|
|
|
|
|
public static function delete(&$article, $token, &$reason = NULL)
|
|
|
|
|
{
|
2008-05-24 20:44:49 +00:00
|
|
|
global $wgUser;
|
2008-10-07 14:57:59 +00:00
|
|
|
$title = $article->getTitle();
|
|
|
|
|
$errors = self::getPermissionsError($title, $token);
|
2008-05-19 21:30:03 +00:00
|
|
|
if (count($errors)) return $errors;
|
2008-01-12 07:08:17 +00:00
|
|
|
|
|
|
|
|
// Auto-generate a summary, if necessary
|
|
|
|
|
if(is_null($reason))
|
|
|
|
|
{
|
2008-05-26 12:15:21 +00:00
|
|
|
# Need to pass a throwaway variable because generateReason expects
|
|
|
|
|
# a reference
|
2008-05-26 10:14:58 +00:00
|
|
|
$hasHistory = false;
|
|
|
|
|
$reason = $article->generateReason($hasHistory);
|
2008-01-12 07:08:17 +00:00
|
|
|
if($reason === false)
|
2008-01-18 14:34:14 +00:00
|
|
|
return array(array('cannotdelete'));
|
2008-01-12 07:08:17 +00:00
|
|
|
}
|
2008-05-24 20:44:49 +00:00
|
|
|
|
|
|
|
|
if (!wfRunHooks('ArticleDelete', array(&$article, &$wgUser, &$reason)))
|
|
|
|
|
$this->dieUsageMsg(array('hookaborted'));
|
2008-01-12 07:08:17 +00:00
|
|
|
|
|
|
|
|
// Luckily, Article.php provides a reusable delete function that does the hard work for us
|
2008-05-24 20:44:49 +00:00
|
|
|
if($article->doDeleteArticle($reason)) {
|
|
|
|
|
wfRunHooks('ArticleDeleteComplete', array(&$article, &$wgUser, $reason, $article->getId()));
|
2008-01-18 14:34:14 +00:00
|
|
|
return array();
|
2008-05-24 20:44:49 +00:00
|
|
|
}
|
2008-01-18 14:34:14 +00:00
|
|
|
return array(array('cannotdelete', $article->mTitle->getPrefixedText()));
|
2008-01-12 07:08:17 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-05-19 21:30:03 +00:00
|
|
|
public static function deleteFile($token, &$title, $oldimage, &$reason = NULL, $suppress = false)
|
|
|
|
|
{
|
|
|
|
|
$errors = self::getPermissionsError($title, $token);
|
|
|
|
|
if (count($errors)) return $errors;
|
|
|
|
|
|
|
|
|
|
if( $oldimage && !FileDeleteForm::isValidOldSpec($oldimage) )
|
|
|
|
|
return array(array('invalidoldimage'));
|
|
|
|
|
|
2008-05-24 20:44:49 +00:00
|
|
|
$file = wfFindFile($title, false, FileRepo::FIND_IGNORE_REDIRECT);
|
2008-05-19 21:30:03 +00:00
|
|
|
$oldfile = false;
|
|
|
|
|
|
|
|
|
|
if( $oldimage )
|
|
|
|
|
$oldfile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName( $title, $oldimage );
|
|
|
|
|
|
|
|
|
|
if( !FileDeleteForm::haveDeletableFile($file, $oldfile, $oldimage) )
|
|
|
|
|
return array(array('nofile'));
|
|
|
|
|
|
|
|
|
|
$status = FileDeleteForm::doDelete( $title, $file, $oldimage, $reason, $suppress );
|
|
|
|
|
|
|
|
|
|
if( !$status->isGood() )
|
|
|
|
|
return array(array('cannotdelete', $title->getPrefixedText()));
|
|
|
|
|
|
|
|
|
|
return array();
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-18 20:43:59 +00:00
|
|
|
public function mustBePosted() { return true; }
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getAllowedParams() {
|
2007-12-06 16:06:22 +00:00
|
|
|
return array (
|
|
|
|
|
'title' => null,
|
2008-10-07 14:57:59 +00:00
|
|
|
'pageid' => array(
|
|
|
|
|
ApiBase::PARAM_TYPE => 'integer'
|
|
|
|
|
),
|
2007-12-06 16:06:22 +00:00
|
|
|
'token' => null,
|
|
|
|
|
'reason' => null,
|
2008-03-02 19:00:50 +00:00
|
|
|
'watch' => false,
|
2008-05-19 21:30:03 +00:00
|
|
|
'unwatch' => false,
|
|
|
|
|
'oldimage' => null
|
2007-12-06 16:06:22 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getParamDescription() {
|
2007-12-06 16:06:22 +00:00
|
|
|
return array (
|
2008-10-07 14:57:59 +00:00
|
|
|
'title' => 'Title of the page you want to delete. Cannot be used together with pageid',
|
|
|
|
|
'pageid' => 'Page ID of the page you want to delete. Cannot be used together with title',
|
2007-12-06 16:06:22 +00:00
|
|
|
'token' => 'A delete token previously retrieved through prop=info',
|
2008-03-02 19:00:50 +00:00
|
|
|
'reason' => 'Reason for the deletion. If not set, an automatically generated reason will be used.',
|
|
|
|
|
'watch' => 'Add the page to your watchlist',
|
2008-05-19 21:30:03 +00:00
|
|
|
'unwatch' => 'Remove the page from your watchlist',
|
|
|
|
|
'oldimage' => 'The name of the old image to delete as provided by iiprop=archivename'
|
2007-12-06 16:06:22 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getDescription() {
|
2007-12-06 16:06:22 +00:00
|
|
|
return array(
|
2008-09-07 19:12:41 +00:00
|
|
|
'Delete a page.'
|
2007-12-06 16:06:22 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamples() {
|
|
|
|
|
return array (
|
|
|
|
|
'api.php?action=delete&title=Main%20Page&token=123ABC',
|
|
|
|
|
'api.php?action=delete&title=Main%20Page&token=123ABC&reason=Preparing%20for%20move'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
2007-12-06 18:33:18 +00:00
|
|
|
return __CLASS__ . ': $Id$';
|
2007-12-06 16:06:22 +00:00
|
|
|
}
|
|
|
|
|
}
|