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( array( '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 = array();
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 = array();
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 ) {
116 $lang = $langObj->getCode();
118 $customisedMessages = AllMessagesTablePager
::getCustomisedStatuses(
120 array( $langObj, 'ucfirst' ),
124 $lang != $wgContLang->getCode()
127 $customised = $params['customised'] === 'modified';
130 // Get all requested messages and print the result
131 $skip = !is_null( $params['from'] );
132 $useto = !is_null( $params['to'] );
133 $result = $this->getResult();
134 foreach ( $messages_target as $message ) {
135 // Skip all messages up to $params['from']
136 if ( $skip && $message === $params['from'] ) {
140 if ( $useto && $message > $params['to'] ) {
147 'normalizedname' => MessageCache
::normalizeKey( $message ),
151 if ( isset( $params['args'] ) && count( $params['args'] ) != 0 ) {
152 $args = $params['args'];
155 if ( $customiseFilterEnabled ) {
156 $messageIsCustomised = isset( $customisedMessages['pages'][$langObj->ucfirst( $message )] );
157 if ( $customised === $messageIsCustomised ) {
159 $a['customised'] = true;
166 $msg = wfMessage( $message, $args )->inLanguage( $langObj );
168 if ( !$msg->exists() ) {
169 $a['missing'] = true;
171 // Check if the parser is enabled:
172 if ( $params['enableparser'] ) {
173 $msgString = $msg->title( $title )->text();
175 $msgString = $msg->plain();
177 if ( !$params['nocontent'] ) {
178 ApiResult
::setContentValue( $a, 'content', $msgString );
180 if ( isset( $prop['default'] ) ) {
181 $default = wfMessage( $message )->inLanguage( $langObj )->useDatabase( false );
182 if ( !$default->exists() ) {
183 $a['defaultmissing'] = true;
184 } elseif ( $default->plain() != $msgString ) {
185 $a['default'] = $default->plain();
189 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $a );
191 $this->setContinueEnumParameter( 'from', $message );
196 $result->addIndexedTagName( array( 'query', $this->getModuleName() ), 'message' );
199 public function getCacheMode( $params ) {
200 if ( is_null( $params['lang'] ) ) {
201 // Language not specified, will be fetched from preferences
202 return 'anon-public-user-private';
203 } elseif ( $params['enableparser'] ) {
204 // User-specific parser options will be used
205 return 'anon-public-user-private';
212 public function getAllowedParams() {
215 ApiBase
::PARAM_DFLT
=> '*',
216 ApiBase
::PARAM_ISMULTI
=> true,
219 ApiBase
::PARAM_ISMULTI
=> true,
220 ApiBase
::PARAM_TYPE
=> array(
224 'enableparser' => false,
225 'nocontent' => false,
226 'includelocal' => false,
228 ApiBase
::PARAM_ISMULTI
=> true,
229 ApiBase
::PARAM_ALLOW_DUPLICATES
=> true,
232 'customised' => array(
233 ApiBase
::PARAM_DFLT
=> 'all',
234 ApiBase
::PARAM_TYPE
=> array(
248 protected function getExamplesMessages() {
250 'action=query&meta=allmessages&refix=ipb-'
251 => 'apihelp-query+allmessages-example-ipb',
252 'action=query&meta=allmessages&ammessages=august|mainpage&amlang=de'
253 => 'apihelp-query+allmessages-example-de',
257 public function getHelpUrls() {
258 return 'https://www.mediawiki.org/wiki/API:Allmessages';