MediaWiki REL1_30
ApiQueryLangLinks.php
Go to the documentation of this file.
1<?php
33
34 public function __construct( ApiQuery $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'll' );
36 }
37
38 public function execute() {
39 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
40 return;
41 }
42
44 $prop = array_flip( (array)$params['prop'] );
45
46 if ( isset( $params['title'] ) && !isset( $params['lang'] ) ) {
47 $this->dieWithError(
48 [
49 'apierror-invalidparammix-mustusewith',
50 $this->encodeParamName( 'title' ),
51 $this->encodeParamName( 'lang' ),
52 ],
53 'invalidparammix'
54 );
55 }
56
57 // Handle deprecated param
58 $this->requireMaxOneParameter( $params, 'url', 'prop' );
59 if ( $params['url'] ) {
60 $prop = [ 'url' => 1 ];
61 }
62
63 $this->addFields( [
64 'll_from',
65 'll_lang',
66 'll_title'
67 ] );
68
69 $this->addTables( 'langlinks' );
70 $this->addWhereFld( 'll_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
71 if ( !is_null( $params['continue'] ) ) {
72 $cont = explode( '|', $params['continue'] );
73 $this->dieContinueUsageIf( count( $cont ) != 2 );
74 $op = $params['dir'] == 'descending' ? '<' : '>';
75 $llfrom = intval( $cont[0] );
76 $lllang = $this->getDB()->addQuotes( $cont[1] );
77 $this->addWhere(
78 "ll_from $op $llfrom OR " .
79 "(ll_from = $llfrom AND " .
80 "ll_lang $op= $lllang)"
81 );
82 }
83
84 // FIXME: (follow-up) To allow extensions to add to the language links, we need
85 // to load them all, add the extra links, then apply paging.
86 // Should not be terrible, it's not going to be more than a few hundred links.
87
88 // Note that, since (ll_from, ll_lang) is a unique key, we don't need
89 // to sort by ll_title to ensure deterministic ordering.
90 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
91 if ( isset( $params['lang'] ) ) {
92 $this->addWhereFld( 'll_lang', $params['lang'] );
93 if ( isset( $params['title'] ) ) {
94 $this->addWhereFld( 'll_title', $params['title'] );
95 }
96 $this->addOption( 'ORDER BY', 'll_from' . $sort );
97 } else {
98 // Don't order by ll_from if it's constant in the WHERE clause
99 if ( count( $this->getPageSet()->getGoodTitles() ) == 1 ) {
100 $this->addOption( 'ORDER BY', 'll_lang' . $sort );
101 } else {
102 $this->addOption( 'ORDER BY', [
103 'll_from' . $sort,
104 'll_lang' . $sort
105 ] );
106 }
107 }
108
109 $this->addOption( 'LIMIT', $params['limit'] + 1 );
110 $res = $this->select( __METHOD__ );
111
112 $count = 0;
113 foreach ( $res as $row ) {
114 if ( ++$count > $params['limit'] ) {
115 // We've reached the one extra which shows that
116 // there are additional pages to be had. Stop here...
117 $this->setContinueEnumParameter( 'continue', "{$row->ll_from}|{$row->ll_lang}" );
118 break;
119 }
120 $entry = [ 'lang' => $row->ll_lang ];
121 if ( isset( $prop['url'] ) ) {
122 $title = Title::newFromText( "{$row->ll_lang}:{$row->ll_title}" );
123 if ( $title ) {
124 $entry['url'] = wfExpandUrl( $title->getFullURL(), PROTO_CURRENT );
125 }
126 }
127 if ( isset( $prop['langname'] ) ) {
128 $entry['langname'] = Language::fetchLanguageName( $row->ll_lang, $params['inlanguagecode'] );
129 }
130 if ( isset( $prop['autonym'] ) ) {
131 $entry['autonym'] = Language::fetchLanguageName( $row->ll_lang );
132 }
133 ApiResult::setContentValue( $entry, 'title', $row->ll_title );
134 $fit = $this->addPageSubItem( $row->ll_from, $entry );
135 if ( !$fit ) {
136 $this->setContinueEnumParameter( 'continue', "{$row->ll_from}|{$row->ll_lang}" );
137 break;
138 }
139 }
140 }
141
142 public function getCacheMode( $params ) {
143 return 'public';
144 }
145
146 public function getAllowedParams() {
147 global $wgContLang;
148 return [
149 'prop' => [
152 'url',
153 'langname',
154 'autonym',
155 ],
157 ],
158 'lang' => null,
159 'title' => null,
160 'dir' => [
161 ApiBase::PARAM_DFLT => 'ascending',
163 'ascending',
164 'descending'
165 ]
166 ],
167 'inlanguagecode' => $wgContLang->getCode(),
168 'limit' => [
170 ApiBase::PARAM_TYPE => 'limit',
174 ],
175 'continue' => [
176 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
177 ],
178 'url' => [
179 ApiBase::PARAM_DFLT => false,
181 ],
182 ];
183 }
184
185 protected function getExamplesMessages() {
186 return [
187 'action=query&prop=langlinks&titles=Main%20Page&redirects='
188 => 'apihelp-query+langlinks-example-simple',
189 ];
190 }
191
192 public function getHelpUrls() {
193 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Langlinks';
194 }
195}
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
Definition ApiBase.php:100
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
Definition ApiBase.php:109
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition ApiBase.php:721
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition ApiBase.php:94
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1855
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:2026
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:91
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:52
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:740
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:160
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition ApiBase.php:103
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:225
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:814
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:128
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:227
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:55
This is a base class for all Query modules.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
addFields( $value)
Add a set of fields to select to the internal array.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
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)
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
getPageSet()
Get the PageSet object to work on.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
This is the main query class.
Definition ApiQuery.php:40
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
$res
Definition database.txt:21
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 local content language as $wgContLang
Definition design.txt:57
null for the local 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:1610
const PROTO_CURRENT
Definition Defines.php:223
$sort
$params