From: Roan Kattouw Date: Sat, 17 Jan 2009 19:52:37 +0000 (+0000) Subject: API: Fixing paging in list=alllinks, which seems to have been broken for a long time... X-Git-Tag: 1.31.0-rc.0~43374 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/ajouter.php?a=commitdiff_plain;h=75eaf96468096abf730eb112250adf4edecb52e7;p=lhc%2Fweb%2Fwiklou.git API: Fixing paging in list=alllinks, which seems to have been broken for a long time. Also fix alunique, which simply didn't work. No RELEASE-NOTES entry since I'm gonna backport this to 1.14. --- diff --git a/includes/api/ApiQueryAllLinks.php b/includes/api/ApiQueryAllLinks.php index e81e69fa66..19d35d64d6 100644 --- a/includes/api/ApiQueryAllLinks.php +++ b/includes/api/ApiQueryAllLinks.php @@ -74,9 +74,11 @@ class ApiQueryAllLinks extends ApiQueryGeneratorBase { $arr = explode('|', $params['continue']); if(count($arr) != 2) $this->dieUsage("Invalid continue parameter", 'badcontinue'); - $params['from'] = $arr[0]; // Handled later + $from = $this->getDB()->strencode($this->titleToKey($arr[0])); $id = intval($arr[1]); - $this->addWhere("pl_from >= $id"); + $this->addWhere("pl_title > '$from' OR " . + "(pl_title = '$from' AND " . + "pl_from > $id)"); } if (!is_null($params['from'])) @@ -85,19 +87,17 @@ class ApiQueryAllLinks extends ApiQueryGeneratorBase { $this->addWhere("pl_title LIKE '" . $db->escapeLike($this->titlePartToKey($params['prefix'])) . "%'"); $this->addFields(array ( - 'pl_namespace', 'pl_title', - 'pl_from' )); + $this->addFieldsIf('pl_from', !$params['unique']); $this->addOption('USE INDEX', 'pl_namespace'); $limit = $params['limit']; $this->addOption('LIMIT', $limit+1); - # Only order by pl_namespace if it isn't constant in the WHERE clause - if(count($params['namespace']) != 1) - $this->addOption('ORDER BY', 'pl_namespace, pl_title'); - else + if($params['unique']) $this->addOption('ORDER BY', 'pl_title'); + else + $this->addOption('ORDER BY', 'pl_title, pl_from'); $res = $this->select(__METHOD__); @@ -107,7 +107,10 @@ class ApiQueryAllLinks extends ApiQueryGeneratorBase { if (++ $count > $limit) { // We've reached the one extra which shows that there are additional pages to be had. Stop here... // TODO: Security issue - if the user has no right to view next title, it will still be shown - $this->setContinueEnumParameter('continue', $this->keyToTitle($row->pl_title) . "|" . $row->pl_from); + if($params['unique']) + $this->setContinueEnumParameter('from', $this->keyToTitle($row->pl_title)); + else + $this->setContinueEnumParameter('continue', $this->keyToTitle($row->pl_title) . "|" . $row->pl_from); break; } @@ -116,7 +119,7 @@ class ApiQueryAllLinks extends ApiQueryGeneratorBase { if ($fld_ids) $vals['fromid'] = intval($row->pl_from); if ($fld_title) { - $title = Title :: makeTitle($row->pl_namespace, $row->pl_title); + $title = Title :: makeTitle($params['namespace'], $row->pl_title); $vals['ns'] = intval($title->getNamespace()); $vals['title'] = $title->getPrefixedText(); }