-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdeploy-commands.js
405 lines (358 loc) · 12.6 KB
/
deploy-commands.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
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
const {
SlashCommandBuilder,
SlashCommandStringOption,
} = require("@discordjs/builders");
const { REST } = require("@discordjs/rest");
const { Routes } = require("discord-api-types/v9");
const { clientId, guildId, token, config_domain, config_port, toy_power } = require("./config.json");
const fetch = (...args) =>
import("node-fetch").then(({ default: fetch }) => fetch(...args));
var toyValues = [];
var toyValuesPlusAll = [];
fetch("https://api.lovense.com/api/lan/getToys").then(async (response) => {
var lovenseConfig = await response.json();
var keys = Object.keys(lovenseConfig);
if (keys.length === 0) {
if (config_domain !== "" && config_port !== "") {
directConfig();
return;
}
else {
console.error("No information found in Lovense Config");
console.error(
"Please check you are running the Lovense CONNECT (not remote) App on your Phone or Desktop PC."
);
console.error(
"Please also check that you can see information returned from: https://api.lovense.com/api/lan/getToys website."
);
console.warn(
"If this continues to fail again and again... You can go to the URL Above and use the \"domain\" and \"httpsPort\" (not httpPort) and place them into the config_domain and config_port in the config.json file."
)
console.error("");
process.exit(1);
}
}
else if (keys.length > 1) {
console.error(
"Multiple connected users on same network, currently not setup to support this."
);
process.exit(1);
}
else {
var domain = keys[0];
var lovenseDetails = lovenseConfig[domain];
console.log("Lovense Details: ");
console.log("Domain: " + lovenseDetails.domain);
console.log("Port (Secure): " + lovenseDetails.httpsPort);
console.log("Device: " + lovenseDetails.platform);
console.log("Toys:");
for (const [_id, toyDetails] of Object.entries(lovenseDetails.toys)) {
var nickname =
toyDetails.nickName !== ""
? `${toyDetails.nickName} - (${toyDetails.name})`
: toyDetails.name;
console.log(
`${nickname}: (${toyDetails.id}) ` +
`[Version: ${toyDetails.version}] `+
`[Battery: ${toyDetails.battery.toString().padStart(3, " ")}] - ` +
`${toyDetails.status === 1 ? "Connected" : "Disconnected"}`
);
toyValues.push({
name: nickname,
safeName: toyDetails.name,
value: toyDetails.id,
});
}
registerCommands(toyValues);
}
});
function fixObject(array) {
return array.map((e) => [e.name, e.value]);
}
function directConfig() {
fetch(`https://${config_domain}:${config_port}/GetToys`)
.then(async (data) => {
var response = await data.json();
if (response.code === "200") {
console.log("Lovense Details: ");
console.log("Domain: " + config_domain);
console.log("Port (Secure): " + config_port);
console.log("Device: " + (config_domain.indexOf('127-0-0-1') !== -1 ? "pc" : "mobile (unknown)"));
console.log("Toys:");
for (const [_id, toyDetails] of Object.entries(response.data)) {
var nickname =
toyDetails.nickName !== ""
? `${toyDetails.nickName} - (${toyDetails.name})`
: toyDetails.name;
console.log(
` ${nickname}: (${toyDetails.id}) ` +
`[Version: ${toyDetails.version}] `+
`[Battery: ${toyDetails.battery.toString().padStart(3, " ")}] - ` +
`${toyDetails.status === 1 ? "Connected" : "Disconnected"}`
);
toyValues.push({
name: nickname,
safeName: toyDetails.name,
value: toyDetails.id,
});
}
registerCommands(toyValues);
}
else {
console.error(
`Lovense API returned a Unexpected code of ${response.code}`
);
console.error(
`Please provide the following details in the error report:`
)
console.error(response)
process.exit(1);
}
})
}
function registerCommands(toyValues) {
toyValuesPlusAll = Object.create(toyValues);
toyValuesPlusAll.push({
name: "All",
value: "ALL",
safeName: "ALL",
});
// =====================================================
// Basics, Commands which will always be visible.
const commands = [
new SlashCommandBuilder()
.setName("ping")
.setDescription("Replies with pong!"),
new SlashCommandBuilder()
.setName("server")
.setDescription("Replies with server info!"),
new SlashCommandBuilder()
.setName("user")
.setDescription("Replies with user info!"),
new SlashCommandBuilder()
.setName("battery")
.setDescription("See battery of given Toy")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(false)
.setDescription("Pick a Toy")
.setChoices(fixObject(toyValues))
),
new SlashCommandBuilder()
.setName("vibrate")
.setDescription("Vibrate a Toy with a power")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(toyValuesPlusAll))
)
.addIntegerOption((option) =>
option
.setName("power")
.setRequired(false)
.setDescription("Select the power of the Toy")
.setChoices(fixObject(toy_power))
),
new SlashCommandBuilder()
.setName("stopvibrate")
.setDescription("Stop a toy Vibrating. ;-;")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(toyValuesPlusAll))
),
new SlashCommandBuilder()
.setName("high")
.setDescription("Set a toy to HIGH POWER!")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(toyValuesPlusAll))
),
new SlashCommandBuilder()
.setName("medium")
.setDescription("Set a toy to Medium Power!")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(toyValuesPlusAll))
),
new SlashCommandBuilder()
.setName("low")
.setDescription("Set a toy to low power!")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(toyValuesPlusAll))
),
new SlashCommandBuilder()
.setName("stop")
.setDescription("Stop a toy. ;-;")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(toyValuesPlusAll))
),
];
// =====================================================
// Presets, Only available on specific toys.
var presetToys = toyValuesPlusAll.filter((a) => {
return ["lush", "hush", "ambi", "edge", "domi", "osci", "all"].indexOf(
a.safeName.toLowerCase()
) !== -1;
});
if (presetToys.length > 0) {
commands.push(
new SlashCommandBuilder()
.setName("pulse")
.setDescription("Pulse a Toy (Preset 1)")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(presetToys))
),
new SlashCommandBuilder()
.setName("grind")
.setDescription("Grind a Toy (Preset 2)")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(presetToys))
),
new SlashCommandBuilder()
.setName("circle")
.setDescription("Circle a Toy (Preset 3)")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(presetToys))
)
);
}
// =====================================================
// Vibrate specific location, Edge specific
var edgeToys = toyValuesPlusAll.filter((a) => {
return ["edge"].indexOf(a.safeName.toLowerCase()) !== -1;
});
if (edgeToys.length > 0) {
commands.push(
new SlashCommandBuilder()
.setName("vibrateedge")
.setDescription("Vibrate the Edge Toy (Top/Bottom)")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(edgeToys))
)
.addStringOption((option) =>
option
.setName("location")
.setRequired(true)
.setDescription("Top or Bottom [Use Vibrate for Both]")
.setChoices([
["Top", "top"],
["Bottom", "bottom"]
])
)
.addIntegerOption((option) =>
option
.setName("power")
.setRequired(false)
.setDescription("Select the power of the Toy")
.setChoices(fixObject(toy_power))
),
);
}
// =====================================================
// Rotate, Nora Specific
var noraToys = toyValuesPlusAll.filter((a) => {
return ["nora"].indexOf(a.safeName.toLowerCase()) !== -1;
});
if (noraToys.length > 0) {
commands.push(
new SlashCommandBuilder()
.setName("rotateleft")
.setDescription("Rotate Left")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(noraToys))
)
.addIntegerOption((option) =>
option
.setName("power")
.setRequired(false)
.setDescription("Select the power of the Toy")
.setChoices(fixObject(toy_power))
),
new SlashCommandBuilder()
.setName("rotateright")
.setDescription("Rotate Right")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(noraToys))
)
.addIntegerOption((option) =>
option
.setName("power")
.setRequired(false)
.setDescription("Select the power of the Toy")
.setChoices(fixObject(toy_power))
),
new SlashCommandBuilder()
.setName("stoprotate")
.setDescription("Stop Rotate")
.addStringOption((option) =>
option
.setName("toy")
.setRequired(true)
.setDescription("Pick a Toy")
.setChoices(fixObject(noraToys))
)
);
}
// To do, Add Max Commands :) [It's a bit messy]
commands.map((command) => command.toJSON());
const rest = new REST({ version: "9" }).setToken(token);
rest
.put(Routes.applicationGuildCommands(clientId, guildId), { body: commands })
.then(() => console.log("Successfully registered slash commands."))
.catch((e) => {
console.error(e);
console.log("Hey, the problem you maybe having here is to do with the Bot you have added not having the correct permissions to use Slash commands. You can fix this by using the following OAuth2 URL:");
console.log("https://discord.com/oauth2/authorize?client_id="+ clientId +"&permissions=8&scope=bot%20applications.commands");
});
// rest
// .put(Routes.applicationCommands(clientId, { body: commands }))
// .then(() => console.log("Successfully registered GLOBAL slash commands."))
// .catch((e) => {
// console.log("One or more servers may have failed to correctly setup permissions for the bot.");
// console.log("https://discord.com/oauth2/authorize?client_id="+ clientId +"&permissions=8&scope=bot%20applications.commands");
// });
}