40 parent::__construct( $query, $moduleName,
'iwbl' );
48 $this->
run( $resultPageSet );
55 public function run( $resultPageSet =
null ) {
58 if ( isset( $params[
'title'] ) && !isset( $params[
'prefix'] ) ) {
61 'apierror-invalidparammix-mustusewith',
69 if ( $params[
'continue'] !==
null ) {
70 $cont = explode(
'|', $params[
'continue'] );
74 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
75 $prefix = $db->addQuotes( $cont[0] );
76 $title = $db->addQuotes( $cont[1] );
77 $from = (int)$cont[2];
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)))"
87 $prop = array_fill_keys( $params[
'prop'],
true );
88 $iwprefix = isset( $prop[
'iwprefix'] );
89 $iwtitle = isset( $prop[
'iwtitle'] );
91 $this->
addTables( [
'iwlinks',
'page' ] );
92 $this->
addWhere(
'iwl_from = page_id' );
94 $this->
addFields( [
'page_id',
'page_title',
'page_namespace',
'page_is_redirect',
95 'iwl_from',
'iwl_prefix',
'iwl_title' ] );
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 );
111 'iwl_prefix' . $sort,
117 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
126 if ( $resultPageSet ===
null ) {
130 foreach (
$res as $row ) {
131 if ( ++$count > $params[
'limit'] ) {
138 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
143 if ( $resultPageSet !==
null ) {
144 $pages[] = Title::newFromRow( $row );
146 $entry = [
'pageid' => (int)$row->page_id ];
148 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
151 if ( $row->page_is_redirect ) {
152 $entry[
'redirect'] =
true;
156 $entry[
'iwprefix'] = $row->iwl_prefix;
160 $entry[
'iwtitle'] = $row->iwl_title;
163 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $entry );
167 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
174 if ( $resultPageSet ===
null ) {
175 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'iw' );
177 $resultPageSet->populateFromTitles( $pages );
193 ParamValidator::PARAM_DEFAULT => 10,
194 ParamValidator::PARAM_TYPE =>
'limit',
195 IntegerDef::PARAM_MIN => 1,
200 ParamValidator::PARAM_ISMULTI =>
true,
201 ParamValidator::PARAM_DEFAULT =>
'',
202 ParamValidator::PARAM_TYPE => [
209 ParamValidator::PARAM_DEFAULT =>
'ascending',
210 ParamValidator::PARAM_TYPE => [
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',
228 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.