forked from wikimedia/mediawiki-extensions-EventBus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
79 lines (79 loc) · 2.35 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
{
"name": "EventBus",
"version": "0.4.0",
"author": [
"Eric Evans",
"Petr Pchelko",
"Marko Obrovac"
],
"url": "https://www.mediawiki.org/wiki/Extension:EventBus",
"descriptionmsg": "eventbus-desc",
"license-name": "GPL-2.0-or-later",
"requires": {
"MediaWiki": ">= 1.38.0"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\EventBus\\": "includes/"
},
"config": {
"EnableEventBus": {
"value": "TYPE_NONE"
},
"EventServices": {
"value": {
"eventbus": {
"url": "http://localhost:3000/v1/events",
"timeout": 5
},
"eventgate": {
"url": "http://localhost:8192/v1/events",
"timeout": 5
}
}
},
"EventBusEnableRunJobAPI": {
"value": true
},
"EventServiceDefault": {
"value": "eventbus"
},
"EventBusMaxBatchByteSize": {
"value": 4194304
}
},
"MessagesDirs": {
"EventBus": [
"i18n"
]
},
"Hooks": {
"ArticleDeleteComplete": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onArticleDeleteComplete",
"ArticleUndelete": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onArticleUndelete",
"PageMoveComplete": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onPageMoveComplete",
"ArticleRevisionVisibilitySet": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onArticleRevisionVisibilitySet",
"PageSaveComplete": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onPageSaveComplete",
"ArticlePurge": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onArticlePurge",
"BlockIpComplete": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onBlockIpComplete",
"LinksUpdateComplete": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onLinksUpdateComplete",
"ArticleProtectComplete": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onArticleProtectComplete",
"ChangeTagsAfterUpdateTags": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onChangeTagsAfterUpdateTags",
"CentralNoticeCampaignChange": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onCentralNoticeCampaignChange",
"RevisionRecordInserted": "MediaWiki\\Extension\\EventBus\\EventBusHooks::onRevisionRecordInserted"
},
"RestRoutes": [
{
"path": "/eventbus/v0/internal/job/execute",
"method": "POST",
"class": "MediaWiki\\Extension\\EventBus\\Rest\\RunSingleJobHandler",
"services": [
"ReadOnlyMode",
"MainConfig",
"JobRunner"
]
}
],
"ServiceWiringFiles": [
"ServiceWiring.php"
],
"manifest_version": 2
}