-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathconfig-server-schema.json
518 lines (518 loc) · 17.9 KB
/
config-server-schema.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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://github.com/superzanti/ServerSync/server-config.json",
"type": "object",
"title": "The server configuration schema",
"description": "The root schema comprises the entire JSON document.",
"default": {},
"required": [
"general",
"connection",
"rules",
"misc"
],
"additionalProperties": true,
"properties": {
"general": {
"$id": "#/properties/general",
"type": "object",
"title": "The general schema",
"description": "General configuration of the servers behavior",
"default": {},
"examples": [
{
"sync_mode": 2,
"push_client_mods": false
}
],
"required": [
"push_client_mods",
"sync_mode"
],
"additionalProperties": true,
"properties": {
"push_client_mods": {
"$id": "#/properties/general/properties/push_client_mods",
"type": "boolean",
"title": "The push_client_mods schema",
"description": "Should clientmods be used for suggesting client side only mods",
"default": false,
"examples": [
false
]
},
"sync_mode": {
"$id": "#/properties/general/properties/sync_mode",
"type": "integer",
"minimum": 1,
"maximum": 2,
"title": "The sync_mode schema",
"description": "The type of file transfer that the server uses",
"default": 2,
"examples": [
2
]
}
}
},
"connection": {
"$id": "#/properties/connection",
"type": "object",
"title": "The connection schema",
"description": "Details about where your server communicates from",
"default": {},
"examples": [
{
"port": 38067
}
],
"required": [
"port"
],
"additionalProperties": true,
"properties": {
"port": {
"$id": "#/properties/connection/properties/port",
"type": "integer",
"title": "The port schema",
"description": "The port the server is serving on",
"default": 38067,
"examples": [
38067
]
}
}
},
"rules": {
"$id": "#/properties/rules",
"type": "object",
"title": "The rules schema",
"description": "Rules about what files to transfer and how",
"default": {},
"examples": [
{
"files": {
"ignore": [
{
"pattern": "\\*\\*/*.jar"
}
]
},
"directories": [
{
"name": "test-mirror",
"mode": "mirror"
},
{
"name": "test-push",
"mode": "push"
}
]
}
],
"required": [
"directories",
"files"
],
"additionalProperties": true,
"properties": {
"directories": {
"$id": "#/properties/rules/properties/directories",
"type": "array",
"title": "The directories schema",
"description": "The directories that will be scanned for files to sync",
"default": [],
"examples": [
[
{
"path": "test-mirror",
"mode": "mirror"
},
{
"path": "test-push",
"mode": "push"
}
]
],
"additionalItems": true,
"items": {
"$id": "#/properties/rules/properties/directories/items",
"anyOf": [
{
"$id": "#/properties/rules/properties/directories/items/anyOf/0",
"type": "object",
"title": "Object style included directory",
"description": "Sync directory with details about how",
"default": {},
"examples": [
{
"path": "mirror",
"name": "test-mirror"
}
],
"required": [
"path"
],
"additionalProperties": true,
"properties": {
"path": {
"$id": "#/properties/rules/properties/directories/items/anyOf/0/properties/name",
"type": "string",
"title": "The name schema",
"description": "The name of the directory",
"default": "",
"examples": [
"test-mirror"
]
},
"mode": {
"$id": "#/properties/rules/properties/directories/items/anyOf/0/properties/mode",
"type": "string",
"pattern": "push|mirror",
"title": "The mode schema",
"description": "What style of sync is being used, mostly affects file deletion client side",
"default": "",
"examples": [
"mirror"
]
}
}
},
{
"$id": "#/properties/rules/properties/directories/items/anyOf/1",
"type": "string",
"title": "Named default mode",
"description": "Default sync mode for named directory",
"default": "",
"examples": [
"test-directory"
]
}
]
}
},
"files": {
"$id": "#/properties/rules/properties/files",
"type": "object",
"title": "The files schema",
"description": "Configuration of what gets synced.",
"default": {},
"examples": [
{
"include": [
"**/serversync-*.jar",
{
"pattern": "\\*\\*/serversync-\\*.cfg",
"description": "foobar"
}
],
"ignore": [
"**/serversync-*.jar",
{
"pattern": "\\*\\*/serversync-\\*.cfg",
"description": "foobar"
}
]
}
],
"required": [
"include"
],
"properties": {
"include": {
"$id": "#/properties/rules/properties/files/properties/include",
"type": "array",
"title": "The include schema",
"description": "Glob patterns of files that will be included during sync.",
"default": [],
"examples": [
[
"**/serversync-*.jar",
{
"pattern": "\\*\\*/serversync-\\*.cfg",
"description": "I like this file!"
}
]
],
"additionalItems": true,
"items": {
"$id": "#/properties/rules/properties/files/properties/include/items",
"anyOf": [
{
"$id": "#/properties/rules/properties/files/properties/include/items/anyOf/0",
"type": "string",
"title": "The first anyOf schema",
"description": "A naked include glob pattern.",
"default": "",
"examples": [
"**/serversync-*.jar"
]
},
{
"$id": "#/properties/rules/properties/files/properties/include/items/anyOf/1",
"type": "object",
"title": "The second anyOf schema",
"description": "A description of an include glob pattern.",
"default": {},
"examples": [
{
"pattern": "\\*\\*/serversync-\\*.cfg",
"description": "I like this file!"
}
],
"required": [
"pattern"
],
"properties": {
"pattern": {
"$id": "#/properties/rules/properties/files/properties/include/items/anyOf/1/properties/pattern",
"type": "string",
"title": "The pattern schema",
"description": "A glob pattern to match against.",
"default": "",
"examples": [
"**/serversync-*.cfg"
]
},
"description": {
"$id": "#/properties/rules/properties/files/properties/include/items/anyOf/1/properties/description",
"type": "string",
"title": "The description schema",
"description": "A description of the reason for this pattern.",
"default": "",
"examples": [
"I like this file!"
]
}
},
"additionalProperties": true
}
]
}
},
"ignore": {
"$id": "#/properties/rules/properties/files/properties/ignore",
"type": "array",
"title": "The ignore schema",
"description": "Glob patterns of files that will not be sent to clients.",
"default": [],
"examples": [
[
"**/serversync-*.jar",
{
"pattern": "\\*\\*/serversync-\\*.cfg",
"description": "I don't like these files!"
}
]
],
"additionalItems": true,
"items": {
"$id": "#/properties/rules/properties/files/properties/ignore/items",
"anyOf": [
{
"$id": "#/properties/rules/properties/files/properties/ignore/items/anyOf/0",
"type": "string",
"title": "The first anyOf schema",
"description": "A naked ignore glob pattern.",
"default": "",
"examples": [
"**/serversync-*.jar",
"config/serversync/*"
]
},
{
"$id": "#/properties/rules/properties/files/properties/ignore/items/anyOf/1",
"type": "object",
"title": "The second anyOf schema",
"description": "A description of an ignore pattern.",
"default": {},
"examples": [
{
"pattern": "\\*\\*/serversync-\\*.cfg",
"description": "I don't like these files!"
}
],
"required": [
"pattern"
],
"properties": {
"pattern": {
"$id": "#/properties/rules/properties/files/properties/ignore/items/anyOf/1/properties/pattern",
"type": "string",
"title": "The pattern schema",
"description": "A glob pattern to match against.",
"default": "",
"examples": [
"**/serversync-*.cfg"
]
},
"description": {
"$id": "#/properties/rules/properties/files/properties/ignore/items/anyOf/1/properties/description",
"type": "string",
"title": "The description schema",
"description": "A description of why this pattern is here.",
"default": "",
"examples": [
"I don't like these files!"
]
}
},
"additionalProperties": true
}
]
}
},
"redirect": {
"$id": "#/properties/rules/properties/files/properties/redirect",
"type": "array",
"title": "The redirect schema",
"description": "Glob patterns of files to redirect to another location on the client.",
"default": [],
"examples": [
[
{
"pattern": "mods/test-redirect-file.txt",
"redirectTo": "redirected-files"
}
]
],
"additionalItems": true,
"items": {
"$id": "#/properties/rules/properties/files/properties/redirect/items",
"anyOf": [
{
"$id": "#/properties/rules/properties/files/properties/redirect/items/anyOf/0",
"type": "object",
"title": "The first anyOf schema",
"description": "A description of the redirect.",
"default": {},
"examples": [
{
"pattern": "mods/test-redirect-file.txt",
"redirectTo": "redirected-files"
}
],
"required": [
"pattern",
"redirectTo"
],
"properties": {
"pattern": {
"$id": "#/properties/rules/properties/files/properties/redirect/items/anyOf/0/properties/pattern",
"type": "string",
"title": "The pattern schema",
"description": "The glob of files to redirect.",
"default": "",
"examples": [
"mods/test-redirect-file.txt"
]
},
"redirectTo": {
"$id": "#/properties/rules/properties/files/properties/redirect/items/anyOf/0/properties/redirectTo",
"type": "string",
"title": "The redirectTo schema",
"description": "The location to redirect the files to.",
"default": "",
"examples": [
"redirected-files"
]
}
},
"additionalProperties": true
}
]
}
}
},
"additionalProperties": true
},
"redirect_files": {
"$id": "#/properties/rules/properties/redirect_files",
"type": "array",
"description": "A list of patterns for redirecting files to a different location on the client",
"default": [],
"examples": [
{
"pattern": "\\*\\*/\\*.jar",
"redirectTo": "ignored-mods"
}
],
"additionalItems": true,
"items": {
"$id": "#/properties/rules/properties/redirect_files/items",
"anyOf": [
{
"$id": "#/properties/rules/properties/redirect_files/items/anyOf/0",
"type": "object",
"title": "Detailed configuration",
"description": "Used to specify extra information about a pattern",
"default": {},
"examples": [
{
"pattern": "\\*\\*/\\*.jar",
"redirectTo": "ignored-mods"
}
],
"required": [
"pattern",
"redirectTo"
],
"additionalProperties": true,
"properties": {
"redirectTo": {
"$id": "#/properties/rules/properties/file_ignore_list/items/anyOf/0/properties/redirectTo",
"type": "string",
"title": "Where to redirect the file on the client",
"description": "This is where the file should end up on the client relative to the 'rootDir'",
"default": "",
"examples": [
"some-place"
]
},
"pattern": {
"$id": "#/properties/rules/properties/file_ignore_list/items/anyOf/0/properties/pattern",
"type": "string",
"title": "The pattern to match against",
"description": "Matches using GLOB patterns",
"default": "",
"examples": [
"**/*.jar"
]
}
}
}
]
}
}
}
},
"misc": {
"$id": "#/properties/misc",
"type": "object",
"title": "The misc schema",
"description": "Unspecified other settings",
"default": {},
"examples": [
{
"locale": "en_NZ"
}
],
"required": [
"locale"
],
"additionalProperties": true,
"properties": {
"locale": {
"$id": "#/properties/misc/properties/locale",
"type": "string",
"title": "The locale",
"description": "What language should serversync load in",
"default": "",
"examples": [
"en_NZ"
]
}
}
}
}
}