summary refs log tree commit diff
path: root/extra/admin-api/Spacebar.ConfigModel/ServerConfiguration.cs
blob: 2ea107b8bdf66abf473951714ee8c724ae60aa59 (plain) (blame)
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
using System.Text.Json.Serialization;

namespace Spacebar.ConfigModel;

public class ServerConfiguration {
    [JsonPropertyName("admin")]
    public EndpointConfiguration Admin { get; set; } = new();

    [JsonPropertyName("gateway")]
    public EndpointConfiguration Gateway { get; set; } = new();

    [JsonPropertyName("cdn")]
    public CdnConfiguration Cdn { get; set; } = new();

    [JsonPropertyName("api")]
    public ApiConfiguration Api { get; set; } = new();

    [JsonPropertyName("general")]
    public GeneralConfiguration General { get; set; } = new();

    [JsonPropertyName("limits")]
    public LimitsConfiguration Limits { get; set; } = new();

    [JsonPropertyName("security")]
    public SecurityConfiguration Security { get; set; } = new();

    [JsonPropertyName("login")]
    public LoginConfiguration Login { get; set; } = new();

    [JsonPropertyName("register")]
    public RegisterConfiguration Register { get; set; } = new RegisterConfiguration();

    [JsonPropertyName("regions")]
    public RegionConfiguration Regions { get; set; } = new();

    [JsonPropertyName("guild")]
    public GuildConfiguration Guild { get; set; } = new();

    [JsonPropertyName("gif")]
    public GifConfiguration Gif { get; set; } = new GifConfiguration();

    [JsonPropertyName("rabbitmq")]
    public RabbitMQConfiguration Rabbitmq { get; set; } = new RabbitMQConfiguration();

    [JsonPropertyName("templates")]
    public TemplateConfiguration Templates { get; set; } = new TemplateConfiguration();

    [JsonPropertyName("defaults")]
    public DefaultsConfiguration Defaults { get; set; } = new();

    [JsonPropertyName("external")]
    public ExternalTokensConfiguration External { get; set; } = new();

    // TODO: lazy
    // [JsonPropertyName("email")]
    // public EmailConfiguration Email { get; set; } = new EmailConfiguration();

    [JsonPropertyName("passwordReset")]
    public PasswordResetConfiguration PasswordReset { get; set; } = new PasswordResetConfiguration();

    [JsonPropertyName("user")]
    public UserConfiguration User { get; set; } = new UserConfiguration();
}

public class RegisterConfiguration {
    [JsonPropertyName("email")]
    public RegistrationEmailConfiguration Email { get; set; } = new RegistrationEmailConfiguration();

    [JsonPropertyName("dateOfBirth")]
    public DateOfBirthConfiguration DateOfBirth { get; set; } = new DateOfBirthConfiguration();

    [JsonPropertyName("password")]
    public PasswordConfiguration Password { get; set; } = new PasswordConfiguration();

    [JsonPropertyName("disabled")]
    public bool Disabled { get; set; } = false;

    [JsonPropertyName("requireCaptcha")]
    public bool RequireCaptcha { get; set; } = true;

    [JsonPropertyName("requireInvite")]
    public bool RequireInvite { get; set; } = false;

    [JsonPropertyName("guestsRequireInvite")]
    public bool GuestsRequireInvite { get; set; } = true;

    [JsonPropertyName("allowNewRegistration")]
    public bool AllowNewRegistration { get; set; } = true;

    [JsonPropertyName("allowMultipleAccounts")]
    public bool AllowMultipleAccounts { get; set; } = true;

    [JsonPropertyName("blockIpDataCoThreatTypes")]
    public List<string> BlockIpDataCoThreatTypes { get; set; } = [
        "tor", "icloud_relay", "proxy", "datacenter", "anonymous", "known_attacker", "known_abuser", "threat"
    ]; // matching ipdata's threat.is_* fields as of 2025/11/30, minus bogon

    [JsonPropertyName("blockAsnTypes")]
    public List<string> BlockAsnTypes { get; set; } = [""];

    [JsonPropertyName("blockAsns")]
    public List<string> BlockAsns { get; set; } = [""];

    [JsonPropertyName("blockAbuseIpDbAboveScore")]
    public int BlockAbuseIpDbAboveScore { get; set; } = 75; // 0 to disable

    [JsonPropertyName("incrementingDiscriminators")]
    public bool IncrementingDiscriminators { get; set; } = false; // random otherwise

