MediaWiki REL1_39
ApiQueryLangBacklinks.php
Go to the documentation of this file.
1<?php
28
34
39 public function __construct( ApiQuery $query, $moduleName ) {
40 parent::__construct( $query, $moduleName, 'lbl' );
41 }
42
43 public function execute() {
44 $this->run();
45 }
46
47 public function executeGenerator( $resultPageSet ) {
48 $this->run( $resultPageSet );
49 }
50
55 public function run( $resultPageSet = null ) {
56 $params = $this->extractRequestParams();
57
58 if ( isset( $params['title'] ) && !isset( $params['lang'] ) ) {
59 $this->dieWithError(
60 [
61 'apierror-invalidparammix-mustusewith',
62 $this->encodeParamName( 'title' ),
63 $this->encodeParamName( 'lang' )
64 ],
65 'nolang'
66 );
67 }
68
69 if ( $params['continue'] !== null ) {
70 $cont = explode( '|', $params['continue'] );
71 $this->dieContinueUsageIf( count( $cont ) != 3 );
72
73 $db = $this->getDB();
74 $op = $params['dir'] == 'descending' ? '<' : '>';
75 $prefix = $db->addQuotes( $cont[0] );
76 $title = $db->addQuotes( $cont[1] );
77 $from = (int)$cont[2];
78 $this->addWhere(
79 "ll_lang $op $prefix OR " .
80 "(ll_lang = $prefix AND " .
81 "(ll_title $op $title OR " .
82 "(ll_title = $title AND " .
83 "ll_from $op= $from)))"
84 );
85 }
86
87 $prop = array_fill_keys( $params['prop'], true );
88 $lllang = isset( $prop['lllang'] );
89 $lltitle = isset( $prop['lltitle'] );
90
91 $this->addTables( [ 'langlinks', 'page' ] );
92 $this->addWhere( 'll_from = page_id' );
93
94 $this->addFields( [ 'page_id', 'page_title', 'page_namespace', 'page_is_redirect',
95 'll_from', 'll_lang', 'll_title' ] );
96
97 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
98 if ( isset( $params['lang'] ) ) {
99 $this->addWhereFld( 'll_lang', $params['lang'] );
100 if ( isset( $params['title'] ) ) {
101 $this->addWhereFld( 'll_title', $params['title'] );
102 $this->addOption( 'ORDER BY', 'll_from' . $sort );
103 } else {
104 $this->addOption( 'ORDER BY', [
105 'll_title' . $sort,
106 'll_from' . $sort
107 ] );
108 }
109 } else {
110 $this->addOption( 'ORDER BY', [
111 'll_lang' . $sort,
112 'll_title' . $sort,
113 'll_from' . $sort
114 ] );
115 }
116
117 $this->addOption( 'LIMIT', $params['limit'] + 1 );
118
119 $res = $this->select( __METHOD__ );
120
121 $pages = [];
122
123 $count = 0;
124 $result = $this->getResult();
125
126 if ( $resultPageSet === null ) {
127 $this->executeGenderCacheFromResultWrapper( $res, __METHOD__ );
128 }
129
130 foreach ( $res as $row ) {
131 if ( ++$count > $params['limit'] ) {
132 // We've reached the one extra which shows that there are
133 // additional pages to be had. Stop here... Continue string
134 // preserved in case the redirect query doesn't pass the limit.
136 'continue',
137 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
138 );
139 break;
140 }
141
142 if ( $resultPageSet !== null ) {
143 $pages[] = Title::newFromRow( $row );
144 } else {
145 $entry = [ 'pageid' => (int)$row->page_id ];
146
147 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
149
150 if ( $row->page_is_redirect ) {
151 $entry['redirect'] = true;
152 }
153
154 if ( $lllang ) {
155 $entry['lllang'] = $row->ll_lang;
156 }
157
158 if ( $lltitle ) {
159 $entry['lltitle'] = $row->ll_title;
160 }
161
162 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $entry );
163 if ( !$fit ) {
165 'continue',
166 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
167 );
168 break;
169 }
170 }
171 }
172
173 if ( $resultPageSet === null ) {
174 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'll' );
175 } else {
176 $resultPageSet->populateFromTitles( $pages );
177 }
178 }
179
180 public function getCacheMode( $params ) {
181 return 'public';
182 }
183
184 public function getAllowedParams() {
185 return [
186 'lang' => null,
187 'title' => null,
188 'continue' => [
189 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
190 ],
191 'limit' => [
192 ParamValidator::PARAM_DEFAULT => 10,
193 ParamValidator::PARAM_TYPE => 'limit',
194 IntegerDef::PARAM_MIN => 1,
195 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
196 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
197 ],
198 'prop' => [
199 ParamValidator::PARAM_ISMULTI => true,
200 ParamValidator::PARAM_DEFAULT => '',
201 ParamValidator::PARAM_TYPE => [
202 'lllang',
203 'lltitle',
204 ],
206 ],
207 'dir' => [
208 ParamValidator::PARAM_DEFAULT => 'ascending',
209 ParamValidator::PARAM_TYPE => [
210 'ascending',
211 'descending'
212 ]
213 ],
214 ];
215 }
216
217 protected function getExamplesMessages() {
218 return [
219 'action=query&list=langbacklinks&lbltitle=Test&lbllang=fr'
220 => 'apihelp-query+langbacklinks-example-simple',
221 'action=query&generator=langbacklinks&glbltitle=Test&glbllang=fr&prop=info'
222 => 'apihelp-query+langbacklinks-example-generator',
223 ];
224 }
225
226 public function getHelpUrls() {
227 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Langbacklinks';
228 }
229}
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1454
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:1643
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
Definition ApiBase.php:196
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:221
getResult()
Get the result object.
Definition ApiBase.php:629
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:765
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:163
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:223
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:498
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
getDB()
Get the Query database connection (read-only)
executeGenderCacheFromResultWrapper(IResultWrapper $res, $fname=__METHOD__, $fieldPrefix='page')
Preprocess the result set to fill the GenderCache with the necessary information before using self::a...
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
encodeParamName( $paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
This is the main query class.
Definition ApiQuery.php:41
Service for formatting and validating API parameters.
Type definition for integer types.