MediaWiki  REL1_31
ApiQueryLangLinks.php
Go to the documentation of this file.
1 <?php
29 
30  public function __construct( ApiQuery $query, $moduleName ) {
31  parent::__construct( $query, $moduleName, 'll' );
32  }
33 
34  public function execute() {
35  if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
36  return;
37  }
38 
39  $params = $this->extractRequestParams();
40  $prop = array_flip( (array)$params['prop'] );
41 
42  if ( isset( $params['title'] ) && !isset( $params['lang'] ) ) {
43  $this->dieWithError(
44  [
45  'apierror-invalidparammix-mustusewith',
46  $this->encodeParamName( 'title' ),
47  $this->encodeParamName( 'lang' ),
48  ],
49  'invalidparammix'
50  );
51  }
52 
53  // Handle deprecated param
54  $this->requireMaxOneParameter( $params, 'url', 'prop' );
55  if ( $params['url'] ) {
56  $prop = [ 'url' => 1 ];
57  }
58 
59  $this->addFields( [
60  'll_from',
61  'll_lang',
62  'll_title'
63  ] );
64 
65  $this->addTables( 'langlinks' );
66  $this->addWhereFld( 'll_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
67  if ( !is_null( $params['continue'] ) ) {
68  $cont = explode( '|', $params['continue'] );
69  $this->dieContinueUsageIf( count( $cont ) != 2 );
70  $op = $params['dir'] == 'descending' ? '<' : '>';
71  $llfrom = intval( $cont[0] );
72  $lllang = $this->getDB()->addQuotes( $cont[1] );
73  $this->addWhere(
74  "ll_from $op $llfrom OR " .
75  "(ll_from = $llfrom AND " .
76  "ll_lang $op= $lllang)"
77  );
78  }
79 
80  // FIXME: (follow-up) To allow extensions to add to the language links, we need
81  // to load them all, add the extra links, then apply paging.
82  // Should not be terrible, it's not going to be more than a few hundred links.
83 
84  // Note that, since (ll_from, ll_lang) is a unique key, we don't need
85  // to sort by ll_title to ensure deterministic ordering.
86  $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
87  if ( isset( $params['lang'] ) ) {
88  $this->addWhereFld( 'll_lang', $params['lang'] );
89  if ( isset( $params['title'] ) ) {
90  $this->addWhereFld( 'll_title', $params['title'] );
91  }
92  $this->addOption( 'ORDER BY', 'll_from' . $sort );
93  } else {
94  // Don't order by ll_from if it's constant in the WHERE clause
95  if ( count( $this->getPageSet()->getGoodTitles() ) == 1 ) {
96  $this->addOption( 'ORDER BY', 'll_lang' . $sort );
97  } else {
98  $this->addOption( 'ORDER BY', [
99  'll_from' . $sort,
100  'll_lang' . $sort
101  ] );
102  }
103  }
104 
105  $this->addOption( 'LIMIT', $params['limit'] + 1 );
106  $res = $this->select( __METHOD__ );
107 
108  $count = 0;
109  foreach ( $res as $row ) {
110  if ( ++$count > $params['limit'] ) {
111  // We've reached the one extra which shows that
112  // there are additional pages to be had. Stop here...
113  $this->setContinueEnumParameter( 'continue', "{$row->ll_from}|{$row->ll_lang}" );
114  break;
115  }
116  $entry = [ 'lang' => $row->ll_lang ];
117  if ( isset( $prop['url'] ) ) {
118  $title = Title::newFromText( "{$row->ll_lang}:{$row->ll_title}" );
119  if ( $title ) {
120  $entry['url'] = wfExpandUrl( $title->getFullURL(), PROTO_CURRENT );
121  }
122  }
123  if ( isset( $prop['langname'] ) ) {
124  $entry['langname'] = Language::fetchLanguageName( $row->ll_lang, $params['inlanguagecode'] );
125  }
126  if ( isset( $prop['autonym'] ) ) {
127  $entry['autonym'] = Language::fetchLanguageName( $row->ll_lang );
128  }
129  ApiResult::setContentValue( $entry, 'title', $row->ll_title );
130  $fit = $this->addPageSubItem( $row->ll_from, $entry );
131  if ( !$fit ) {
132  $this->setContinueEnumParameter( 'continue', "{$row->ll_from}|{$row->ll_lang}" );
133  break;
134  }
135  }
136  }
137 
138  public function getCacheMode( $params ) {
139  return 'public';
140  }
141 
142  public function getAllowedParams() {
144  return [
145  'prop' => [
146  ApiBase::PARAM_ISMULTI => true,
148  'url',
149  'langname',
150  'autonym',
151  ],
153  ],
154  'lang' => null,
155  'title' => null,
156  'dir' => [
157  ApiBase::PARAM_DFLT => 'ascending',
159  'ascending',
160  'descending'
161  ]
162  ],
163  'inlanguagecode' => $wgContLang->getCode(),
164  'limit' => [
165  ApiBase::PARAM_DFLT => 10,
166  ApiBase::PARAM_TYPE => 'limit',
167  ApiBase::PARAM_MIN => 1,
170  ],
171  'continue' => [
172  ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
173  ],
174  'url' => [
175  ApiBase::PARAM_DFLT => false,
177  ],
178  ];
179  }
180 
181  protected function getExamplesMessages() {
182  return [
183  'action=query&prop=langlinks&titles=Main%20Page&redirects='
184  => 'apihelp-query+langlinks-example-simple',
185  ];
186  }
187 
188  public function getHelpUrls() {
189  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Langlinks';
190  }
191 }
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:273
ApiQueryBase\addFields
addFields( $value)
Add a set of fields to select to the internal array.
Definition: ApiQueryBase.php:192
ApiQuery
This is the main query class.
Definition: ApiQuery.php:36
array
the array() calling protocol came about after MediaWiki 1.4rc1.
ApiBase\dieWithError
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition: ApiBase.php:1895
ApiBase\PARAM_HELP_MSG
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition: ApiBase.php:124
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:87
$params
$params
Definition: styleTest.css.php:40
$res
$res
Definition: database.txt:21
ApiQueryBase\addOption
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
Definition: ApiQueryBase.php:325
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:37
ApiResult\setContentValue
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
Definition: ApiResult.php:478
ApiBase\PARAM_DEPRECATED
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
Definition: ApiBase.php:105
ApiBase\PARAM_MIN
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition: ApiBase.php:99
ApiQueryBase
This is a base class for all Query modules.
Definition: ApiQueryBase.php:33
ApiBase\LIMIT_BIG1
const LIMIT_BIG1
Fast query, standard limit.
Definition: ApiBase.php:234
ApiQueryBase\getDB
getDB()
Get the Query database connection (read-only)
Definition: ApiQueryBase.php:105
PROTO_CURRENT
const PROTO_CURRENT
Definition: Defines.php:232
ApiBase\PARAM_MAX
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition: ApiBase.php:90
ApiQueryBase\addTables
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
Definition: ApiQueryBase.php:158
ApiQueryBase\select
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
Definition: ApiQueryBase.php:350
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:95
$sort
$sort
Definition: profileinfo.php:317
ApiBase\extractRequestParams
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:749
ApiBase\dieContinueUsageIf
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition: ApiBase.php:2066
ApiBase\encodeParamName
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition: ApiBase.php:730
ApiQueryBase\addWhereFld
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
Definition: ApiQueryBase.php:260
ApiBase\requireMaxOneParameter
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition: ApiBase.php:823
Language\fetchLanguageName
static fetchLanguageName( $code, $inLanguage=null, $include='all')
Definition: Language.php:896
ApiQueryBase\getPageSet
getPageSet()
Get the PageSet object to work on.
Definition: ApiQueryBase.php:130
ApiBase\LIMIT_BIG2
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition: ApiBase.php:236
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:48
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:22
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:51
ApiBase\PARAM_MAX2
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
Definition: ApiBase.php:96
ApiQueryBase\addWhere
addWhere( $value)
Add a set of WHERE clauses to the internal array.
Definition: ApiQueryBase.php:227
ApiQueryBase\setContinueEnumParameter
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
Definition: ApiQueryBase.php:531
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1620
ApiBase\PARAM_HELP_MSG_PER_VALUE
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
Definition: ApiBase.php:157
ApiQueryBase\addPageSubItem
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
Definition: ApiQueryBase.php:510
wfExpandUrl
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
Definition: GlobalFunctions.php:521
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:57