forked from wikimedia/mediawiki-extensions-CheckUser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
781 lines (781 loc) · 28.8 KB
/
extension.json
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
{
"name": "CheckUser",
"version": "2.5",
"author": [
"Tim Starling",
"Aaron Schulz",
"Dreamy Jazz"
],
"url": "https://www.mediawiki.org/wiki/Extension:CheckUser",
"descriptionmsg": "checkuser-desc",
"license-name": "GPL-2.0-or-later",
"type": "specialpage",
"requires": {
"MediaWiki": ">= 1.43.0",
"platform": {
"ext-openssl": "*"
}
},
"ExtensionMessagesFiles": {
"CheckUserAliases": "CheckUser.alias.php"
},
"config": {
"CheckUserCIDRLimit": {
"value": {
"IPv4": 16,
"IPv6": 19
},
"description": "Shortest CIDR limits that can be checked in any individual range check"
},
"CheckUserMaxBlocks": {
"value": 200,
"description": "Maximum number of users that can be mass blocked simultaneously"
},
"CUPublicKey": {
"value": "",
"description": "Public key to encrypt private data that may need to be read later. Generate a public key with something like: `openssl genrsa -out cu.key 2048; openssl rsa -in cu.key -pubout > cu.pub` and paste the contents of cu.pub here."
},
"CUDMaxAge": {
"value": 7776000,
"description": "How long to keep CheckUser data (in seconds)"
},
"CheckUserForceSummary": {
"value": false,
"description": "Whether to force checkusers into giving a reason for each check they do through Special:CheckUser."
},
"CheckUserGlobalContributionsCentralWikiId": {
"value": false,
"description": "The wiki ID to use when redirecting users to [[Special:GlobalContributions]] on a central wiki. If set to false, no redirect occurs."
},
"CheckUserCAMultiLock": {
"value": false,
"description": "Whether to add a link to Special:MultiLock by CentralAuth to the Special:CheckUser's mass block form. This requires CentralAuth extension to be installed on the wiki. To enable this, set this to an array with a central wiki's database name and an array with the name(s) of the global group(s) to add the link for. Example: [ 'centralDB' => 'metawiki', 'groups' => [ 'steward' ] ]"
},
"CheckUserCAtoollink": {
"value": false,
"description": "Whether to add links to CentralAuth in Special:CheckUser results"
},
"CheckUserGBtoollink": {
"value": false,
"description": "Configuration for adding links for globally blocking accounts shown in Special:CheckUser results. Array with keys 'centralDB' for the ID of the wiki where global blocks are made, and 'groups' for the groups that can make global blocks there. False if links should not be added."
},
"CheckUserCollapseCheckUserHelperByDefault": {
"value": 2500,
"description": "Whether to have the CheckUserHelper shown on Special:CheckUser collapsed by default. Specify true to collapse by default, false to do the opposite and a number to collapse only when the number of rows returned exceeds this value."
},
"CheckUserLogLogins": {
"value": false,
"description": "Whether login attempts should be logged in CheckUser logs"
},
"CheckUserLogSuccessfulBotLogins": {
"value": true,
"description": "Whether successful login attempts of accounts in the 'bot' user group should be logged in CheckUser logs (assuming wgCheckUserLogLogins is also true)"
},
"CheckUserMaximumRowCount": {
"value": 5000,
"description": "Maximum number of rows to be displayed in Special:CheckUser per page of results"
},
"CheckUserInvestigateMaximumRowCount": {
"value": 25000,
"description": "Maximum number of rows from the CheckUser result tables to be grouped in the Compare table query"
},
"CheckUserTemporaryAccountMaxAge": {
"value": 86400,
"description": "Number of seconds for which the temporary account API response is fresh"
},
"CheckUserClientHintsEnabled": {
"value": true,
"description": "General on/off switch for User-Agent Client Hints functionality. When set to true, CheckUser will request Client Hints headers specified in the CheckUserClientHintsHeaders config variable."
},
"CheckUserClientHintsRestApiMaxTimeLag": {
"value": 1800,
"description": "The amount of time in seconds that a user has to submit a request to /checkuser/v0/useragent-clienthints/{type}/{id} to store client hints data."
},
"CheckUserClientHintsSpecialPages": {
"value": [
"CreateAccount",
"Emailuser",
"PasswordReset",
"Userlogin",
"Userlogout"
],
"description": "List of SpecialPages where CheckUser will set client hints headers in the response header. Note that the special pages are case sensitive, and do not always match their appearance in the URL, e.g. 'UserLogin' is known in the Special page system as 'Userlogin'."
},
"CheckUserClientHintsHeaders": {
"value": {
"Sec-CH-UA": "",
"Sec-CH-UA-Arch": "architecture",
"Sec-CH-UA-Bitness": "bitness",
"": "brands",
"Sec-CH-UA-Form-Factor": "",
"Sec-CH-UA-Full-Version-List": "fullVersionList",
"Sec-CH-UA-Mobile": "mobile",
"Sec-CH-UA-Model": "model",
"Sec-CH-UA-Platform": "platform",
"Sec-CH-UA-Platform-Version": "platformVersion",
"Sec-CH-UA-WoW64": ""
},
"description": "Map of User-Agent Client Hints headers that CheckUser may ask for, either via setting an Accept-CH header on the server-side, or via client-side usage of the NavigatorUAData.getHighEntropyValues() API. The keys in the map are the server-side headers, and the values are the JS API equivalents. Empty strings indicate lack of equivalent between JS API and server-side headers. See the list of valid values https://wicg.github.io/ua-client-hints."
},
"CheckUserClientHintsUnsetHeaderWhenPossible": {
"value": true,
"description": "If set to 'true', then CheckUser will transmit an empty `Accept-CH: ` header in BeforePageDisplay and SpecialPageBeforeExecute if SpecialPage isn't in the CheckUserClientHintsSpecialPages config list. If set to false, CheckUser will not send an empty `Accept-CH: ` header, which in practice means that all logged-in user requests will transmit User-Agent client hint data."
},
"CheckUserClientHintsForDisplay": {
"value": [
"model",
"fullVersionList",
"platformVersion",
"platform",
"brands",
"formFactor",
"architecture",
"mobile",
"bitness",
"woW64"
],
"description": "An array of the Client Hints data that should be displayed in CheckUser interfaces in the order that they should be displayed. If 'platform' and 'platformVersion' are both included, then these will be combined as one when displaying as a string. If 'brands' and 'fullVersionList' are both selected, then only the fullVersionList value will be displayed if for a given brand name an entry exists in 'brand' and 'fullVersionList'. The 'userAgent' client hint name is currently not included in this list as it may be combined with the 'brands' item, but would be removed if HTTP headers are not going to be used to collect data."
},
"CheckUserClientHintsValuesToHide": {
"value": {
"architecture": [
"x86"
],
"bitness": [
"64"
],
"woW64": [
false
]
},
"description": "An array of the Client Hints data names as keys and an array of values that should be hidden from the interface as the value. This is used to hide commonly seen Client Hint data values in the cases where it isn't helpful."
},
"CheckUserDisplayClientHints": {
"value": true,
"description": "A configuration value used to control whether Client Hints data is shown in the interfaces that support it. The default is for it to be enabled."
},
"CheckUserDeveloperMode": {
"value": false,
"description": "If set to 'true', then CheckUser will be know it is in development mode. Do not enable this on any wikis other than local development wikis. This will allow use of code that is only intended for local development wikis, such as the populateCheckUserTablesWithSimulatedData.php maintenance script which inserts automated testing edits and actions to the wiki."
},
"CheckUserMaximumIPsToAutoblock": {
"value": 1,
"description": "The maximum number of IPs to retroactively autoblock when a block is created that is set to autoblock. The actual number of IPs blocked will be smaller if the CheckUser data for this user has less than this number of IPs. If this number is greater, then the IPs blocked are those which were used last."
},
"CheckUserCentralIndexGroupsToExclude": {
"value": [ "bot" ],
"description": "Users in any of these user groups will not have their actions stored in the central index tables. Used to reduce the rate at which rows are updated for users which are expected to make frequent updates (such as bots) and often do not need review from the CheckUser tools."
},
"CheckUserCentralIndexRangesToExclude": {
"value": [],
"description": "Exclude actions from being recorded in the central user index if they are within the ranges or are using an IP specified in this config. This is ignored for writes to the cuci_temp_edit table. Used to reduce the rate at which rows are updated for users which are expected to make frequent updates."
},
"CheckUserWriteToCentralIndex": {
"value": true,
"description": "Whether to add entries to the central index for this local wiki. Useful in case a wiki is not part of a SUL system or is written to too often, so cannot be represented in a central table."
},
"CheckUserCuciUserRandomChanceDebounceCutoff": {
"value": 3600,
"description": "Used to control when the random chance to update the cuci_user table is applied. Set to false to disable the random chance of not writing. By default the random chance is applied when the last timestamp for this user and wiki was recorded less than an hour ago."
}
},
"APIListModules": {
"checkuser": {
"class": "MediaWiki\\CheckUser\\Api\\ApiQueryCheckUser",
"services": [
"ApiQueryCheckUserResponseFactory"
]
},
"checkuserlog": {
"class": "MediaWiki\\CheckUser\\Api\\ApiQueryCheckUserLog",
"services": [
"CommentStore",
"CheckUserLogService",
"UserFactory"
]
}
},
"RestRoutes": [
{
"path": "/checkuser/v0/temporaryaccount/{name}",
"method": "POST",
"class": "MediaWiki\\CheckUser\\Api\\Rest\\Handler\\TemporaryAccountHandler",
"services": [
"MainConfig",
"JobQueueGroup",
"PermissionManager",
"UserOptionsLookup",
"UserNameUtils",
"DBLoadBalancerFactory",
"ActorStore",
"BlockManager"
]
},
{
"path": "/checkuser/v0/temporaryaccount/ip/{ip}",
"method": "POST",
"class": "MediaWiki\\CheckUser\\Api\\Rest\\Handler\\TemporaryAccountIPHandler",
"services": [
"MainConfig",
"JobQueueGroup",
"PermissionManager",
"UserOptionsLookup",
"UserNameUtils",
"DBLoadBalancerFactory",
"ActorStore",
"BlockManager",
"TempUserConfig",
"CheckUserTemporaryAccountsByIPLookup"
]
},
{
"path": "/checkuser/v0/temporaryaccount/{name}/revisions/{ids}",
"method": "POST",
"class": "MediaWiki\\CheckUser\\Api\\Rest\\Handler\\TemporaryAccountRevisionHandler",
"services": [
"MainConfig",
"JobQueueGroup",
"PermissionManager",
"UserOptionsLookup",
"UserNameUtils",
"DBLoadBalancerFactory",
"ActorStore",
"BlockManager",
"RevisionStore"
]
},
{
"path": "/checkuser/v0/temporaryaccount/{name}/logs/{ids}",
"method": "POST",
"class": "MediaWiki\\CheckUser\\Api\\Rest\\Handler\\TemporaryAccountLogHandler",
"services": [
"MainConfig",
"JobQueueGroup",
"PermissionManager",
"UserOptionsLookup",
"UserNameUtils",
"DBLoadBalancerFactory",
"ActorStore",
"BlockManager"
]
},
{
"path": "/checkuser/v0/useragent-clienthints/{type}/{id}",
"method": "POST",
"class": "MediaWiki\\CheckUser\\Api\\Rest\\Handler\\UserAgentClientHintsHandler",
"services": [
"MainConfig",
"RevisionStore",
"UserAgentClientHintsManager"
]
}
],
"HookHandlers": {
"clienthints": {
"class": "MediaWiki\\CheckUser\\HookHandler\\ClientHints",
"services": [
"MainConfig"
]
},
"preferences": {
"class": "MediaWiki\\CheckUser\\HookHandler\\Preferences",
"services": [
"PermissionManager",
"CheckUserTemporaryAccountLoggerFactory",
"MainConfig"
]
},
"pageDisplay": {
"class": "MediaWiki\\CheckUser\\HookHandler\\PageDisplay",
"services": [
"MainConfig",
"PermissionManager",
"UserOptionsLookup"
]
},
"CheckUserPrivateEvents": {
"class": "MediaWiki\\CheckUser\\HookHandler\\CheckUserPrivateEventsHandler",
"services": [
"CheckUserInsert",
"MainConfig",
"UserIdentityLookup",
"UserFactory",
"ReadOnlyMode"
]
},
"RetroactiveAutoBlock": {
"class": "MediaWiki\\CheckUser\\HookHandler\\PerformRetroactiveAutoblockHandler",
"services": [
"DBLoadBalancerFactory",
"DatabaseBlockStoreFactory",
"MainConfig"
]
},
"SchemaChanges": {
"class": "MediaWiki\\CheckUser\\HookHandler\\SchemaChangesHandler"
},
"ToolLinks": {
"class": "MediaWiki\\CheckUser\\HookHandler\\ToolLinksHandler",
"services": [
"PermissionManager",
"SpecialPageFactory",
"LinkRenderer",
"UserIdentityLookup",
"UserIdentityUtils",
"UserOptionsLookup",
"TempUserConfig"
]
},
"RenameUserSQLHandler": {
"class": "MediaWiki\\CheckUser\\HookHandler\\RenameUserSQLHandler"
},
"GlobalBlockingHandler": {
"class": "MediaWiki\\CheckUser\\HookHandler\\GlobalBlockingHandler",
"services": [
"ConnectionProvider",
"CentralIdLookup",
"ActorStoreFactory"
]
},
"SpecialPageInitList": {
"class": "MediaWiki\\CheckUser\\HookHandler\\SpecialPageInitListHandler",
"services": [
"TempUserConfig"
]
},
"RecentChangeSaveHandler": {
"class": "MediaWiki\\CheckUser\\HookHandler\\RecentChangeSaveHandler",
"services": [
"CheckUserInsert",
"JobQueueGroup",
"DBLoadBalancerFactory"
]
},
"RLRegisterModules": {
"class": "MediaWiki\\CheckUser\\HookHandler\\RLRegisterModulesHandler"
},
"UserMerge": {
"class": "MediaWiki\\CheckUser\\HookHandler\\UserMergeHandler"
}
},
"Hooks": {
"AuthManagerLoginAuthenticateAudit": "CheckUserPrivateEvents",
"BeforePageDisplay": [
"clienthints",
"pageDisplay"
],
"BeforeInitialize": "pageDisplay",
"ContributionsToolLinks": "ToolLinks",
"EmailUser": "CheckUserPrivateEvents",
"GetPreferences": "preferences",
"GlobalBlockingGetRetroactiveAutoblockIPs": "GlobalBlockingHandler",
"LoadExtensionSchemaUpdates": "SchemaChanges",
"LocalUserCreated": "CheckUserPrivateEvents",
"PerformRetroactiveAutoblock": "RetroactiveAutoBlock",
"RecentChange_save": "RecentChangeSaveHandler",
"RenameUserSQL": "RenameUserSQLHandler",
"ResourceLoaderRegisterModules": "RLRegisterModules",
"SaveUserOptions": "preferences",
"SpecialContributionsBeforeMainOutput": "ToolLinks",
"SpecialPageBeforeExecute": "clienthints",
"SpecialPage_initList": "SpecialPageInitList",
"User::mailPasswordInternal": "CheckUserPrivateEvents",
"UserLogoutComplete": "CheckUserPrivateEvents",
"UserMergeAccountFields": "UserMerge",
"UserToolLinksEdit": "ToolLinks"
},
"MessagesDirs": {
"CheckUser": [
"i18n",
"i18n/api"
]
},
"ResourceModules": {
"ext.checkUser.clientHints": {
"localBasePath": "modules/ext.checkUser.clientHints",
"remoteExtPath": "CheckUser/modules/ext.checkUser.clientHints",
"packageFiles": [
"index.js"
],
"dependencies": [
"mediawiki.api",
"mediawiki.base"
]
},
"ext.checkUser": {
"localBasePath": "modules/ext.checkUser",
"remoteExtPath": "CheckUser/modules/ext.checkUser",
"packageFiles": [
"dispatcher.js",
"cidr/cidr.js",
"checkuser/getUsersBlockForm.js",
"checkuser/checkUserHelper/init.js",
"checkuser/checkUserHelper/addCopyElement.js",
"checkuser/checkUserHelper/createTable.js",
"checkuser/checkUserHelper/createTableText.js",
"checkuser/checkUserHelper/generateData.js",
"checkuser/checkUserHelper/utils.js",
"checkuserlog/highlightScroll.js",
"investigateblock/investigateblock.js",
"investigate/init.js",
"investigate/InvestigateMenuSelectWidget.js",
"investigate/resetGuidedTour.js",
"investigate/tables.js",
"investigate/copy.js",
"investigate/blockform.js",
"temporaryaccount/ipRevealUtils.js",
"temporaryaccount/ipReveal.js",
"temporaryaccount/initOnLoad.js",
"temporaryaccount/initOnHook.js",
"temporaryaccount/rest.js",
"temporaryaccount/SpecialBlock.js",
"temporaryaccount/SpecialContributions.js",
{
"name": "investigate/message.json",
"callback": "MediaWiki\\CheckUser\\ToolLinksMessages::getParsedMessage",
"callbackParam": "checkuser-investigate-compare-toollinks"
}
],
"dependencies": [
"jquery.tablesorter",
"oojs-ui-core",
"oojs-ui-widgets",
"oojs-ui.styles.icons-editing-core",
"oojs-ui.styles.icons-editing-advanced",
"oojs-ui.styles.icons-interactions",
"oojs-ui.styles.icons-location",
"oojs-ui.styles.icons-moderation",
"oojs-ui.styles.icons-user",
"mediawiki.api",
"mediawiki.pager.styles",
"mediawiki.storage",
"mediawiki.Title",
"mediawiki.user",
"mediawiki.util",
"mediawiki.widgets",
"mediawiki.widgets.UserInputWidget",
"web2017-polyfills"
],
"messages": [
"checkuser-centralauth-multilock",
"checkuser-centralauth-multilock-list",
"checkuser-centralauth-multilock-list-item",
"checkuser-cidr-too-small",
"checkuser-cidr-affected-ips",
"checkuser-helper-copy-success",
"checkuser-helper-copy-failed",
"checkuser-helper-user",
"checkuser-helper-ips",
"checkuser-helper-uas",
"checkuser-helper-client-hints",
"checkuser-helper-xff-trusted",
"checkuser-helper-xff-untrusted",
"checkuser-cidr-tool-links",
"checkuser-cidr-tool-links-checkuser",
"checkuser-cidr-tool-links-checkuserlog",
"checkuser-cidr-tool-links-prefix",
"checkuser-investigate-compare-copy-button-label",
"checkuser-investigate-compare-copy-button-label-hide",
"checkuser-investigate-compare-copy-message-label",
"checkuser-investigate-compare-table-button-add-ip-targets-label",
"checkuser-investigate-compare-table-button-add-user-targets-label",
"checkuser-investigate-compare-table-button-add-user-targets-log-label",
"checkuser-investigate-compare-table-button-checks-label",
"checkuser-investigate-compare-table-button-contribs-label",
"checkuser-investigate-compare-table-button-filter-label",
"checkuser-investigate-subtitle-cancel-button-label",
"checkuser-investigate-subtitle-continue-button-label",
"checkuser-ip-contributions",
"checkuser-ip-contributions-target-label",
"checkuser-ip-contributions-target-error-no-ip",
"checkuser-tempaccount-no-ip-results",
"checkuser-tempaccount-reveal-ip-button-label",
"checkuser-tempaccount-reveal-ip-missing",
"checkuser-tempaccount-reveal-ip-error",
"checkuser-tempaccount-specialblock-ips"
]
},
"ext.checkUser.styles": {
"class": "MediaWiki\\ResourceLoader\\LessVarFileModule",
"localBasePath": "modules/ext.checkUser.styles",
"remoteExtPath": "CheckUser/modules/ext.checkUser.styles",
"styles": [
"checkuser.less",
"investigate.less",
"investigateblock.less",
"temporaryaccount.less",
"cidr.less"
],
"skinStyles": {
"minerva": "temporaryaccount.minerva.less"
},
"lessMessages": [
"brackets-start",
"brackets-end",
"parentheses-start",
"parentheses-end",
"pipe-separator"
]
}
},
"QUnitTestModule": {
"localBasePath": "",
"remoteExtPath": "CheckUser",
"packageFiles": [
"tests/qunit/index.js",
"tests/qunit/ext.checkUser/checkuser/getUsersBlockForm.test.js",
"modules/ext.checkUser/checkuser/getUsersBlockForm.js",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/utils.test.js",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/createTable.test.js",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/createTableText.test.js",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/generateData.test.js",
"modules/ext.checkUser/checkuser/checkUserHelper/init.js",
"modules/ext.checkUser/checkuser/checkUserHelper/addCopyElement.js",
"modules/ext.checkUser/checkuser/checkUserHelper/createTable.js",
"modules/ext.checkUser/checkuser/checkUserHelper/createTableText.js",
"modules/ext.checkUser/checkuser/checkUserHelper/generateData.js",
"modules/ext.checkUser/checkuser/checkUserHelper/utils.js",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/cases/calculateIPNumber.json",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/cases/compareIPs.json",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/cases/createTable.json",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/cases/createTableText.json",
"tests/qunit/ext.checkUser/checkuser/checkUserHelper/cases/generateData.json",
"tests/qunit/ext.checkUser.clientHints/index.test.js",
"modules/ext.checkUser.clientHints/index.js",
"tests/qunit/ext.checkUser/investigate/blockform.test.js",
"modules/ext.checkUser/investigate/blockform.js",
"tests/qunit/ext.checkUser/investigate/cases/blockFormWidgetVisibility.json",
"tests/qunit/ext.checkUser/temporaryaccount/SpecialContributions.test.js",
"modules/ext.checkUser/temporaryaccount/SpecialContributions.js",
"tests/qunit/ext.checkUser/temporaryaccount/ipRevealUtils.test.js",
"modules/ext.checkUser/temporaryaccount/ipRevealUtils.js",
"tests/qunit/ext.checkUser/temporaryaccount/ipReveal.test.js",
"tests/qunit/ext.checkUser/temporaryaccount/utils.js",
"modules/ext.checkUser/temporaryaccount/ipReveal.js",
"modules/ext.checkUser/temporaryaccount/rest.js",
"tests/qunit/ext.checkUser/temporaryaccount/initOnLoad.test.js",
"modules/ext.checkUser/temporaryaccount/initOnLoad.js",
"tests/qunit/ext.checkUser/temporaryaccount/initOnHook.test.js",
"modules/ext.checkUser/temporaryaccount/initOnHook.js",
"tests/qunit/ext.checkUser/temporaryaccount/rest.test.js",
"tests/qunit/ext.checkUser/temporaryaccount/SpecialBlock.test.js",
"modules/ext.checkUser/temporaryaccount/SpecialBlock.js"
],
"dependencies": [
"mediawiki.qunit-testrunner",
"mediawiki.base",
"mediawiki.router",
"mediawiki.storage",
"mediawiki.util",
"mediawiki.widgets",
"mediawiki.widgets.UserInputWidget",
"ext.checkUser",
"ext.checkUser.clientHints",
"sinonjs"
]
},
"GroupPermissions": {
"checkuser": {
"checkuser": true,
"checkuser-log": true,
"checkuser-temporary-account-no-preference": true,
"checkuser-temporary-account-log": true
},
"checkuser-temporary-account-viewer": {
"checkuser-temporary-account": true
}
},
"GrantPermissions": {
"checkuser": {
"checkuser": true,
"checkuser-log": true
},
"checkuser-temporary-account": {
"checkuser-temporary-account": true,
"checkuser-temporary-account-no-preference": true,
"checkuser-temporary-account-log": true
}
},
"GrantPermissionGroups": {
"checkuser": "administration",
"checkuser-temporary-account": "administration"
},
"GrantRiskGroups": {
"checkuser": "security",
"checkuser-temporary-account": "low"
},
"PrivilegedGroups": [
"checkuser"
],
"AvailableRights": [
"checkuser",
"checkuser-log",
"checkuser-temporary-account",
"checkuser-temporary-account-no-preference",
"checkuser-temporary-account-log"
],
"SpecialPages": {
"CheckUser": {
"class": "MediaWiki\\CheckUser\\CheckUser\\SpecialCheckUser",
"services": [
"LinkBatchFactory",
"UserGroupManager",
"CentralIdLookupFactory",
"PermissionManager",
"UserIdentityLookup",
"CheckUserTokenQueryManager",
"DBLoadBalancerFactory",
"UserFactory",
"CheckUserLogService",
"CommentFormatter",
"UserEditTracker",
"UserNamePrefixSearch",
"UserNameUtils",
"CheckUserHookRunner",
"CheckUserUtilityService",
"CommentStore",
"UserAgentClientHintsLookup",
"UserAgentClientHintsFormatter",
"CheckUserLookupUtils",
"LogFormatterFactory",
"UserOptionsLookup"
]
},
"CheckUserLog": {
"class": "MediaWiki\\CheckUser\\CheckUser\\SpecialCheckUserLog",
"services": [
"LinkBatchFactory",
"PermissionManager",
"CommentStore",
"CommentFormatter",
"CheckUserLogService",
"UserFactory",
"ActorStore",
"DBLoadBalancerFactory"
]
},
"Investigate": {
"class": "MediaWiki\\CheckUser\\Investigate\\SpecialInvestigate",
"services": [
"LinkRenderer",
"ContentLanguage",
"UserOptionsManager",
"CheckUserPreliminaryCheckPagerFactory",
"CheckUserComparePagerFactory",
"CheckUserTimelinePagerFactory",
"CheckUserTokenQueryManager",
"CheckUserDurationManager",
"CheckUserEventLogger",
"CheckUserGuidedTourLauncher",
"CheckUserHookRunner",
"PermissionManager",
"CheckUserLogService",
"UserIdentityLookup",
"UserFactory",
"UrlUtils"
]
},
"InvestigateBlock": {
"class": "MediaWiki\\CheckUser\\Investigate\\SpecialInvestigateBlock",
"services": [
"BlockUserFactory",
"BlockPermissionCheckerFactory",
"PermissionManager",
"TitleFormatter",
"UserFactory",
"CheckUserEventLogger"
]
}
},
"LogTypes": [
"checkuser-temporary-account"
],
"LogNames": {
"checkuser-temporary-account": "checkuser-temporary-account-log-name"
},
"LogHeaders": {
"checkuser-temporary-account": "checkuser-temporary-account-log-header"
},
"LogActionsHandlers": {
"checkuser-temporary-account/*": {
"class": "MediaWiki\\CheckUser\\Logging\\TemporaryAccountLogFormatter",
"services": [
"UserFactory"
]
},
"checkuser-private-event/*": {
"class": "MediaWiki\\CheckUser\\Logging\\CheckUserPrivateEventLogFormatter",
"services": [
"UserFactory"
]
}
},
"LogRestrictions": {
"checkuser-temporary-account": "checkuser-temporary-account-log",
"checkuser-private-event": "checkuser"
},
"ActionFilteredLogs": {
"checkuser-temporary-account": {
"change-access": [
"change-access",
"af-change-access-enable",
"af-change-access-disable"
],
"view-ips": [
"view-ips",
"view-temporary-accounts-on-ip",
"af-view-protected-var-value"
]
}
},
"JobClasses": {
"checkuserLogTemporaryAccountAccess": "\\MediaWiki\\CheckUser\\Jobs\\LogTemporaryAccountAccessJob",
"checkuserPruneCheckUserDataJob": "\\MediaWiki\\CheckUser\\Jobs\\PruneCheckUserDataJob",
"checkuserUpdateUserCentralIndexJob": {
"class": "MediaWiki\\CheckUser\\Jobs\\UpdateUserCentralIndexJob",
"services": [
"ConnectionProvider"
]
}
},
"AutoloadClasses": {
"MediaWiki\\CheckUser\\CheckUserQueryInterface": "src/CheckUserQueryInterface.php",
"MediaWiki\\CheckUser\\Hook\\CheckUserInsertChangesRow": "src/Hook/CheckUserInsertChangesRowHook.php",
"MediaWiki\\CheckUser\\Hook\\CheckUserInsertChangesRowHook": "src/Hook/CheckUserInsertChangesRowHook.php",
"MediaWiki\\CheckUser\\Hook\\CheckUserInsertLogEventRow": "src/Hook/CheckUserInsertLogEventRowHook.php",
"MediaWiki\\CheckUser\\Hook\\CheckUserInsertLogEventRowHook": "src/Hook/CheckUserInsertLogEventRowHook.php",
"MediaWiki\\CheckUser\\Hook\\CheckUserInsertPrivateEventRow": "src/Hook/CheckUserInsertPrivateEventRowHook.php",
"MediaWiki\\CheckUser\\Hook\\CheckUserInsertPrivateEventRowHook": "src/Hook/CheckUserInsertPrivateEventRowHook.php",
"MediaWiki\\CheckUser\\Maintenance\\PopulateCheckUserTable": "maintenance/populateCheckUserTable.php",
"MediaWiki\\CheckUser\\Maintenance\\PurgeOldData": "maintenance/purgeOldData.php",
"MediaWiki\\CheckUser\\Maintenance\\PopulateCucActor": "maintenance/populateCucActor.php",
"MediaWiki\\CheckUser\\Maintenance\\PopulateCucComment": "maintenance/populateCucComment.php",
"MediaWiki\\CheckUser\\Maintenance\\PopulateCulActor": "maintenance/populateCulActor.php",
"MediaWiki\\CheckUser\\Maintenance\\PopulateCulComment": "maintenance/populateCulComment.php",
"MediaWiki\\CheckUser\\Maintenance\\MoveLogEntriesFromCuChanges": "maintenance/moveLogEntriesFromCuChanges.php",
"MediaWiki\\CheckUser\\Maintenance\\PopulateCheckUserTablesWithSimulatedData": "maintenance/populateCheckUserTablesWithSimulatedData.php",
"MediaWiki\\CheckUser\\Maintenance\\GenerateStatsAboutClientHintsData": "maintenance/generateStatsAboutClientHintsData.php",
"MediaWiki\\CheckUser\\Maintenance\\FixTrailingSpacesInLogs": "maintenance/fixTrailingSpacesInLogs.php",
"MediaWiki\\CheckUser\\Maintenance\\DeleteReadOldRowsInCuChanges": "maintenance/deleteReadOldRowsInCuChanges.php",
"MediaWiki\\CheckUser\\Maintenance\\PopulateCentralCheckUserIndexTables": "maintenance/populateCentralCheckUserIndexTables.php"
},
"ServiceWiringFiles": [
"src/ServiceWiring.php"
],
"AutoloadNamespaces": {
"MediaWiki\\CheckUser\\": "src/"
},
"TestAutoloadClasses": {
"MediaWiki\\CheckUser\\Tests\\Integration\\Maintenance\\Mocks\\SemiMockedCheckUserDataPurger": "tests/phpunit/integration/maintenance/mocks/SemiMockedCheckUserDataPurger.php"
},
"TestAutoloadNamespaces": {
"MediaWiki\\CheckUser\\Tests\\": "tests/phpunit/",
"MediaWiki\\CheckUser\\Tests\\Unit\\": "tests/phpunit/unit",
"MediaWiki\\CheckUser\\Tests\\Integration\\": "tests/phpunit/integration"
},
"load_composer_autoloader": true,
"DatabaseVirtualDomains": [
"virtual-checkuser-global"
],
"manifest_version": 2
}