41 parent::__construct( $query, $moduleName,
'lbl' );
49 $this->
run( $resultPageSet );
56 public function run( $resultPageSet =
null ) {
59 if ( isset( $params[
'title'] ) && !isset( $params[
'lang'] ) ) {
62 'apierror-invalidparammix-mustusewith',
70 if ( $params[
'continue'] !==
null ) {
73 $op = $params[
'dir'] ==
'descending' ?
'<=' :
'>=';
74 $this->
addWhere( $db->buildComparison( $op, [
75 'll_lang' => $cont[0],
76 'll_title' => $cont[1],
77 'll_from' => $cont[2],
81 $prop = array_fill_keys( $params[
'prop'],
true );
82 $lllang = isset( $prop[
'lllang'] );
83 $lltitle = isset( $prop[
'lltitle'] );
85 $this->
addTables( [
'langlinks',
'page' ] );
86 $this->
addWhere(
'll_from = page_id' );
88 $this->
addFields( [
'page_id',
'page_title',
'page_namespace',
'page_is_redirect',
89 'll_from',
'll_lang',
'll_title' ] );
91 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
92 if ( isset( $params[
'lang'] ) ) {
94 if ( isset( $params[
'title'] ) ) {
96 $this->
addOption(
'ORDER BY',
'll_from' . $sort );
111 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
120 if ( $resultPageSet ===
null ) {
124 foreach (
$res as $row ) {
125 if ( ++$count > $params[
'limit'] ) {
131 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
136 if ( $resultPageSet !==
null ) {
137 $pages[] = Title::newFromRow( $row );
139 $entry = [
'pageid' => (int)$row->page_id ];
141 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
144 if ( $row->page_is_redirect ) {
145 $entry[
'redirect'] =
true;
149 $entry[
'lllang'] = $row->ll_lang;
153 $entry[
'lltitle'] = $row->ll_title;
156 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $entry );
160 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
167 if ( $resultPageSet ===
null ) {
168 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'll' );
170 $resultPageSet->populateFromTitles( $pages );
186 ParamValidator::PARAM_DEFAULT => 10,
187 ParamValidator::PARAM_TYPE =>
'limit',
188 IntegerDef::PARAM_MIN => 1,
193 ParamValidator::PARAM_ISMULTI =>
true,
194 ParamValidator::PARAM_DEFAULT =>
'',
195 ParamValidator::PARAM_TYPE => [
202 ParamValidator::PARAM_DEFAULT =>
'ascending',
203 ParamValidator::PARAM_TYPE => [
213 'action=query&list=langbacklinks&lbltitle=Test&lbllang=fr'
214 =>
'apihelp-query+langbacklinks-example-simple',
215 'action=query&generator=langbacklinks&glbltitle=Test&glbllang=fr&prop=info'
216 =>
'apihelp-query+langbacklinks-example-generator',
221 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Langbacklinks';
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.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
__construct(ApiQuery $query, $moduleName)
run( $resultPageSet=null)
getHelpUrls()
Return links to more detailed help pages about the module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getExamplesMessages()
Returns usage examples for this module.
executeGenerator( $resultPageSet)
Execute this module as a generator.
This is the main query class.