Localisation updates from http://translatewiki.net.
[mediawiki.git] / includes / api / ApiQueryIWLinks.php
blobf39835a1d6344c5999c5477285fa1b63bd8597dd
1 <?php
2 /**
3 * API for MediaWiki 1.17+
5 * Created on May 14, 2010
7 * Copyright © 2010 Sam Reed
8 * Copyright © 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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
25 * @file
28 /**
29 * A query module to list all interwiki links on a page
31 * @ingroup API
33 class ApiQueryIWLinks extends ApiQueryBase {
35 public function __construct( $query, $moduleName ) {
36 parent::__construct( $query, $moduleName, 'iw' );
39 public function execute() {
40 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
41 return;
44 $params = $this->extractRequestParams();
46 if ( isset( $params['title'] ) && !isset( $params['prefix'] ) ) {
47 $this->dieUsageMsg( array( 'missingparam', 'prefix' ) );
50 $this->addFields( array(
51 'iwl_from',
52 'iwl_prefix',
53 'iwl_title'
54 ) );
56 $this->addTables( 'iwlinks' );
57 $this->addWhereFld( 'iwl_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
59 if ( !is_null( $params['continue'] ) ) {
60 $cont = explode( '|', $params['continue'] );
61 if ( count( $cont ) != 3 ) {
62 $this->dieUsage( 'Invalid continue param. You should pass the ' .
63 'original value returned by the previous query', '_badcontinue' );
65 $op = $params['dir'] == 'descending' ? '<' : '>';
66 $db = $this->getDB();
67 $iwlfrom = intval( $cont[0] );
68 $iwlprefix = $db->addQuotes( $cont[1] );
69 $iwltitle = $db->addQuotes( $this->titleToKey( $cont[2] ) );
70 $this->addWhere(
71 "iwl_from $op $iwlfrom OR " .
72 "(iwl_from = $iwlfrom AND " .
73 "(iwl_prefix $op $iwlprefix OR " .
74 "(iwl_prefix = $iwlprefix AND " .
75 "iwl_title $op= $iwltitle)))"
79 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
80 if ( isset( $params['prefix'] ) ) {
81 $this->addWhereFld( 'iwl_prefix', $params['prefix'] );
82 if ( isset( $params['title'] ) ) {
83 $this->addWhereFld( 'iwl_title', $params['title'] );
84 $this->addOption( 'ORDER BY', 'iwl_from' . $sort );
85 } else {
86 $this->addOption( 'ORDER BY', array(
87 'iwl_title' . $sort,
88 'iwl_from' . $sort
89 ));
91 } else {
92 // Don't order by iwl_from if it's constant in the WHERE clause
93 if ( count( $this->getPageSet()->getGoodTitles() ) == 1 ) {
94 $this->addOption( 'ORDER BY', 'iwl_prefix' . $sort );
95 } else {
96 $this->addOption( 'ORDER BY', array (
97 'iwl_from' . $sort,
98 'iwl_prefix' . $sort
99 ));
103 $this->addOption( 'LIMIT', $params['limit'] + 1 );
104 $res = $this->select( __METHOD__ );
106 $count = 0;
107 foreach ( $res as $row ) {
108 if ( ++$count > $params['limit'] ) {
109 // We've reached the one extra which shows that
110 // there are additional pages to be had. Stop here...
111 $this->setContinueEnumParameter( 'continue', "{$row->iwl_from}|{$row->iwl_prefix}|{$row->iwl_title}" );
112 break;
114 $entry = array( 'prefix' => $row->iwl_prefix );
116 if ( $params['url'] ) {
117 $title = Title::newFromText( "{$row->iwl_prefix}:{$row->iwl_title}" );
118 if ( $title ) {
119 $entry['url'] = wfExpandUrl( $title->getFullURL(), PROTO_CURRENT );
123 ApiResult::setContent( $entry, $row->iwl_title );
124 $fit = $this->addPageSubItem( $row->iwl_from, $entry );
125 if ( !$fit ) {
126 $this->setContinueEnumParameter( 'continue', "{$row->iwl_from}|{$row->iwl_prefix}|{$row->iwl_title}" );
127 break;
132 public function getCacheMode( $params ) {
133 return 'public';
136 public function getAllowedParams() {
137 return array(
138 'url' => false,
139 'limit' => array(
140 ApiBase::PARAM_DFLT => 10,
141 ApiBase::PARAM_TYPE => 'limit',
142 ApiBase::PARAM_MIN => 1,
143 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
144 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
146 'continue' => null,
147 'prefix' => null,
148 'title' => null,
149 'dir' => array(
150 ApiBase::PARAM_DFLT => 'ascending',
151 ApiBase::PARAM_TYPE => array(
152 'ascending',
153 'descending'
159 public function getParamDescription() {
160 return array(
161 'url' => 'Whether to get the full URL',
162 'limit' => 'How many interwiki links to return',
163 'continue' => 'When more results are available, use this to continue',
164 'prefix' => 'Prefix for the interwiki',
165 'title' => "Interwiki link to search for. Must be used with {$this->getModulePrefix()}prefix",
166 'dir' => 'The direction in which to list',
170 public function getDescription() {
171 return 'Returns all interwiki links from the given page(s)';
174 public function getPossibleErrors() {
175 return array_merge( parent::getPossibleErrors(), array(
176 array( 'missingparam', 'prefix' ),
177 array( 'code' => '_badcontinue', 'info' => 'Invalid continue param. You should pass the original value returned by the previous query' ),
178 ) );
181 public function getExamples() {
182 return array(
183 'api.php?action=query&prop=iwlinks&titles=Main%20Page' => 'Get interwiki links from the [[Main Page]]',
187 public function getVersion() {
188 return __CLASS__ . ': $Id$';