Localisation updates: Adding/updating Persian translations
[mediawiki.git] / includes / api / ApiQueryCategories.php
blob16a09ecb4beea48ff7b2c77ba5408859e7602238
1 <?php
3 /*
4 * Created on May 13, 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 * A query module to enumerate categories the set of pages belong to.
34 * @ingroup API
36 class ApiQueryCategories extends ApiQueryGeneratorBase {
38 public function __construct($query, $moduleName) {
39 parent :: __construct($query, $moduleName, 'cl');
42 public function execute() {
43 $this->run();
46 public function executeGenerator($resultPageSet) {
47 $this->run($resultPageSet);
50 private function run($resultPageSet = null) {
52 if ($this->getPageSet()->getGoodTitleCount() == 0)
53 return; // nothing to do
55 $params = $this->extractRequestParams();
56 $prop = $params['prop'];
58 $this->addFields(array (
59 'cl_from',
60 'cl_to'
61 ));
63 $fld_sortkey = $fld_timestamp = false;
64 if (!is_null($prop)) {
65 foreach($prop as $p) {
66 switch ($p) {
67 case 'sortkey':
68 $this->addFields('cl_sortkey');
69 $fld_sortkey = true;
70 break;
71 case 'timestamp':
72 $this->addFields('cl_timestamp');
73 $fld_timestamp = true;
74 break;
75 default :
76 ApiBase :: dieDebug(__METHOD__, "Unknown prop=$p");
81 $this->addTables('categorylinks');
82 $this->addWhereFld('cl_from', array_keys($this->getPageSet()->getGoodTitles()));
83 if(!is_null($params['continue'])) {
84 $cont = explode('|', $params['continue']);
85 if(count($cont) != 2)
86 $this->dieUsage("Invalid continue param. You should pass the " .
87 "original value returned by the previous query", "_badcontinue");
88 $clfrom = intval($cont[0]);
89 $clto = $this->getDb()->strencode($this->titleToKey($cont[1]));
90 $this->addWhere("cl_from > $clfrom OR ".
91 "(cl_from = $clfrom AND ".
92 "cl_to >= '$clto')");
94 # Don't order by cl_from if it's constant in the WHERE clause
95 if(count($this->getPageSet()->getGoodTitles()) == 1)
96 $this->addOption('ORDER BY', 'cl_to');
97 else
98 $this->addOption('ORDER BY', "cl_from, cl_to");
100 $db = $this->getDB();
101 $res = $this->select(__METHOD__);
103 if (is_null($resultPageSet)) {
105 $data = array();
106 $lastId = 0; // database has no ID 0
107 $count = 0;
108 while ($row = $db->fetchObject($res)) {
109 if (++$count > $params['limit']) {
110 // We've reached the one extra which shows that
111 // there are additional pages to be had. Stop here...
112 $this->setContinueEnumParameter('continue', $row->cl_from .
113 '|' . $this->keyToTitle($row->cl_to));
114 break;
116 if ($lastId != $row->cl_from) {
117 if($lastId != 0) {
118 $this->addPageSubItems($lastId, $data);
119 $data = array();
121 $lastId = $row->cl_from;
124 $title = Title :: makeTitle(NS_CATEGORY, $row->cl_to);
126 $vals = array();
127 ApiQueryBase :: addTitleInfo($vals, $title);
128 if ($fld_sortkey)
129 $vals['sortkey'] = $row->cl_sortkey;
130 if ($fld_timestamp)
131 $vals['timestamp'] = $row->cl_timestamp;
133 $data[] = $vals;
136 if($lastId != 0) {
137 $this->addPageSubItems($lastId, $data);
140 } else {
142 $titles = array();
143 while ($row = $db->fetchObject($res)) {
144 if (++$count > $params['limit']) {
145 // We've reached the one extra which shows that
146 // there are additional pages to be had. Stop here...
147 $this->setContinueEnumParameter('continue', $row->cl_from .
148 '|' . $this->keyToTitle($row->cl_to));
149 break;
152 $titles[] = Title :: makeTitle(NS_CATEGORY, $row->cl_to);
154 $resultPageSet->populateFromTitles($titles);
157 $db->freeResult($res);
160 public function getAllowedParams() {
161 return array (
162 'prop' => array (
163 ApiBase :: PARAM_ISMULTI => true,
164 ApiBase :: PARAM_TYPE => array (
165 'sortkey',
166 'timestamp',
169 'limit' => array(
170 ApiBase :: PARAM_DFLT => 10,
171 ApiBase :: PARAM_TYPE => 'limit',
172 ApiBase :: PARAM_MIN => 1,
173 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
174 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
176 'continue' => null,
180 public function getParamDescription() {
181 return array (
182 'prop' => 'Which additional properties to get for each category.',
183 'limit' => 'How many langlinks to return',
184 'continue' => 'When more results are available, use this to continue',
188 public function getDescription() {
189 return 'List all categories the page(s) belong to';
192 protected function getExamples() {
193 return array (
194 "Get a list of categories [[Albert Einstein]] belongs to:",
195 " api.php?action=query&prop=categories&titles=Albert%20Einstein",
196 "Get information about all categories used in the [[Albert Einstein]]:",
197 " api.php?action=query&generator=categories&titles=Albert%20Einstein&prop=info"
201 public function getVersion() {
202 return __CLASS__ . ': $Id$';