Go to the documentation of this file.
33 parent::__construct( $query, $moduleName,
'iwbl' );
41 $this->
run( $resultPageSet );
48 public function run( $resultPageSet =
null ) {
51 if ( isset( $params[
'title'] ) && !isset( $params[
'prefix'] ) ) {
54 'apierror-invalidparammix-mustusewith',
62 if ( !is_null( $params[
'continue'] ) ) {
63 $cont = explode(
'|', $params[
'continue'] );
67 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
68 $prefix = $db->addQuotes( $cont[0] );
69 $title = $db->addQuotes( $cont[1] );
70 $from = (int)$cont[2];
72 "iwl_prefix $op $prefix OR " .
73 "(iwl_prefix = $prefix AND " .
74 "(iwl_title $op $title OR " .
75 "(iwl_title = $title AND " .
76 "iwl_from $op= $from)))"
80 $prop = array_flip( $params[
'prop'] );
81 $iwprefix = isset( $prop[
'iwprefix'] );
82 $iwtitle = isset( $prop[
'iwtitle'] );
84 $this->
addTables( [
'iwlinks',
'page' ] );
85 $this->
addWhere(
'iwl_from = page_id' );
87 $this->
addFields( [
'page_id',
'page_title',
'page_namespace',
'page_is_redirect',
88 'iwl_from',
'iwl_prefix',
'iwl_title' ] );
90 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
91 if ( isset( $params[
'prefix'] ) ) {
92 $this->
addWhereFld(
'iwl_prefix', $params[
'prefix'] );
93 if ( isset( $params[
'title'] ) ) {
94 $this->
addWhereFld(
'iwl_title', $params[
'title'] );
104 'iwl_prefix' .
$sort,
110 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
118 foreach (
$res as $row ) {
119 if ( ++$count > $params[
'limit'] ) {
126 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
131 if ( !is_null( $resultPageSet ) ) {
134 $entry = [
'pageid' => (int)$row->page_id ];
139 if ( $row->page_is_redirect ) {
140 $entry[
'redirect'] =
true;
144 $entry[
'iwprefix'] = $row->iwl_prefix;
148 $entry[
'iwtitle'] = $row->iwl_title;
151 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $entry );
155 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
162 if ( is_null( $resultPageSet ) ) {
163 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'iw' );
165 $resultPageSet->populateFromTitles( $pages );
208 'action=query&list=iwbacklinks&iwbltitle=Test&iwblprefix=wikibooks'
209 =>
'apihelp-query+iwbacklinks-example-simple',
210 'action=query&generator=iwbacklinks&giwbltitle=Test&giwblprefix=wikibooks&prop=info'
211 =>
'apihelp-query+iwbacklinks-example-generator',
216 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Iwbacklinks';
addFields( $value)
Add a set of fields to select to the internal array.
This is the main query class.
encodeParamName( $paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getResult()
Get the result object.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
static newFromRow( $row)
Make a Title object from a DB row.
const LIMIT_BIG1
Fast query, standard limit.
getDB()
Get the Query database connection (read-only)
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
executeGenerator( $resultPageSet)
Execute this module as a generator.
getHelpUrls()
Return links to more detailed help pages about the module.
run( $resultPageSet=null)
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
getExamplesMessages()
Returns usage examples for this module.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
This gives links pointing to the given interwiki.
const LIMIT_BIG2
Fast query, apihighlimits limit.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
__construct(ApiQuery $query, $moduleName)
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
addWhere( $value)
Add a set of WHERE clauses to the internal array.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.