-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigBuilder.js
124 lines (119 loc) · 4.06 KB
/
configBuilder.js
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
const fs = require("fs")
const yaml = require("js-yaml")
const Ajv = require("ajv")
const ajv = new Ajv()
const logger = require("./logger")
const yamlFilePath = process.argv[3] || "./config.yaml"
const schema = {
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
overseerr_url: {
type: "string",
minLength: 1,
},
overseerr_api_token: {
type: "string",
minLength: 1,
},
approve_on_no_match: {
type: "boolean",
},
instances: {
type: "object",
patternProperties: {
".*": {
type: "object",
properties: {
server_id: {
type: "number",
},
root_folder: {
type: "string",
minLength: 1,
},
quality_profile_id: {
type: "number",
},
approve: {
type: "boolean",
},
},
required: ["server_id", "root_folder"],
},
},
additionalProperties: false,
},
filters: {
type: "array",
items: {
type: "object",
properties: {
media_type: {
type: "string",
enum: ["movie", "tv"],
},
is_not_4k: {
type: "boolean",
},
is_4k: {
type: "boolean",
},
conditions: {
type: "object",
additionalProperties: {
anyOf: [
{ type: "string" },
{
type: "array",
items: { type: "string" },
minItems: 1,
},
{
type: "object",
properties: {
exclude: {
anyOf: [{ type: "string" }, { type: "array", items: { type: "string" } }],
},
},
required: ["exclude"],
additionalProperties: false,
},
],
},
},
apply: {
anyOf: [
{ type: "string" },
{
type: "array",
items: { type: "string" },
minItems: 1,
},
],
},
},
required: ["media_type", "apply"],
},
},
},
required: ["overseerr_url", "overseerr_api_token", "instances", "filters"],
}
const formatErrors = (errors) => {
return errors.map((error) => `"${error.instancePath}": ${error.message || "Validation error"}`).join("\n")
}
const loadConfig = () => {
try {
const fileContents = fs.readFileSync(yamlFilePath, "utf8")
const config = yaml.load(fileContents)
const validate = ajv.compile(schema)
const valid = validate(config)
if (!valid) throw new Error(`\n${formatErrors(validate.errors)}`)
logger.info(`Validated config`)
return config
} catch (error) {
logger.error(`Error validating config: ${error.message}`)
process.exit(1)
}
}
module.exports = { loadConfig }