Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4117628
generateJqueryMsgData.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
generateJqueryMsgData.php
View Options
<?php
/**
* This PHP script defines the spec that the mediawiki.jqueryMsg module should conform to.
*
* It does this by looking up the results of various kinds of string parsing, with various
* languages, in the current installation of MediaWiki. It then outputs a static specification,
* mapping expected inputs to outputs, which is used then run by QUnit.
*/
use
MediaWiki\Json\FormatJson
;
use
MediaWiki\Languages\LanguageFactory
;
use
MediaWiki\Maintenance\Maintenance
;
require
__DIR__
.
'/../../../maintenance/Maintenance.php'
;
class
GenerateJqueryMsgData
extends
Maintenance
{
private
const
KEY_TO_TEST_ARGS
=
[
'undelete_short'
=>
[
[
0
],
[
1
],
[
2
],
[
5
],
[
21
],
[
101
]
],
'category-subcat-count'
=>
[
[
0
,
10
],
[
1
,
1
],
[
1
,
2
],
[
3
,
30
]
]
];
private
const
TEST_LANGS
=
[
'en'
,
'fr'
,
'ar'
,
'jp'
,
'zh'
,
'nl'
,
'ml'
,
'hi'
];
/** @var LanguageFactory */
private
$languageFactory
;
public
function
__construct
()
{
parent
::
__construct
();
$this
->
addDescription
(
'Create a specification for message parsing ini JSON format'
);
// add any other options here
}
public
function
execute
()
{
$this
->
languageFactory
=
$this
->
getServiceContainer
()->
getLanguageFactory
();
$data
=
$this
->
getData
();
$this
->
writeJsonFile
(
$data
,
__DIR__
.
'/mediawiki.jqueryMsg.data.json'
);
}
private
function
getData
()
{
$messages
=
[];
$tests
=
[];
$jsData
=
[];
foreach
(
self
::
TEST_LANGS
as
$languageCode
)
{
$language
=
$this
->
languageFactory
->
getLanguage
(
$languageCode
);
$jsData
[
$languageCode
]
=
$language
->
getJsData
();
foreach
(
self
::
KEY_TO_TEST_ARGS
as
$key
=>
$testArgs
)
{
foreach
(
$testArgs
as
$args
)
{
// Get the raw message, without any transformations.
$template
=
wfMessage
(
$key
)->
useDatabase
(
false
)
->
inLanguage
(
$languageCode
)->
plain
();
// Get the magic-parsed version with args.
$result
=
wfMessage
(
$key
,
...
$args
)->
useDatabase
(
false
)
->
inLanguage
(
$languageCode
)->
text
();
// Record the template, args, language, and expected result
// fake multiple languages by flattening them together.
$langKey
=
$languageCode
.
'_'
.
$key
;
$messages
[
$langKey
]
=
$template
;
$tests
[]
=
[
'name'
=>
$languageCode
.
' '
.
$key
.
' '
.
implode
(
','
,
$args
),
'key'
=>
$langKey
,
'args'
=>
$args
,
'result'
=>
$result
,
'lang'
=>
$languageCode
];
}
}
}
return
[
'messages'
=>
$messages
,
'tests'
=>
$tests
,
'jsData'
=>
$jsData
,
];
}
private
function
writeJsonFile
(
array
$data
,
$dataSpecFile
)
{
$phpParserData
=
[
'@'
=>
'Last generated with '
.
basename
(
__FILE__
)
.
' at '
.
gmdate
(
'r'
),
]
+
$data
;
$output
=
FormatJson
::
encode
(
$phpParserData
,
true
)
.
"
\n
"
;
$fp
=
file_put_contents
(
$dataSpecFile
,
$output
);
if
(
$fp
===
false
)
{
die
(
"Couldn't write to $dataSpecFile."
);
}
}
}
$maintClass
=
GenerateJqueryMsgData
::
class
;
require_once
RUN_MAINTENANCE_IF_MAIN
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 02:17 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
cc/d9/4f5312ad4b83b565a7bf942f580b
Default Alt Text
generateJqueryMsgData.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment