MediaWiki REL1_35
ApiQueryLangBacklinks.php
Go to the documentation of this file.
1<?php
31
32 public function __construct( ApiQuery $query, $moduleName ) {
33 parent::__construct( $query, $moduleName, 'lbl' );
34 }
35
36 public function execute() {
37 $this->run();
38 }
39
40 public function executeGenerator( $resultPageSet ) {
41 $this->run( $resultPageSet );
42 }
43
48 public function run( $resultPageSet = null ) {
49 $params = $this->extractRequestParams();
50
51 if ( isset( $params['title'] ) && !isset( $params['lang'] ) ) {
52 $this->dieWithError(
53 [
54 'apierror-invalidparammix-mustusewith',
55 $this->encodeParamName( 'title' ),
56 $this->encodeParamName( 'lang' )
57 ],
58 'nolang'
59 );
60 }
61
62 if ( $params['continue'] !== null ) {
63 $cont = explode( '|', $params['continue'] );
64 $this->dieContinueUsageIf( count( $cont ) != 3 );
65
66 $db = $this->getDB();
67 $op = $params['dir'] == 'descending' ? '<' : '>';
68 $prefix = $db->addQuotes( $cont[0] );
69 $title = $db->addQuotes( $cont[1] );
70 $from = (int)$cont[2];
71 $this->addWhere(
72 "ll_lang $op $prefix OR " .
73 "(ll_lang = $prefix AND " .
74 "(ll_title $op $title OR " .
75 "(ll_title = $title AND " .
76 "ll_from $op= $from)))"
77 );
78 }
79
80 $prop = array_flip( $params['prop'] );
81 $lllang = isset( $prop['lllang'] );
82 $lltitle = isset( $prop['lltitle'] );
83
84 $this->addTables( [ 'langlinks', 'page' ] );
85 $this->addWhere( 'll_from = page_id' );
86
87 $this->addFields( [ 'page_id', 'page_title', 'page_namespace', 'page_is_redirect',
88 'll_from', 'll_lang', 'll_title' ] );
89
90 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
91 if ( isset( $params['lang'] ) ) {
92 $this->addWhereFld( 'll_lang', $params['lang'] );
93 if ( isset( $params['title'] ) ) {
94 $this->addWhereFld( 'll_title', $params['title'] );
95 $this->addOption( 'ORDER BY', 'll_from' . $sort );
96 } else {
97 $this->addOption( 'ORDER BY', [
98 'll_title' . $sort,
99 'll_from' . $sort
100 ] );
101 }
102 } else {
103 $this->addOption( 'ORDER BY', [
104 'll_lang' . $sort,
105 'll_title' . $sort,
106 'll_from' . $sort
107 ] );
108 }
109
110 $this->addOption( 'LIMIT', $params['limit'] + 1 );
111
112 $res = $this->select( __METHOD__ );
113
114 $pages = [];
115
116 $count = 0;
117 $result = $this->getResult();
118
119 if ( $resultPageSet === null ) {
120 $this->executeGenderCacheFromResultWrapper( $res, __METHOD__ );
121 }
122
123 foreach ( $res as $row ) {
124 if ( ++$count > $params['limit'] ) {
125 // We've reached the one extra which shows that there are
126 // additional pages to be had. Stop here... Continue string
127 // preserved in case the redirect query doesn't pass the limit.
129 'continue',
130 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
131 );
132 break;
133 }
134
135 if ( $resultPageSet !== null ) {
136 $pages[] = Title::newFromRow( $row );
137 } else {
138 $entry = [ 'pageid' => (int)$row->page_id ];
139
140 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
142
143 if ( $row->page_is_redirect ) {
144 $entry['redirect'] = true;
145 }
146
147 if ( $lllang ) {
148 $entry['lllang'] = $row->ll_lang;
149 }
150
151 if ( $lltitle ) {
152 $entry['lltitle'] = $row->ll_title;
153 }
154
155 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $entry );
156 if ( !$fit ) {
158 'continue',
159 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
160 );
161 break;
162 }
163 }
164 }
165
166 if ( $resultPageSet === null ) {
167 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'll' );
168 } else {
169 $resultPageSet->populateFromTitles( $pages );
170 }
171 }
172
173 public function getCacheMode( $params ) {
174 return 'public';
175 }
176
177 public function getAllowedParams() {
178 return [
179 'lang' => null,
180 'title' => null,
181 'continue' => [
182 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
183 ],
184 'limit' => [
186 ApiBase::PARAM_TYPE => 'limit',
190 ],
191 'prop' => [
195 'lllang',
196 'lltitle',
197 ],
199 ],
200 'dir' => [
201 ApiBase::PARAM_DFLT => 'ascending',
203 'ascending',
204 'descending'
205 ]
206 ],
207 ];
208 }
209
210 protected function getExamplesMessages() {
211 return [
212 'action=query&list=langbacklinks&lbltitle=Test&lbllang=fr'
213 => 'apihelp-query+langbacklinks-example-simple',
214 'action=query&generator=langbacklinks&glbltitle=Test&glbllang=fr&prop=info'
215 => 'apihelp-query+langbacklinks-example-generator',
216 ];
217 }
218
219 public function getHelpUrls() {
220 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Langbacklinks';
221 }
222}
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1437
const PARAM_MAX2
Definition ApiBase.php:86
const PARAM_MAX
Definition ApiBase.php:82
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:1617
const PARAM_TYPE
Definition ApiBase.php:78
const PARAM_DFLT
Definition ApiBase.php:70
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:195
const PARAM_MIN
Definition ApiBase.php:90
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:220
getResult()
Get the result object.
Definition ApiBase.php:620
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:772
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:162
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:222
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:499
const PARAM_ISMULTI
Definition ApiBase.php:74
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) Stable to override.
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:37