Arg, of course I forgot that again.
[mediawiki.git] / includes / api / ApiQueryAllLinks.php
blob6a77778e91560d1e9bf3fbed03c6c51af058424b
1 <?php
3 /*
4 * Created on July 7, 2007
6 * API for MediaWiki 1.8+
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ('ApiQueryBase.php');
31 /**
32 * Query module to enumerate links from all pages together.
34 * @ingroup API
36 class ApiQueryAllLinks extends ApiQueryGeneratorBase {
38 public function __construct($query, $moduleName) {
39 parent :: __construct($query, $moduleName, 'al');
42 public function execute() {
43 $this->run();
46 public function executeGenerator($resultPageSet) {
47 $this->run($resultPageSet);
50 private function run($resultPageSet = null) {
52 $db = $this->getDB();
53 $params = $this->extractRequestParams();
55 $prop = array_flip($params['prop']);
56 $fld_ids = isset($prop['ids']);
57 $fld_title = isset($prop['title']);
59 if ($params['unique']) {
60 if (!is_null($resultPageSet))
61 $this->dieUsage($this->getModuleName() . ' cannot be used as a generator in unique links mode', 'params');
62 if ($fld_ids)
63 $this->dieUsage($this->getModuleName() . ' cannot return corresponding page ids in unique links mode', 'params');
64 $this->addOption('DISTINCT');
67 $this->addTables('pagelinks');
68 $this->addWhereFld('pl_namespace', $params['namespace']);
70 if (!is_null($params['from']) && !is_null($params['continue']))
71 $this->dieUsage('alcontinue and alfrom cannot be used together', 'params');
72 if (!is_null($params['continue']))
74 $arr = explode('|', $params['continue']);
75 if(count($arr) != 2)
76 $this->dieUsage("Invalid continue parameter", 'badcontinue');
77 $params['from'] = $arr[0]; // Handled later
78 $id = intval($arr[1]);
79 $this->addWhere("pl_from >= $id");
82 if (!is_null($params['from']))
83 $this->addWhere('pl_title>=' . $db->addQuotes(ApiQueryBase :: titleToKey($params['from'])));
84 if (isset ($params['prefix']))
85 $this->addWhere("pl_title LIKE '" . $db->escapeLike(ApiQueryBase :: titleToKey($params['prefix'])) . "%'");
87 if (is_null($resultPageSet)) {
88 $this->addFields(array (
89 'pl_namespace',
90 'pl_title',
91 'pl_from'
92 ));
93 } else {
94 $this->addFields('pl_from');
95 $pageids = array();
98 $this->addOption('USE INDEX', 'pl_namespace');
99 $limit = $params['limit'];
100 $this->addOption('LIMIT', $limit+1);
101 $this->addOption('ORDER BY', 'pl_title');
103 $res = $this->select(__METHOD__);
105 $data = array ();
106 $count = 0;
107 while ($row = $db->fetchObject($res)) {
108 if (++ $count > $limit) {
109 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
110 // TODO: Security issue - if the user has no right to view next title, it will still be shown
111 $this->setContinueEnumParameter('continue', ApiQueryBase :: keyToTitle($row->pl_title) . "|" . $row->pl_from);
112 break;
115 if (is_null($resultPageSet)) {
116 $vals = array();
117 if ($fld_ids)
118 $vals['fromid'] = intval($row->pl_from);
119 if ($fld_title) {
120 $title = Title :: makeTitle($row->pl_namespace, $row->pl_title);
121 $vals['ns'] = intval($title->getNamespace());
122 $vals['title'] = $title->getPrefixedText();
124 $data[] = $vals;
125 } else {
126 $pageids[] = $row->pl_from;
129 $db->freeResult($res);
131 if (is_null($resultPageSet)) {
132 $result = $this->getResult();
133 $result->setIndexedTagName($data, 'l');
134 $result->addValue('query', $this->getModuleName(), $data);
135 } else {
136 $resultPageSet->populateFromPageIDs($pageids);
140 public function getAllowedParams() {
141 return array (
142 'continue' => null,
143 'from' => null,
144 'prefix' => null,
145 'unique' => false,
146 'prop' => array (
147 ApiBase :: PARAM_ISMULTI => true,
148 ApiBase :: PARAM_DFLT => 'title',
149 ApiBase :: PARAM_TYPE => array (
150 'ids',
151 'title'
154 'namespace' => array (
155 ApiBase :: PARAM_DFLT => 0,
156 ApiBase :: PARAM_TYPE => 'namespace'
158 'limit' => array (
159 ApiBase :: PARAM_DFLT => 10,
160 ApiBase :: PARAM_TYPE => 'limit',
161 ApiBase :: PARAM_MIN => 1,
162 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
163 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
168 public function getParamDescription() {
169 return array (
170 'from' => 'The page title to start enumerating from.',
171 'prefix' => 'Search for all page titles that begin with this value.',
172 'unique' => 'Only show unique links. Cannot be used with generator or prop=ids',
173 'prop' => 'What pieces of information to include',
174 'namespace' => 'The namespace to enumerate.',
175 'limit' => 'How many total links to return.'
179 public function getDescription() {
180 return 'Enumerate all links that point to a given namespace';
183 protected function getExamples() {
184 return array (
185 'api.php?action=query&list=alllinks&alunique&alfrom=B',
189 public function getVersion() {
190 return __CLASS__ . ': $Id$';