    [JsonPropertyName("defaultRights")]
    public string DefaultRights { get; set; } = "875069521787904"; // See `npm run generate:rights`

    [JsonPropertyName("checkIp")]
    public bool CheckIp { get; set; } = true;
}

public class PasswordConfiguration {
    [JsonPropertyName("required")]
    public bool Required { get; set; } = true;

    [JsonPropertyName("minLength")]
    public int MinLength { get; set; } = 8;

    [JsonPropertyName("minNumbers")]
    public int MinNumbers { get; set; } = 2;

    [JsonPropertyName("minUpperCase")]
    public int MinUpperCase { get; set; } = 2;

    [JsonPropertyName("minSymbols")]
    public int MinSymbols { get; set; } = 0;
}

public class DateOfBirthConfiguration {
    [JsonPropertyName("required")]
    public bool Required { get; set; } = true;

    [JsonPropertyName("minimum")]
    public int Minimum { get; set; } = 13;
}

public class RegistrationEmailConfiguration {
    [JsonPropertyName("required")]
    public bool Required { get; set; } = false;

    [JsonPropertyName("allowlist")]
    public bool Allowlist { get; set; } = false;

    [JsonPropertyName("blocklist")]
    public bool Blocklist { get; set; } = false;

    [JsonPropertyName("domains")]
    public List<string> Domains { get; set; } = [];
}

public class TemplateConfiguration {
    [JsonPropertyName("enabled")]
    public bool Enabled { get; set; } = true;

    [JsonPropertyName("allowTemplateCreation")]
    public bool AllowTemplateCreation { get; set; } = true;

    [JsonPropertyName("allowDiscordTemplates")]
    public bool AllowDiscordTemplates { get; set; } = true;

    [JsonPropertyName("allowRaws")]
    public bool AllowRaws { get; set; } = true;
}

public class PasswordResetConfiguration {
    [JsonPropertyName("requireCaptcha")]
    public bool RequireCaptcha { get; set; } = false;
}

public class UserConfiguration {
    [JsonPropertyName("blockedContains")]
    public List<string> BlockedContains { get; set; } = [];

    [JsonPropertyName("blockedEquals")]
    public List<string> BlockedEquals { get; set; } = [];
}

public class RabbitMQConfiguration {
    [JsonPropertyName("host")]
    public string? Host { get; set; } = null;
}

public class GifConfiguration {
    [JsonPropertyName("enabled")]
    public bool Enabled { get; set; } = true;

    [JsonPropertyName("provider")]
    public string Provider { get; set; } = "tenor";

    [JsonPropertyName("apiKey")]
    public string? ApiKey { get; set; } = "LIVDSRZULELA";
}

public class EndpointConfiguration {
    [JsonPropertyName("endpointPrivate")]
    public string? EndpointPrivate { get; set; }

    [JsonPropertyName("endpointPublic")]
    public string? EndpointPublic { get; set; }
}

public class ApiConfiguration : EndpointConfiguration {
    [JsonPropertyName("activeVersions")]
    public List<string> ActiveVersions { get; set; } = null!;

    [JsonPropertyName("defaultVersion")]
    public string DefaultVersion { get; set; } = null!;
}

public class CdnConfiguration : EndpointConfiguration {
    [JsonPropertyName("resizeHeightMax")]
    public int ResizeHeightMax { get; set; } = 1000;

    [JsonPropertyName("resizeWidthMax")]
    public int ResizeWidthMax { get; set; } = 1000;

    [JsonPropertyName("imagorServerUrl")]
    public string? ImagorServerUrl { get; set; } = null;

    [JsonPropertyName("proxyCacheHeaderSeconds")]
    public int ProxyCacheHeaderSeconds { get; set; } = 60 * 60 * 24;

    [JsonPropertyName("maxAttachmentSize")]
    public int MaxAttachmentSize { get; set; } = 25 * 1024 * 1024; // 25 MB

    // limits: CdnLimitsConfiguration {get;set;}=new CdnLimitsConfiguration();
}

public class CdnLimitsConfiguration {
    [JsonPropertyName("icon")]
    public CdnImageLimitsConfiguration Icon { get; set; } = new();

    [JsonPropertyName("roleIcon")]
    public CdnImageLimitsConfiguration RoleIcon { get; set; } = new();

