-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
261 lines (232 loc) · 5.97 KB
/
config.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
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
const uuidv4 = require("uuid/v4");
const util = require("util");
//
// If we failed to load a config from roon.load_config we will populate our
// settings object with these values
//
DefaultConfig = {
server: "wss://dj.macnugget.org/",
api: "https://dj.macnugget.org/graphql",
djzone: { output_id: "", name: "" },
mode: "slave",
debug: false,
channel: "chaos",
enabled: true,
serverid: "",
code: "",
nickname: "",
enableradio: false,
disableradio: false,
notfound: "any"
};
var current = {};
var serverState = "";
var serverVersion = "";
function debug() {
if (current.debug) {
return true;
}
return false;
}
function load(roon) {
console.log("Loading configuration cache");
current = roon.load_config("settings") || DefaultConfig;
if (typeof current.serverid === "undefined" || current.serverid == "") {
current.serverid = uuidv4();
console.log("Assigning new serverid", current.serverid);
}
if (typeof current.code === "undefined" || current.code == "") {
current.code = uuidv4().split("-")[1];
console.log("Assigning new security code", current.code);
}
console.log("Debugging output is " + debug());
Object.keys(DefaultConfig).forEach(function (key) {
if (typeof current[key] === "undefined") {
console.log("Seeding new config item %s", key);
}
});
}
function get(_key) {
return current[_key];
}
function set(_key, value) {
current[_key] = value;
if (current["debug"]) {
console.log(
"set config value for '%s' with '%s'",
_key,
current[_key]
);
}
}
function flag(_key) {
_val = current[_key];
switch (typeof _val) {
case "boolean":
return _val;
break;
case "string":
switch (_val) {
case "true":
case "on":
case "yes":
case "1":
return true;
case "default":
return false;
}
default:
console.log("Unknown flag type '%s' (%s)", _val, typeof _val);
return false;
}
}
function update(_settings) {
console.log("Updating configuration cache");
current = _settings;
console.log("Debugging output is " + debug());
}
function all() {
return current;
}
function setServerState(line) {
serverState = line;
}
function setServerVersion(ok, version) {
serverVersion = util.format("DJ server is v%s", version);
if (!ok) {
serverVersion += " ** Please upgrade";
}
}
// https://community.roonlabs.com/t/settings-api-can-make-a-remote-crash/35899/4?u=nugget
const fakeBoolean = [
{ title: "On", value: true },
{ title: "Off", value: false }
];
function layout(settings) {
var l = {
values: settings,
layout: [],
has_error: false
};
l.layout.push({
type: "dropdown",
title: "Enabled",
values: fakeBoolean,
setting: "enabled"
});
l.layout.push({
type: "group",
title: "Playback",
items: [
{
type: "zone",
title: "Zone",
setting: "djzone"
},
{
type: "string",
title: "Channel",
setting: "channel"
},
{
type: "dropdown",
title: "Role",
values: [
{ title: "DJ", value: "master" },
{ title: "Listener", value: "slave" }
],
setting: "mode"
},
{
type: "string",
title: "Nickname",
max_length: 16,
setting: "nickname"
},
{
type: "dropdown",
title: "Turn off Roon Radio when Listening",
values: fakeBoolean,
setting: "disableradio"
}
]
});
l.layout.push({
type: "group",
title: "DJ Settings",
items: [
{
type: "dropdown",
title: "Skip 'not found' songs",
values: [
{
title: "if ANY listener fails",
value: "any"
},
{
title: "never",
value: "never"
}
],
setting: "notfound"
},
{
type: "dropdown",
title: "Turn on Roon Radio when DJing",
values: fakeBoolean,
setting: "enableradio"
}
]
});
l.layout.push({
type: "group",
title: "Advanced Settings",
items: [
{
type: "string",
title: "DJ Server URL",
setting: "server"
}
]
});
l.layout.push({
type: "group",
title: "Developer Settings",
collapsable: true,
items: [
{
type: "dropdown",
values: fakeBoolean,
title: "Debug Output",
setting: "debug"
},
{
type: "string",
title: "User ID",
setting: "serverid"
}
]
});
l.layout.push({
type: "label",
title: serverState
});
l.layout.push({
type: "label",
title: serverVersion
});
l.layout.push({
type: "label",
title: util.format("Your private code is '%s'", current.code)
});
return l;
}
exports.load = load;
exports.layout = layout;
exports.get = get;
exports.set = set;
exports.update = update;
exports.all = all;
exports.flag = flag;
exports.setServerState = setServerState;
exports.setServerVersion = setServerVersion;