Update git submodules
[mediawiki.git] / includes / api / ApiQueryLangBacklinks.php
blob1158d072d2dbe5219b4a33da10cc5b7b5ba60ab4
1 <?php
2 /**
3 * API for MediaWiki 1.17+
5 * Copyright © 2011 Sam Reed
6 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
23 * @file
26 use MediaWiki\Title\Title;
27 use Wikimedia\ParamValidator\ParamValidator;
28 use Wikimedia\ParamValidator\TypeDef\IntegerDef;
30 /**
31 * This gives links pointing to the given interwiki
32 * @ingroup API
34 class ApiQueryLangBacklinks extends ApiQueryGeneratorBase {
36 /**
37 * @param ApiQuery $query
38 * @param string $moduleName
40 public function __construct( ApiQuery $query, $moduleName ) {
41 parent::__construct( $query, $moduleName, 'lbl' );
44 public function execute() {
45 $this->run();
48 public function executeGenerator( $resultPageSet ) {
49 $this->run( $resultPageSet );
52 /**
53 * @param ApiPageSet|null $resultPageSet
54 * @return void
56 public function run( $resultPageSet = null ) {
57 $params = $this->extractRequestParams();
59 if ( isset( $params['title'] ) && !isset( $params['lang'] ) ) {
60 $this->dieWithError(
62 'apierror-invalidparammix-mustusewith',
63 $this->encodeParamName( 'title' ),
64 $this->encodeParamName( 'lang' )
66 'nolang'
70 if ( $params['continue'] !== null ) {
71 $cont = $this->parseContinueParamOrDie( $params['continue'], [ 'string', 'string', 'int' ] );
72 $db = $this->getDB();
73 $op = $params['dir'] == 'descending' ? '<=' : '>=';
74 $this->addWhere( $db->buildComparison( $op, [
75 'll_lang' => $cont[0],
76 'll_title' => $cont[1],
77 'll_from' => $cont[2],
78 ] ) );
81 $prop = array_fill_keys( $params['prop'], true );
82 $lllang = isset( $prop['lllang'] );
83 $lltitle = isset( $prop['lltitle'] );
85 $this->addTables( [ 'langlinks', 'page' ] );
86 $this->addWhere( 'll_from = page_id' );
88 $this->addFields( [ 'page_id', 'page_title', 'page_namespace', 'page_is_redirect',
89 'll_from', 'll_lang', 'll_title' ] );
91 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
92 if ( isset( $params['lang'] ) ) {
93 $this->addWhereFld( 'll_lang', $params['lang'] );
94 if ( isset( $params['title'] ) ) {
95 $this->addWhereFld( 'll_title', $params['title'] );
96 $this->addOption( 'ORDER BY', 'll_from' . $sort );
97 } else {
98 $this->addOption( 'ORDER BY', [
99 'll_title' . $sort,
100 'll_from' . $sort
101 ] );
103 } else {
104 $this->addOption( 'ORDER BY', [
105 'll_lang' . $sort,
106 'll_title' . $sort,
107 'll_from' . $sort
108 ] );
111 $this->addOption( 'LIMIT', $params['limit'] + 1 );
113 $res = $this->select( __METHOD__ );
115 $pages = [];
117 $count = 0;
118 $result = $this->getResult();
120 if ( $resultPageSet === null ) {
121 $this->executeGenderCacheFromResultWrapper( $res, __METHOD__ );
124 foreach ( $res as $row ) {
125 if ( ++$count > $params['limit'] ) {
126 // We've reached the one extra which shows that there are
127 // additional pages to be had. Stop here... Continue string
128 // preserved in case the redirect query doesn't pass the limit.
129 $this->setContinueEnumParameter(
130 'continue',
131 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
133 break;
136 if ( $resultPageSet !== null ) {
137 $pages[] = Title::newFromRow( $row );
138 } else {
139 $entry = [ 'pageid' => (int)$row->page_id ];
141 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
142 ApiQueryBase::addTitleInfo( $entry, $title );
144 if ( $row->page_is_redirect ) {
145 $entry['redirect'] = true;
148 if ( $lllang ) {
149 $entry['lllang'] = $row->ll_lang;
152 if ( $lltitle ) {
153 $entry['lltitle'] = $row->ll_title;
156 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $entry );
157 if ( !$fit ) {
158 $this->setContinueEnumParameter(
159 'continue',
160 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
162 break;
167 if ( $resultPageSet === null ) {
168 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'll' );
169 } else {
170 $resultPageSet->populateFromTitles( $pages );
174 public function getCacheMode( $params ) {
175 return 'public';
178 public function getAllowedParams() {
179 return [
180 'lang' => null,
181 'title' => null,
182 'continue' => [
183 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
185 'limit' => [
186 ParamValidator::PARAM_DEFAULT => 10,
187 ParamValidator::PARAM_TYPE => 'limit',
188 IntegerDef::PARAM_MIN => 1,
189 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
190 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
192 'prop' => [
193 ParamValidator::PARAM_ISMULTI => true,
194 ParamValidator::PARAM_DEFAULT => '',
195 ParamValidator::PARAM_TYPE => [
196 'lllang',
197 'lltitle',
199 ApiBase::PARAM_HELP_MSG_PER_VALUE => [],
201 'dir' => [
202 ParamValidator::PARAM_DEFAULT => 'ascending',
203 ParamValidator::PARAM_TYPE => [
204 'ascending',
205 'descending'
211 protected function getExamplesMessages() {
212 return [
213 'action=query&list=langbacklinks&lbltitle=Test&lbllang=fr'
214 => 'apihelp-query+langbacklinks-example-simple',
215 'action=query&generator=langbacklinks&glbltitle=Test&glbllang=fr&prop=info'
216 => 'apihelp-query+langbacklinks-example-generator',
220 public function getHelpUrls() {
221 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Langbacklinks';