MediaWiki REL1_39
ApiQueryIWBacklinks.php
Go to the documentation of this file.
1<?php
28
34
39 public function __construct( ApiQuery $query, $moduleName ) {
40 parent::__construct( $query, $moduleName, 'iwbl' );
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['prefix'] ) ) {
59 $this->dieWithError(
60 [
61 'apierror-invalidparammix-mustusewith',
62 $this->encodeParamName( 'title' ),
63 $this->encodeParamName( 'prefix' ),
64 ],
65 'invalidparammix'
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 "iwl_prefix $op $prefix OR " .
80 "(iwl_prefix = $prefix AND " .
81 "(iwl_title $op $title OR " .
82 "(iwl_title = $title AND " .
83 "iwl_from $op= $from)))"
84 );
85 }
86
87 $prop = array_fill_keys( $params['prop'], true );
88 $iwprefix = isset( $prop['iwprefix'] );
89 $iwtitle = isset( $prop['iwtitle'] );
90
91 $this->addTables( [ 'iwlinks', 'page' ] );
92 $this->addWhere( 'iwl_from = page_id' );
93
94 $this->addFields( [ 'page_id', 'page_title', 'page_namespace', 'page_is_redirect',
95 'iwl_from', 'iwl_prefix', 'iwl_title' ] );
96
97 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
98 if ( isset( $params['prefix'] ) ) {
99 $this->addWhereFld( 'iwl_prefix', $params['prefix'] );
100 if ( isset( $params['title'] ) ) {
101 $this->addWhereFld( 'iwl_title', $params['title'] );
102 $this->addOption( 'ORDER BY', 'iwl_from' . $sort );
103 } else {
104 $this->addOption( 'ORDER BY', [
105 'iwl_title' . $sort,
106 'iwl_from' . $sort
107 ] );
108 }
109 } else {
110 $this->addOption( 'ORDER BY', [
111 'iwl_prefix' . $sort,
112 'iwl_title' . $sort,
113 'iwl_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...
134 // Continue string preserved in case the redirect query doesn't
135 // pass the limit
137 'continue',
138 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
139 );
140 break;
141 }
142
143 if ( $resultPageSet !== null ) {
144 $pages[] = Title::newFromRow( $row );
145 } else {
146 $entry = [ 'pageid' => (int)$row->page_id ];
147
148 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
150
151 if ( $row->page_is_redirect ) {
152 $entry['redirect'] = true;
153 }
154
155 if ( $iwprefix ) {
156 $entry['iwprefix'] = $row->iwl_prefix;
157 }
158
159 if ( $iwtitle ) {
160 $entry['iwtitle'] = $row->iwl_title;
161 }
162
163 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $entry );
164 if ( !$fit ) {
166 'continue',
167 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
168 );
169 break;
170 }
171 }
172 }
173
174 if ( $resultPageSet === null ) {
175 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'iw' );
176 } else {
177 $resultPageSet->populateFromTitles( $pages );
178 }
179 }
180
181 public function getCacheMode( $params ) {
182 return 'public';
183 }
184
185 public function getAllowedParams() {
186 return [
187 'prefix' => null,
188 'title' => null,
189 'continue' => [
190 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
191 ],
192 'limit' => [
193 ParamValidator::PARAM_DEFAULT => 10,
194 ParamValidator::PARAM_TYPE => 'limit',
195 IntegerDef::PARAM_MIN => 1,
196 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
197 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
198 ],
199 'prop' => [
200 ParamValidator::PARAM_ISMULTI => true,
201 ParamValidator::PARAM_DEFAULT => '',
202 ParamValidator::PARAM_TYPE => [
203 'iwprefix',
204 'iwtitle',
205 ],
207 ],
208 'dir' => [
209 ParamValidator::PARAM_DEFAULT => 'ascending',
210 ParamValidator::PARAM_TYPE => [
211 'ascending',
212 'descending'
213 ]
214 ],
215 ];
216 }
217
218 protected function getExamplesMessages() {
219 return [
220 'action=query&list=iwbacklinks&iwbltitle=Test&iwblprefix=wikibooks'
221 => 'apihelp-query+iwbacklinks-example-simple',
222 'action=query&generator=iwbacklinks&giwbltitle=Test&giwblprefix=wikibooks&prop=info'
223 => 'apihelp-query+iwbacklinks-example-generator',
224 ];
225 }
226
227 public function getHelpUrls() {
228 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Iwbacklinks';
229 }
230}
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.