-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue.js
84 lines (84 loc) · 2.6 KB
/
queue.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
exports.getScriptManifest = function () {
return {
name: 'Queue - Master',
description: 'Main Queue Settings',
author: 'S1D3WYZ',
version: '0.0.1',
};
};
exports.getDefaultParameters = function () {
return new Promise((resolve) => {
resolve({
queueLocation: {
type: 'filepath',
description: 'Whereis queue.json?',
secondaryDescription: `(Suggested:) %APPDATA%\\Firebot\\v5\\profiles\\Main Profile\\scripts\\queue.json`,
},
});
});
};
exports.run = function (runRequest) {
return new Promise((resolve) => {
const response = { success: false, errorMessage: '', effects: [] },
logger = runRequest.modules.logger,
fs = runRequest.modules.fs,
queueFile = runRequest.parameters.queueLocation,
queue = JSON.parse(fs.readFileSync(queueFile)),
context = runRequest.command.args[0],
modifier = runRequest.command.args[1] ? runRequest.command.args[1] : 7;
try {
switch (context) {
case 'on':
queue.status = 'Open';
response.effects.push(
{
type: EffectType.TEXT_TO_FILE,
filepath: queueFile,
writeMode: 'replace',
text: JSON.stringify(queue),
},
{
type: EffectType.CHAT,
message: `Queue is now ${queue.status} - ${queue.playing.length} playing, ${queue.waiting.length} waiting`,
}
);
break;
case 'off':
queue.status = 'Closed';
response.effects.push(
{
type: EffectType.TEXT_TO_FILE,
filepath: queueFile,
writeMode: 'replace',
text: JSON.stringify(queue),
},
{
type: EffectType.CHAT,
message: `Queue is now ${queue.status} - ${queue.playing.length} playing, ${queue.waiting.length} waiting`,
}
);
break;
case 'list':
let pos = 0,
list = queue.waiting.splice(pos, modifier),
next = list.join(', ');
response.effects.push({
type: EffectType.CHAT,
message: `Up next: ${next}`,
});
break;
default:
response.effects.push({
type: EffectType.CHAT,
message: `Queue is ${queue.status} - ${queue.playing.length} playing, ${queue.waiting.length} waiting`,
});
break;
}
} catch (error) {
response.errorMessage = error;
}
logger.error(`Looks like we didn't fail`);
response.success = true;
resolve(response);
});
};