MediaWiki REL1_37
ApiQueryIWBacklinks.php
Go to the documentation of this file.
1<?php
31
36 public function __construct( ApiQuery $query, $moduleName ) {
37 parent::__construct( $query, $moduleName, 'iwbl' );
38 }
39
40 public function execute() {
41 $this->run();
42 }
43
44 public function executeGenerator( $resultPageSet ) {
45 $this->run( $resultPageSet );
46 }
47
52 public function run( $resultPageSet = null ) {
53 $params = $this->extractRequestParams();
54
55 if ( isset( $params['title'] ) && !isset( $params['prefix'] ) ) {
56 $this->dieWithError(
57 [
58 'apierror-invalidparammix-mustusewith',
59 $this->encodeParamName( 'title' ),
60 $this->encodeParamName( 'prefix' ),
61 ],
62 'invalidparammix'
63 );
64 }
65
66 if ( $params['continue'] !== null ) {
67 $cont = explode( '|', $params['continue'] );
68 $this->dieContinueUsageIf( count( $cont ) != 3 );
69
70 $db = $this->getDB();
71 $op = $params['dir'] == 'descending' ? '<' : '>';
72 $prefix = $db->addQuotes( $cont[0] );
73 $title = $db->addQuotes( $cont[1] );
74 $from = (int)$cont[2];
75 $this->addWhere(
76 "iwl_prefix $op $prefix OR " .
77 "(iwl_prefix = $prefix AND " .
78 "(iwl_title $op $title OR " .
79 "(iwl_title = $title AND " .
80 "iwl_from $op= $from)))"
81 );
82 }
83
84 $prop = array_fill_keys( $params['prop'], true );
85 $iwprefix = isset( $prop['iwprefix'] );
86 $iwtitle = isset( $prop['iwtitle'] );
87
88 $this->addTables( [ 'iwlinks', 'page' ] );
89 $this->addWhere( 'iwl_from = page_id' );
90
91 $this->addFields( [ 'page_id', 'page_title', 'page_namespace', 'page_is_redirect',
92 'iwl_from', 'iwl_prefix', 'iwl_title' ] );
93
94 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
95 if ( isset( $params['prefix'] ) ) {
96 $this->addWhereFld( 'iwl_prefix', $params['prefix'] );
97 if ( isset( $params['title'] ) ) {
98 $this->addWhereFld( 'iwl_title', $params['title'] );
99 $this->addOption( 'ORDER BY', 'iwl_from' . $sort );
100 } else {
101 $this->addOption( 'ORDER BY', [
102 'iwl_title' . $sort,
103 'iwl_from' . $sort
104 ] );
105 }
106 } else {
107 $this->addOption( 'ORDER BY', [
108 'iwl_prefix' . $sort,
109 'iwl_title' . $sort,
110 'iwl_from' . $sort
111 ] );
112 }
113
114 $this->addOption( 'LIMIT', $params['limit'] + 1 );
115
116 $res = $this->select( __METHOD__ );
117
118 $pages = [];
119
120 $count = 0;
121 $result = $this->getResult();
122
123 if ( $resultPageSet === null ) {
124 $this->executeGenderCacheFromResultWrapper( $res, __METHOD__ );
125 }
126
127 foreach ( $res as $row ) {
128 if ( ++$count > $params['limit'] ) {
129 // We've reached the one extra which shows that there are
130 // additional pages to be had. Stop here...
131 // Continue string preserved in case the redirect query doesn't
132 // pass the limit
134 'continue',
135 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
136 );
137 break;
138 }
139
140 if ( $resultPageSet !== null ) {
141 $pages[] = Title::newFromRow( $row );
142 } else {
143 $entry = [ 'pageid' => (int)$row->page_id ];
144
145 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
147
148 if ( $row->page_is_redirect ) {
149 $entry['redirect'] = true;
150 }
151
152 if ( $iwprefix ) {
153 $entry['iwprefix'] = $row->iwl_prefix;
154 }
155
156 if ( $iwtitle ) {
157 $entry['iwtitle'] = $row->iwl_title;
158 }
159
160 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $entry );
161 if ( !$fit ) {
163 'continue',
164 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
165 );
166 break;
167 }
168 }
169 }
170
171 if ( $resultPageSet === null ) {
172 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'iw' );
173 } else {
174 $resultPageSet->populateFromTitles( $pages );
175 }
176 }
177
178 public function getCacheMode( $params ) {
179 return 'public';
180 }
181
182 public function getAllowedParams() {
183 return [
184 'prefix' => null,
185 'title' => null,
186 'continue' => [
187 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
188 ],
189 'limit' => [
191 ApiBase::PARAM_TYPE => 'limit',
195 ],
196 'prop' => [
200 'iwprefix',
201 'iwtitle',
202 ],
204 ],
205 'dir' => [
206 ApiBase::PARAM_DFLT => 'ascending',
208 'ascending',
209 'descending'
210 ]
211 ],
212 ];
213 }
214
215 protected function getExamplesMessages() {
216 return [
217 'action=query&list=iwbacklinks&iwbltitle=Test&iwblprefix=wikibooks'
218 => 'apihelp-query+iwbacklinks-example-simple',
219 'action=query&generator=iwbacklinks&giwbltitle=Test&giwblprefix=wikibooks&prop=info'
220 => 'apihelp-query+iwbacklinks-example-generator',
221 ];
222 }
223
224 public function getHelpUrls() {
225 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Iwbacklinks';
226 }
227}
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1436
const PARAM_MAX2
Definition ApiBase.php:89
const PARAM_MAX
Definition ApiBase.php:85
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:1620
const PARAM_TYPE
Definition ApiBase.php:81
const PARAM_DFLT
Definition ApiBase.php:73
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:93
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:220
getResult()
Get the result object.
Definition ApiBase.php:628
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:764
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:497
const PARAM_ISMULTI
Definition ApiBase.php:77
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:37