41 parent::__construct( $query, $moduleName,
'iwbl' );
49 $this->
run( $resultPageSet );
56 public function run( $resultPageSet =
null ) {
59 if ( isset( $params[
'title'] ) && !isset( $params[
'prefix'] ) ) {
62 'apierror-invalidparammix-mustusewith',
70 if ( $params[
'continue'] !==
null ) {
73 $op = $params[
'dir'] ==
'descending' ?
'<=' :
'>=';
74 $this->
addWhere( $db->buildComparison( $op, [
75 'iwl_prefix' => $cont[0],
76 'iwl_title' => $cont[1],
77 'iwl_from' => $cont[2],
81 $prop = array_fill_keys( $params[
'prop'],
true );
82 $iwprefix = isset( $prop[
'iwprefix'] );
83 $iwtitle = isset( $prop[
'iwtitle'] );
85 $this->
addTables( [
'iwlinks',
'page' ] );
86 $this->
addWhere(
'iwl_from = page_id' );
88 $this->
addFields( [
'page_id',
'page_title',
'page_namespace',
'page_is_redirect',
89 'iwl_from',
'iwl_prefix',
'iwl_title' ] );
91 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
92 if ( isset( $params[
'prefix'] ) ) {
93 $this->
addWhereFld(
'iwl_prefix', $params[
'prefix'] );
94 if ( isset( $params[
'title'] ) ) {
95 $this->
addWhereFld(
'iwl_title', $params[
'title'] );
96 $this->
addOption(
'ORDER BY',
'iwl_from' . $sort );
105 'iwl_prefix' . $sort,
111 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
120 if ( $resultPageSet ===
null ) {
124 foreach (
$res as $row ) {
125 if ( ++$count > $params[
'limit'] ) {
132 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
137 if ( $resultPageSet !==
null ) {
138 $pages[] = Title::newFromRow( $row );
140 $entry = [
'pageid' => (int)$row->page_id ];
142 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
145 if ( $row->page_is_redirect ) {
146 $entry[
'redirect'] =
true;
150 $entry[
'iwprefix'] = $row->iwl_prefix;
154 $entry[
'iwtitle'] = $row->iwl_title;
157 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $entry );
161 "{$row->iwl_prefix}|{$row->iwl_title}|{$row->iwl_from}"
168 if ( $resultPageSet ===
null ) {
169 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'iw' );
171 $resultPageSet->populateFromTitles( $pages );
187 ParamValidator::PARAM_DEFAULT => 10,
188 ParamValidator::PARAM_TYPE =>
'limit',
189 IntegerDef::PARAM_MIN => 1,
194 ParamValidator::PARAM_ISMULTI =>
true,
195 ParamValidator::PARAM_DEFAULT =>
'',
196 ParamValidator::PARAM_TYPE => [
203 ParamValidator::PARAM_DEFAULT =>
'ascending',
204 ParamValidator::PARAM_TYPE => [
214 'action=query&list=iwbacklinks&iwbltitle=Test&iwblprefix=wikibooks'
215 =>
'apihelp-query+iwbacklinks-example-simple',
216 'action=query&generator=iwbacklinks&giwbltitle=Test&giwblprefix=wikibooks&prop=info'
217 =>
'apihelp-query+iwbacklinks-example-generator',
222 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Iwbacklinks';
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
parseContinueParamOrDie(string $continue, array $types)
Parse the 'continue' parameter in the usual format and validate the types of each part,...
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, or 'string' with PARAM_ISMULTI,...
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.