5 * Created on Dec 1, 2007
7 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
28 * A query action to return messages from site message cache
32 class ApiQueryAllMessages
extends ApiQueryBase
{
34 public function __construct( ApiQuery
$query, $moduleName ) {
35 parent
::__construct( $query, $moduleName, 'am' );
38 public function execute() {
39 $params = $this->extractRequestParams();
41 if ( is_null( $params['lang'] ) ) {
42 $langObj = $this->getLanguage();
43 } elseif ( !Language
::isValidCode( $params['lang'] ) ) {
44 $this->dieUsage( 'Invalid language code for parameter lang', 'invalidlang' );
46 $langObj = Language
::factory( $params['lang'] );
49 if ( $params['enableparser'] ) {
50 if ( !is_null( $params['title'] ) ) {
51 $title = Title
::newFromText( $params['title'] );
52 if ( !$title ||
$title->isExternal() ) {
53 $this->dieUsageMsg( [ 'invalidtitle', $params['title'] ] );
56 $title = Title
::newFromText( 'API' );
60 $prop = array_flip( (array)$params['prop'] );
62 // Determine which messages should we print
63 if ( in_array( '*', $params['messages'] ) ) {
64 $message_names = Language
::getMessageKeysFor( $langObj->getCode() );
65 if ( $params['includelocal'] ) {
66 $message_names = array_unique( array_merge(
68 // Pass in the content language code so we get local messages that have a
69 // MediaWiki:msgkey page. We might theoretically miss messages that have no
70 // MediaWiki:msgkey page but do have a MediaWiki:msgkey/lang page, but that's
71 // just a stupid case.
72 MessageCache
::singleton()->getAllMessageKeys( $this->getConfig()->get( 'LanguageCode' ) )
75 sort( $message_names );
76 $messages_target = $message_names;
78 $messages_target = $params['messages'];
81 // Filter messages that have the specified prefix
82 // Because we sorted the message array earlier, they will appear in a clump:
83 if ( isset( $params['prefix'] ) ) {
85 $messages_filtered = [];
86 foreach ( $messages_target as $message ) {
87 // === 0: must be at beginning of string (position 0)
88 if ( strpos( $message, $params['prefix'] ) === 0 ) {
92 $messages_filtered[] = $message;
97 $messages_target = $messages_filtered;
100 // Filter messages that contain specified string
101 if ( isset( $params['filter'] ) ) {
102 $messages_filtered = [];
103 foreach ( $messages_target as $message ) {
104 // !== is used because filter can be at the beginning of the string
105 if ( strpos( $message, $params['filter'] ) !== false ) {
106 $messages_filtered[] = $message;
109 $messages_target = $messages_filtered;
112 // Whether we have any sort of message customisation filtering
113 $customiseFilterEnabled = $params['customised'] !== 'all';
114 if ( $customiseFilterEnabled ) {
117 $customisedMessages = AllMessagesTablePager
::getCustomisedStatuses(
119 [ $langObj, 'ucfirst' ],
123 !$langObj->equals( $wgContLang )
126 $customised = $params['customised'] === 'modified';
129 // Get all requested messages and print the result
130 $skip = !is_null( $params['from'] );
131 $useto = !is_null( $params['to'] );
132 $result = $this->getResult();
133 foreach ( $messages_target as $message ) {
134 // Skip all messages up to $params['from']
135 if ( $skip && $message === $params['from'] ) {
139 if ( $useto && $message > $params['to'] ) {
146 'normalizedname' => MessageCache
::normalizeKey( $message ),
150 if ( isset( $params['args'] ) && count( $params['args'] ) != 0 ) {
151 $args = $params['args'];
154 if ( $customiseFilterEnabled ) {
155 $messageIsCustomised = isset( $customisedMessages['pages'][$langObj->ucfirst( $message )] );
156 if ( $customised === $messageIsCustomised ) {
158 $a['customised'] = true;
165 $msg = wfMessage( $message, $args )->inLanguage( $langObj );
167 if ( !$msg->exists() ) {
168 $a['missing'] = true;
170 // Check if the parser is enabled:
171 if ( $params['enableparser'] ) {
172 $msgString = $msg->title( $title )->text();
174 $msgString = $msg->plain();
176 if ( !$params['nocontent'] ) {
177 ApiResult
::setContentValue( $a, 'content', $msgString );
179 if ( isset( $prop['default'] ) ) {
180 $default = wfMessage( $message )->inLanguage( $langObj )->useDatabase( false );
181 if ( !$default->exists() ) {
182 $a['defaultmissing'] = true;
183 } elseif ( $default->plain() != $msgString ) {
184 $a['default'] = $default->plain();
188 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $a );
190 $this->setContinueEnumParameter( 'from', $message );
195 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'message' );
198 public function getCacheMode( $params ) {
199 if ( is_null( $params['lang'] ) ) {
200 // Language not specified, will be fetched from preferences
201 return 'anon-public-user-private';
202 } elseif ( $params['enableparser'] ) {
203 // User-specific parser options will be used
204 return 'anon-public-user-private';
211 public function getAllowedParams() {
214 ApiBase
::PARAM_DFLT
=> '*',
215 ApiBase
::PARAM_ISMULTI
=> true,
218 ApiBase
::PARAM_ISMULTI
=> true,
219 ApiBase
::PARAM_TYPE
=> [
223 'enableparser' => false,
224 'nocontent' => false,
225 'includelocal' => false,
227 ApiBase
::PARAM_ISMULTI
=> true,
228 ApiBase
::PARAM_ALLOW_DUPLICATES
=> true,
232 ApiBase
::PARAM_DFLT
=> 'all',
233 ApiBase
::PARAM_TYPE
=> [
247 protected function getExamplesMessages() {
249 'action=query&meta=allmessages&refix=ipb-'
250 => 'apihelp-query+allmessages-example-ipb',
251 'action=query&meta=allmessages&ammessages=august|mainpage&amlang=de'
252 => 'apihelp-query+allmessages-example-de',
256 public function getHelpUrls() {
257 return 'https://www.mediawiki.org/wiki/API:Allmessages';