-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.ts
287 lines (272 loc) · 6.11 KB
/
config.ts
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
import { EventEmitterModuleOptions } from "@nestjs/event-emitter/dist/interfaces";
import { AxiosRequestConfig } from "axios";
import { BackOffPolicy, RetryOptions } from "typescript-retry-decorator";
import { ChannelNames, Licenses } from "./src/types";
export const pioneerApi = "https://query.joystream.org/graphql";
export const atlasApi = "https://orion.joystream.org/graphql";
export const wsLocation = "wss://rpc.joystream.org:9944";
export const database = "joy_dao";
// wg bot
export const channelNames: ChannelNames = {
// groups https://github.com/Joystream/joystream/blob/c57054eebe5da4f683134dbdaaecf50263ec7336/cli/src/Types.ts#L53-L63
contentWorkingGroup: "▶|content-curator",
storageWorkingGroup: "💿|storage-provider",
forumWorkingGroup: "📋|forum",
distributionWorkingGroup: "🔌|distributors",
operationsWorkingGroupAlpha: "👷|builders",
operationsWorkingGroupGamma: "📈|marketing",
operationsWorkingGroupBeta: "👨|human-resources",
general: "💬|general",
council: "🏛|council",
proposals: "📋|proposals",
contentCreator: "💻|content-creator",
techSupport: "💻|tech-support",
atlasFeedback: "🛫|atlas-testing",
validators: "✅|validator",
bounties: "💻|active-bounties",
videos: "🤖|video-bot",
forumspam: "🤖|forum-bot"
};
export const identityValidatedRole = 'on-chain identity verified';
export const councilMemberRole = "Council Member";
//mapping of group Id coming from Query node to server role name
export const wgToRoleMap: ChannelNames = {
contentWorkingGroup: "Content Worker",
storageWorkingGroup: "Storage Worker",
forumWorkingGroup: "Forum Worker",
distributionWorkingGroup: "Distribution Worker",
operationsWorkingGroupAlpha: "Builder Worker",
operationsWorkingGroupGamma: "Marketing Worker",
operationsWorkingGroupBeta: "HR Worker",
councilMemberRole: councilMemberRole
};
//same as above, just for lead [this is not yet implemented!]
export const wgLeadToRoleMap: ChannelNames = {
contentWorkingGroup: "Content Lead",
storageWorkingGroup: "Storage Lead",
forumWorkingGroup: "Forum Lead",
distributionWorkingGroup: "Distribution Lead",
operationsWorkingGroupAlpha: "Builder Lead",
operationsWorkingGroupGamma: "Marketing Lead",
operationsWorkingGroupBeta: "HR Lead"
};
export const wgEvents = [
"ApplicationTerminated",
"ApplicationWithdrawn",
"AppliedOnOpening",
"LeaderSet",
"LeaderUnset",
"BudgetSet",
"UpdatedWorkingGroupBudget", //unlike all others, this event comes in a dedicated section 'joystreamUtility'
"OpeningAdded",
"OpeningCanceled",
"RewardPaid",
"OpeningFilled",
"StakeDecreased",
"StakeIncreased",
"StakeSlashed",
"TerminatedLeader",
"TerminatedWorker",
"WorkerExited",
"WorkerRewardAmountUpdated",
];
export const licenses: Licenses =
{
"1000": "Custom",
"1001": "PDM",
"1002": "CC0",
"1003": "CC_BY",
"1004": "CC_BY_SA",
"1005": "CC_BY_ND",
"1006": "CC_BY_NC",
"1007": "CC_BY_NC_SA",
"1008": "CC_BY_NC_ND"
}
export const forumCategoriesToChannels = [
{
category: {
id: 1,
name: 'Bounties'
},
channels: [
channelNames.bounties
]
},
{
category: {
id: 3,
name: 'Governance'
},
channels: [
channelNames.council
]
},
{
category: {
id: 9,
name: 'Forum WG'
},
channels: [
channelNames.forum
]
},
{
category: {
id: 11,
name: 'Content WG'
},
channels: [
channelNames.contentWorkingGroup, channelNames.council
]
},
{
category: {
id: 12,
name: 'Builders WG'
},
channels: [
channelNames.operationsWorkingGroupAlpha, channelNames.council
]
},
{
category: {
id: 13,
name: 'SP WG'
},
channels: [
channelNames.storageWorkingGroup, channelNames.council
]
},
{
category: {
id: 14,
name: 'Marketing WG'
},
channels: [
channelNames.operationsWorkingGroupGamma, channelNames.council
]
},
{
category: {
id: 15,
name: 'Distribution WG'
},
channels: [
channelNames.distributionWorkingGroup, channelNames.council
]
},
{
category: {
id: 16,
name: 'HR WG'
},
channels: [
channelNames.operationsWorkingGroupBeta, channelNames.council
]
},
{
category: {
id: 18,
name: 'Content Creators'
},
channels: [
channelNames.contentCreator
]
},
{
category: {
id: 19,
name: 'Validators'
},
channels: [
channelNames.validators
]
},
{
category: {
id: 23,
name: 'Discussion'
},
channels: [
channelNames.forumspam
]
},
{
category: {
id: 25,
name: 'Help & Support'
},
channels: [
channelNames.techSupport
]
},
{
category: {
id: 28,
name: 'Creatives'
},
channels: [
channelNames.contentCreator
]
},
{
category: {
id: 29,
name: 'Marketing'
},
channels: [
channelNames.operationsWorkingGroupGamma
]
},
{
category: {
id: 30,
name: 'Development'
},
channels: [
channelNames.operationsWorkingGroupAlpha
]
},
{
category: {
id: 31,
name: 'Atlas Feedback'
},
channels: [
channelNames.atlasFeedback
]
},
{
category: {
id: 32,
name: 'Education'
},
channels: [
channelNames.forumspam
]
},
{
category: {
id: 35,
name: 'Lounge'
},
channels: [
channelNames.forumspam
]
},
]
export const globalRetryConfig : RetryOptions = {
maxAttempts: 3,
backOffPolicy: BackOffPolicy.ExponentialBackOffPolicy,
backOff: 1000,
exponentialOption: { maxInterval: 4000, multiplier: 3 }
}
export const globalEventingConfig : EventEmitterModuleOptions = {
global: true,
wildcard: true,
maxListeners: 32
}
export const axiosConfig: AxiosRequestConfig = {
timeout: 10000 // 10 sec in milliseconds
}
export const joystreamBlue = "#4038FF"; // official joystream blue, see https://www.joystream.org/brand/guides/