37 parent::__construct( $query, $moduleName,
'iwbl' );
45 $this->
run( $resultPageSet );
52 public function run( $resultPageSet =
null ) {
55 if ( isset( $params[
'title'] ) && !isset( $params[
'prefix'] ) ) {
58 'apierror-invalidparammix-mustusewith',
66 if ( $params[
'continue'] !==
null ) {
67 $cont = explode(
'|', $params[
'continue'] );
71 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
72 $prefix = $db->addQuotes( $cont[0] );
73 $title = $db->addQuotes( $cont[1] );
74 $from = (int)$cont[2];
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)))"
84 $prop = array_fill_keys( $params[
'prop'],
true );
85 $iwprefix = isset( $prop[
'iwprefix'] );
86 $iwtitle = isset( $prop[
'iwtitle'] );
88 $this->
addTables( [
'iwlinks',
'page' ] );
89 $this->
addWhere(
'iwl_from = page_id' );
91 $this->
addFields( [
'page_id',
'page_title',
'page_namespace',
'page_is_redirect',
92 'iwl_from',
'iwl_prefix',
'iwl_title' ] );
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 );
108 'iwl_prefix' . $sort,
114 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
123 if ( $resultPageSet ===
null ) {
127 foreach (
$res as $row ) {
128 if ( ++$count > $params[
'limit'] ) {
135 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
140 if ( $resultPageSet !==
null ) {
141 $pages[] = Title::newFromRow( $row );
143 $entry = [
'pageid' => (int)$row->page_id ];
145 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
148 if ( $row->page_is_redirect ) {
149 $entry[
'redirect'] =
true;
153 $entry[
'iwprefix'] = $row->iwl_prefix;
157 $entry[
'iwtitle'] = $row->iwl_title;
160 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $entry );
164 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
171 if ( $resultPageSet ===
null ) {
172 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'iw' );
174 $resultPageSet->populateFromTitles( $pages );
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',
225 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Iwbacklinks';
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
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.
getResult()
Get the result object.
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.
getModuleName()
Get the name of the module being executed by this instance.
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 gives links pointing to the given interwiki.
getHelpUrls()
Return links to more detailed help pages about the module.
run( $resultPageSet=null)
executeGenerator( $resultPageSet)
Execute this module as a generator.
getExamplesMessages()
Returns usage examples for this module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiQuery $query, $moduleName)
getCacheMode( $params)
Get the cache mode for the data generated by this module.
This is the main query class.