    [JsonPropertyName("emoji")]
    public CdnImageLimitsConfiguration Emoji { get; set; } = new();

    [JsonPropertyName("sticker")]
    public CdnImageLimitsConfiguration Sticker { get; set; } = new();

    [JsonPropertyName("banner")]
    public CdnImageLimitsConfiguration Banner { get; set; } = new();

    [JsonPropertyName("splash")]
    public CdnImageLimitsConfiguration Splash { get; set; } = new();

    [JsonPropertyName("avatar")]
    public CdnImageLimitsConfiguration Avatar { get; set; } = new();

    [JsonPropertyName("discoverySplash")]
    public CdnImageLimitsConfiguration DiscoverySplash { get; set; } = new();

    [JsonPropertyName("appIcon")]
    public CdnImageLimitsConfiguration AppIcon { get; set; } = new();

    [JsonPropertyName("discoverSplash")]
    public CdnImageLimitsConfiguration DiscoverSplash { get; set; } = new(); //what even is this?

    [JsonPropertyName("teamIcon")]
    public CdnImageLimitsConfiguration TeamIcon { get; set; } = new();

    [JsonPropertyName("channelIcon")]
    public CdnImageLimitsConfiguration ChannelIcon { get; set; } = new(); // is this even used?

    [JsonPropertyName("guildAvatar")]
    public CdnImageLimitsConfiguration GuildAvatar { get; set; } = new();
}

public class CdnImageLimitsConfiguration {
    [JsonPropertyName("maxHeight")]
    public int MaxHeight { get; set; } = 8192;

    [JsonPropertyName("maxWidth")]
    public int MaxWidth { get; set; } = 8192;

    [JsonPropertyName("maxSize")]
    public int MaxSize { get; set; } = 10 * 1024 * 1024; // 10 MB

    // "always" | "never" | "premium"
    [JsonPropertyName("allowAnimated")]
    public string AllowAnimated { get; set; } = "always";
}

public class LoginConfiguration {
    [JsonPropertyName("requireCaptcha")]
    public bool RequireCaptcha { get; set; } = false;

    [JsonPropertyName("requireVerification")]
    public bool RequireVerification { get; set; } = false;
}

public class RegionConfiguration {
    [JsonPropertyName("default")]
    public string Default { get; set; } = "spacebar-central";

    [JsonPropertyName("useDefaultAsOptimal")]
    public bool UseDefaultAsOptimal { get; set; } = true;

    [JsonPropertyName("available")]
    public List<Region> Available { get; set; } = [];

    public class Region {
        [JsonPropertyName("id")]
        public string Id { get; set; } = null!;

        [JsonPropertyName("name")]
        public string Name { get; set; } = null!;

        [JsonPropertyName("endpoint")]
        public string Endpoint { get; set; } = null!;

        [JsonPropertyName("vip")]
        public bool Vip { get; set; } = false;

        [JsonPropertyName("custom")]
        public bool Custom { get; set; } = false;

        [JsonPropertyName("deprecated")]
        public bool Deprecated { get; set; } = false;
    }
}

public class ExternalTokensConfiguration {
    [JsonPropertyName("twitter")]
    public string? Twitter { get; set; } = null;
}

public class GuildConfiguration {
    [JsonPropertyName("defaultFeatures")]
    public List<string> DefaultFeatures { get; set; } = [];

    [JsonPropertyName("autoJoin")]
    public GuildAutoJoinConfiguration AutoJoin { get; set; } = new();

    [JsonPropertyName("discovery")]
    public GuildDiscoveryConfiguration Discovery { get; set; } = new();

    public class GuildDiscoveryConfiguration {
        [JsonPropertyName("showAllGuilds")]
        public bool ShowAllGuilds { get; set; } = false;

        [JsonPropertyName("useRecommendation")]
        public bool UseRecommendation { get; set; } = false;

        [JsonPropertyName("offset")]
        public int Offset { get; set; } = 0;

        [JsonPropertyName("limit")]
        public int Limit { get; set; } = 24;
    }

    public class GuildAutoJoinConfiguration {
        [JsonPropertyName("enabled")]
        public bool Enabled { get; set; } = false;

        [JsonPropertyName("guilds")]
        public List<string> Guilds { get; set; } = [];

        [JsonPropertyName("canLeave")]
        public bool CanLeave { get; set; } = true;

        [JsonPropertyName("bots")]
        public bool Bots { get; set; } = false;
    }
}