37 parent::__construct( $query, $moduleName,
'iw' );
42 if ( $pages === [] ) {
47 $prop = array_fill_keys( (array)$params[
'prop'],
true );
49 if ( isset( $params[
'title'] ) && !isset( $params[
'prefix'] ) ) {
52 'apierror-invalidparammix-mustusewith',
62 if ( $params[
'url'] ) {
63 $prop = [
'url' => 1 ];
73 $this->
addWhereFld(
'iwl_from', array_keys( $pages ) );
75 if ( $params[
'continue'] !==
null ) {
76 $cont = explode(
'|', $params[
'continue'] );
78 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
80 $iwlfrom = (int)$cont[0];
81 $iwlprefix = $db->addQuotes( $cont[1] );
82 $iwltitle = $db->addQuotes( $cont[2] );
84 "iwl_from $op $iwlfrom OR " .
85 "(iwl_from = $iwlfrom AND " .
86 "(iwl_prefix $op $iwlprefix OR " .
87 "(iwl_prefix = $iwlprefix AND " .
88 "iwl_title $op= $iwltitle)))"
92 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
93 if ( isset( $params[
'prefix'] ) ) {
94 $this->
addWhereFld(
'iwl_prefix', $params[
'prefix'] );
95 if ( isset( $params[
'title'] ) ) {
96 $this->
addWhereFld(
'iwl_title', $params[
'title'] );
97 $this->
addOption(
'ORDER BY',
'iwl_from' . $sort );
106 if ( count( $pages ) === 1 ) {
107 $this->
addOption(
'ORDER BY',
'iwl_prefix' . $sort );
111 'iwl_prefix' . $sort,
117 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
121 foreach (
$res as $row ) {
122 if ( ++$count > $params[
'limit'] ) {
127 "{$row->iwl_from}|{$row->iwl_prefix}|{$row->iwl_title}"
131 $entry = [
'prefix' => $row->iwl_prefix ];
133 if ( isset( $prop[
'url'] ) ) {
134 $title = Title::newFromText(
"{$row->iwl_prefix}:{$row->iwl_title}" );
140 ApiResult::setContentValue( $entry,
'title', $row->iwl_title );
145 "{$row->iwl_from}|{$row->iwl_prefix}|{$row->iwl_title}"
159 ParamValidator::PARAM_ISMULTI =>
true,
160 ParamValidator::PARAM_TYPE => [
168 ParamValidator::PARAM_DEFAULT =>
'ascending',
169 ParamValidator::PARAM_TYPE => [
175 ParamValidator::PARAM_DEFAULT => 10,
176 ParamValidator::PARAM_TYPE =>
'limit',
177 IntegerDef::PARAM_MIN => 1,
185 ParamValidator::PARAM_DEFAULT =>
false,
186 ParamValidator::PARAM_DEPRECATED =>
true,
192 $title = Title::newMainPage()->getPrefixedText();
193 $mp = rawurlencode(
$title );
196 "action=query&prop=iwlinks&titles={$mp}"
197 =>
'apihelp-query+iwlinks-example-simple',
202 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Iwlinks';
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
const LIMIT_BIG1
Fast query, standard limit.
requireMaxOneParameter( $params,... $required)
Die if more than one of a certain set of parameters is set and not false.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
const LIMIT_BIG2
Fast query, apihighlimits limit.
This is a base class for all Query modules.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
addFields( $value)
Add a set of fields to select to the internal array.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
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)
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 ] )
getPageSet()
Get the PageSet object to work on.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
A query module to list all interwiki links on a page.
getHelpUrls()
Return links to more detailed help pages about the module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getExamplesMessages()
Returns usage examples for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiQuery $query, $moduleName)
This is the main query class.