1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
|
<?php
declare( strict_types = 1 );
namespace MediaWiki\Extension\Translate\Statistics;
use DeferredUpdates;
use Html;
use HTMLForm;
use JobQueueGroup;
use MessageGroups;
use MessageGroupStats;
use MessageGroupStatsRebuildJob;
use SpecialPage;
use TranslateMetadata;
use TranslateUtils;
use Wikimedia\Rdbms\ILoadBalancer;
/**
* Implements includable special page Special:MessageGroupStats which provides
* translation statistics for all languages for a group.
*
* @author Niklas Laxström
* @author Siebrand Mazeland
* @license GPL-2.0-or-later
* @ingroup SpecialPage TranslateSpecialPage Stats
*/
class MessageGroupStatsSpecialPage extends SpecialPage {
/** @var StatsTable */
private $table;
/** @var array */
private $targetValueName = [ 'group' ];
/** Most of the displayed numbers added together at the bottom of the table. */
private $totals;
/**
* Flag to set if nothing to show.
* @var bool
*/
private $nothing = false;
/**
* Flag to set if not all numbers are available.
* @var bool
*/
private $incomplete = false;
/**
* Whether to hide rows which are fully translated.
* @var bool
*/
private $noComplete = true;
/**
* Whether to hide rows which are fully untranslated.
* @var bool
*/
private $noEmpty = false;
/** The target of stats: group id. */
private $target;
/**
* Whether to regenerate stats. Activated by action=purge in query params.
* @var bool
*/
private $purge;
/** @var array */
private $states;
/** @var ProgressStatsTableFactory */
private $progressStatsTableFactory;
private $names;
private $translate;
/** @var int */
private $numberOfShownLanguages;
/** @var JobQueueGroup */
private $jobQueueGroup;
/** @var ILoadBalancer */
private $loadBalancer;
public function __construct(
ProgressStatsTableFactory $progressStatsTableFactory,
JobQueueGroup $jobQueueGroup,
ILoadBalancer $loadBalancer
) {
parent::__construct( 'MessageGroupStats' );
$this->progressStatsTableFactory = $progressStatsTableFactory;
$this->jobQueueGroup = $jobQueueGroup;
$this->loadBalancer = $loadBalancer;
$this->totals = MessageGroupStats::getEmptyStats();
}
public function getDescription() {
return $this->msg( 'translate-mgs-pagename' )->text();
}
public function isIncludable() {
return true;
}
protected function getGroupName() {
return 'translation';
}
public function execute( $par ) {
$request = $this->getRequest();
$this->purge = $request->getVal( 'action' ) === 'purge';
if ( $this->purge && !$request->wasPosted() ) {
LanguageStatsSpecialPage::showPurgeForm( $this->getContext() );
return;
}
$this->table = $this->progressStatsTableFactory->newFromContext( $this->getContext() );
$this->setHeaders();
$this->outputHeader();
$out = $this->getOutput();
$out->addModules( 'ext.translate.special.languagestats' );
$out->addModuleStyles( 'ext.translate.statstable' );
$params = $par ? explode( '/', $par ) : [];
if ( isset( $params[0] ) && trim( $params[0] ) ) {
$this->target = $params[0];
}
if ( isset( $params[1] ) ) {
$this->noComplete = (bool)$params[1];
}
if ( isset( $params[2] ) ) {
$this->noEmpty = (bool)$params[2];
}
// Whether the form has been submitted, only relevant if not including
$submitted = !$this->including() && $request->getVal( 'x' ) === 'D';
// Default booleans to false if the form was submitted
foreach ( $this->targetValueName as $key ) {
$this->target = $request->getVal( $key, $this->target );
}
$this->noComplete = $request->getBool(
'suppresscomplete',
$this->noComplete && !$submitted
);
$this->noEmpty = $request->getBool( 'suppressempty', $this->noEmpty && !$submitted );
if ( !$this->including() ) {
$out->addHelpLink( 'Help:Extension:Translate/Statistics_and_reporting' );
$this->addForm();
}
if ( $this->isValidValue( $this->target ) ) {
$this->outputIntroduction();
$stats = $this->loadStatistics( $this->target, MessageGroupStats::FLAG_CACHE_ONLY );
$output = $this->getTable( $stats );
if ( $this->incomplete ) {
$out->wrapWikiMsg(
"<div class='error'>$1</div>",
'translate-langstats-incomplete'
);
}
if ( $this->incomplete || $this->purge ) {
DeferredUpdates::addCallableUpdate( function () {
// Attempt to recache on the fly the missing stats, unless a
// purge was requested, because that is likely to time out.
// Even though this is executed inside a deferred update, it
// counts towards the maximum execution time limit. If that is
// reached, or any other failure happens, no updates at all
// will be written into the database, as it does only single
// update at the end. Hence we always add a job too, so that
// even the slower updates will get done at some point. In
// regular case (no purge), the job sees that the stats are
// already updated, so it is not much of an overhead.
$jobParams = $this->getCacheRebuildJobParameters( $this->target );
$jobParams[ 'purge' ] = $this->purge;
$job = MessageGroupStatsRebuildJob::newJob( $jobParams );
$this->jobQueueGroup->push( $job );
// $this->purge is only true if request was posted
if ( !$this->purge ) {
$this->loadStatistics( $this->target );
}
} );
}
if ( $this->nothing ) {
$out->wrapWikiMsg( "<div class='error'>$1</div>", 'translate-mgs-nothing' );
}
$out->addHTML( $output );
} elseif ( $submitted ) {
$this->invalidTarget();
}
}
// endregion
private function loadStatistics( string $target, int $flags = 0 ): array {
return MessageGroupStats::forGroup( $target, $flags );
}
private function getCacheRebuildJobParameters( string $target ): array {
return [ 'groupid' => $target ];
}
private function isValidValue( ?string $value ): bool {
if ( $value === null ) {
return false;
}
$group = MessageGroups::getGroup( $value );
if ( $group ) {
if ( MessageGroups::isDynamic( $group ) ) {
/* Dynamic groups are not listed, but it is possible to end up
* on this page with a dynamic group by navigating from
* translation or proofreading activity or by giving group id
* of dynamic group explicitly. Ignore dynamic group to avoid
* throwing exceptions later. */
$group = false;
} else {
$this->target = $group->getId();
}
}
return (bool)$group;
}
private function invalidTarget(): void {
$this->getOutput()->wrapWikiMsg(
"<div class='error'>$1</div>",
[ 'translate-mgs-invalid-group', $this->target ]
);
}
private function outputIntroduction(): void {
$priorityLangs = TranslateMetadata::get( $this->target, 'prioritylangs' );
if ( $priorityLangs ) {
$hasPriorityForce = TranslateMetadata::get( $this->target, 'priorityforce' ) === 'on';
if ( $hasPriorityForce ) {
$this->getOutput()->addWikiMsg( 'tpt-priority-languages-force', $priorityLangs );
} else {
$this->getOutput()->addWikiMsg( 'tpt-priority-languages', $priorityLangs );
}
}
}
/** If workflow states are configured, adds a workflow states column */
private function addWorkflowStatesColumn(): void {
global $wgTranslateWorkflowStates;
if ( $wgTranslateWorkflowStates ) {
$this->states = $this->getWorkflowStates();
// An array where keys are state names and values are numbers
$this->table->addExtraColumn( $this->msg( 'translate-stats-workflow' ) );
}
}
/** If workflow states are configured, adds a cell with the workflow state to the row */
private function getWorkflowStateCell( string $language ): string {
// This will be set by addWorkflowStatesColumn if needed
if ( !isset( $this->states ) ) {
return '';
}
return $this->table->makeWorkflowStateCell(
$this->states[$language] ?? null,
MessageGroups::getGroup( $this->target ),
$language
);
}
private function addForm(): void {
$formDescriptor = [
'select' => [
'type' => 'select',
'name' => 'group',
'id' => 'group',
'label' => $this->msg( 'translate-mgs-group' )->text(),
'options' => $this->getGroupOptions(),
'default' => $this->target
],
'nocomplete-check' => [
'type' => 'check',
'name' => 'suppresscomplete',
'id' => 'suppresscomplete',
'label' => $this->msg( 'translate-mgs-nocomplete' )->text(),
'default' => $this->noComplete,
],
'noempty-check' => [
'type' => 'check',
'name' => 'suppressempty',
'id' => 'suppressempty',
'label' => $this->msg( 'translate-mgs-noempty' )->text(),
'default' => $this->noEmpty,
]
];
$htmlForm = HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() );
/* Since these pages are in the tabgroup with Special:Translate,
* it makes sense to retain the selected group/language parameter
* on post requests even when not relevant to the current page. */
$val = $this->getRequest()->getVal( 'language' );
if ( $val !== null ) {
$htmlForm->addHiddenField( 'language', $val );
}
$htmlForm
->addHiddenField( 'x', 'D' ) // To detect submission
->setMethod( 'get' )
->setSubmitTextMsg( 'translate-mgs-submit' )
->setWrapperLegendMsg( 'translate-mgs-fieldset' )
->prepareForm()
->displayForm( false );
}
private function getTable( array $stats ): string {
$table = $this->table;
$this->addWorkflowStatesColumn();
$out = '';
$this->numberOfShownLanguages = 0;
$languages = array_keys(
TranslateUtils::getLanguageNames( $this->getLanguage()->getCode() )
);
sort( $languages );
$this->filterPriorityLangs( $languages, $this->target, $stats );
foreach ( $languages as $code ) {
if ( $table->isExcluded( $this->target, $code ) ) {
continue;
}
$out .= $this->makeRow( $code, $stats );
}
if ( $out ) {
$table->setMainColumnHeader( $this->msg( 'translate-mgs-column-language' ) );
$out = $table->createHeader() . "\n" . $out;
$out .= Html::closeElement( 'tbody' );
$out .= Html::openElement( 'tfoot' );
$out .= $table->makeTotalRow(
$this->msg( 'translate-mgs-totals' )
->numParams( $this->numberOfShownLanguages ),
$this->totals
);
$out .= Html::closeElement( 'tfoot' );
$out .= Html::closeElement( 'table' );
return $out;
} else {
$this->nothing = true;
return '';
}
}
/**
* Filter an array of languages based on whether a priority set of
* languages present for the passed group. If priority languages are
* present, to that list add languages with more than 0% translation.
*/
private function filterPriorityLangs( array &$languages, string $group, array $cache ): void {
$filterLangs = TranslateMetadata::get( $group, 'prioritylangs' );
if ( $filterLangs === false || strlen( $filterLangs ) === 0 ) {
// No restrictions, keep everything
return;
}
$filter = array_flip( explode( ',', $filterLangs ) );
foreach ( $languages as $id => $code ) {
if ( isset( $filter[$code] ) ) {
continue;
}
$translated = $cache[$code][1];
if ( $translated === 0 ) {
unset( $languages[$id] );
}
}
}
private function makeRow( string $code, array $cache ): string {
$stats = $cache[$code];
$total = $stats[MessageGroupStats::TOTAL];
$translated = $stats[MessageGroupStats::TRANSLATED];
$fuzzy = $stats[MessageGroupStats::FUZZY];
if ( $total === null ) {
$this->incomplete = true;
$extra = [];
} else {
if ( $this->noComplete && $fuzzy === 0 && $translated === $total ) {
return '';
}
if ( $this->noEmpty && $translated === 0 && $fuzzy === 0 ) {
return '';
}
// Skip below 2% if "don't show without translations" is checked.
if ( $this->noEmpty && ( $translated / $total ) < 0.02 ) {
return '';
}
if ( $translated === $total ) {
$extra = [ 'action' => 'proofread' ];
} else {
$extra = [];
}
}
$this->numberOfShownLanguages += 1;
$this->totals = MessageGroupStats::multiAdd( $this->totals, $stats );
$rowParams = [];
if ( $this->numberOfShownLanguages % 2 === 0 ) {
$rowParams[ 'class' ] = 'tux-statstable-even';
}
$out = "\t" . Html::openElement( 'tr', $rowParams );
$out .= "\n\t\t" . $this->getMainColumnCell( $code, $extra );
$out .= $this->table->makeNumberColumns( $stats );
$out .= $this->getWorkflowStateCell( $code );
$out .= "\n\t" . Html::closeElement( 'tr' ) . "\n";
return $out;
}
private function getMainColumnCell( string $code, array $params ): string {
if ( !isset( $this->names ) ) {
$this->names = TranslateUtils::getLanguageNames( $this->getLanguage()->getCode() );
$this->translate = SpecialPage::getTitleFor( 'Translate' );
}
$queryParameters = $params + [
'group' => $this->target,
'language' => $code
];
if ( isset( $this->names[$code] ) ) {
$text = "$code: {$this->names[$code]}";
} else {
$text = $code;
}
$link = $this->getLinkRenderer()->makeKnownLink(
$this->translate,
$text,
[],
$queryParameters
);
return Html::rawElement( 'td', [], $link );
}
private function getWorkflowStates(): array {
$db = $this->loadBalancer->getConnection( DB_REPLICA );
$res = $db->select(
'translate_groupreviews',
[ 'tgr_state', 'tgr_lang' ],
[ 'tgr_group' => $this->target ],
__METHOD__
);
$states = [];
foreach ( $res as $row ) {
$states[$row->tgr_lang] = $row->tgr_state;
}
return $states;
}
/** Creates a simple message group options. */
private function getGroupOptions(): array {
$options = [];
$groups = MessageGroups::getAllGroups();
foreach ( $groups as $id => $class ) {
if ( MessageGroups::getGroup( $id )->exists() ) {
$options[$class->getLabel()] = $id;
}
}
return $options;
}
}
|