-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
executable file
·93 lines (79 loc) · 2.42 KB
/
server.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
const { Client } = require("tplink-smarthome-api");
const express = require("express");
const app = express();
const multer = require("multer");
const upload = multer({ dest: "/tmp/" });
const smartHome = new Client();
const settings = require("./settings.js");
const clientList = {};
smartHome.startDiscovery().on("device-new", (device) => {
device.getSysInfo().then((data) => (clientList[data.alias] = device));
});
function dimLights(brightness) {
try {
if (clientList[settings.DEVICE_NAME]._sysInfo.relay_state === 1) {
clientList[settings.DEVICE_NAME].send({
"smartlife.iot.dimmer": {
set_dimmer_transition: {
brightness: brightness,
mode: settings.DIM_MODE,
duration: settings.DURATION,
},
},
});
}
} catch (e) {
console.log(e);
}
}
function powerOn() {
console.log("Powering back on switch");
clientList[settings.DEVICE_NAME].send({
"smartlife.iot.dimmer": {
set_switch_state: { state: 1 },
},
});
}
function hasErrors(data) {
try {
const isCorrectPlayer =
(settings.PLAYER_UUID.length > 0 && data.Player.uuid == settings.PLAYER_UUID) ||
settings.PLAYER_UUID.length == 0;
if (!clientList[settings.DEVICE_NAME]) {
console.log(`${settings.DEVICE_NAME} not found!`);
return true;
}
if (!isCorrectPlayer || !data.Player.local) return true;
if (clientList[settings.DEVICE_NAME]._sysInfo.relay_state === 0 && brightness !== 0) powerOn();
return false;
} catch (e) {
console.log(e);
return true;
}
}
function handleRequest(req) {
try {
const data = JSON.parse(req.body?.payload);
if (!hasErrors(data)) {
const event = {
"media.play": { dim: settings.DIM, alias: "Played" },
"media.resume": { dim: settings.DIM, alias: "Resumed" },
"media.pause": { dim: settings.BRIGHTEN, alias: "Paused" },
"media.stop": { dim: settings.BRIGHTEN, alias: "Stopped" },
};
dimLights(event[data.event].dim);
console.log(
`Media ${event[data.event].alias}\nMedia Title: ${data.Metadata.title}\nPlayer UUID: ${
data.Player.uuid
}\nSettings lights to ${event[data.event].dim}%\n`
);
}
} catch (e) {
console.log(e);
}
}
app.post("/plex", upload.single("thumb"), (req, res) => {
handleRequest(req);
res.sendStatus(200);
});
app.listen(44010, () => console.log("Listening for Plex events"));