163 lines
4.0 KiB
TypeScript
163 lines
4.0 KiB
TypeScript
import { Hyperdeck, Commands } from 'hyperdeck-connection';
|
|
import WebSocket from 'ws';
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
|
|
interface WrappedHyperdeck {
|
|
ip: String,
|
|
port: number,
|
|
hyperdeck: Hyperdeck
|
|
}
|
|
|
|
const hyperdecks: Map<string, WrappedHyperdeck> = new Map()
|
|
|
|
enum WebSocketMessageType {
|
|
AddHyperdeck = "add_hyperdeck",
|
|
RemoveHyperdeck = "remove_hyperdeck"
|
|
}
|
|
|
|
type WebSocketMessage = {
|
|
type: WebSocketMessageType.AddHyperdeck,
|
|
id: string,
|
|
ip: string,
|
|
port: number
|
|
} | {
|
|
type: WebSocketMessageType.RemoveHyperdeck,
|
|
id: string
|
|
}
|
|
|
|
const wss = new WebSocket.Server({ port: 7867 });
|
|
|
|
const connected_clients: Map<string, WebSocket> = new Map();
|
|
|
|
wss.on('connection', (ws) => {
|
|
const clientId = uuidv4();
|
|
ws.on('message', (data) => {
|
|
try {
|
|
const message = JSON.parse(data.toString()) as Partial<WebSocketMessage>;
|
|
handle_message(message)
|
|
} catch (_err) {
|
|
return;
|
|
}
|
|
});
|
|
ws.on('close', () => {
|
|
connected_clients.delete(clientId)
|
|
})
|
|
|
|
ws.send(JSON.stringify({
|
|
event: "log",
|
|
message: "Hello"
|
|
}));
|
|
|
|
connected_clients.set(clientId, ws);
|
|
});
|
|
|
|
function exhaustiveMatch(_never: never) {
|
|
return;
|
|
}
|
|
|
|
function handle_message(message: Partial<WebSocketMessage>) {
|
|
console.log(JSON.stringify(message));
|
|
if (message.type === undefined) return;
|
|
|
|
switch (message.type) {
|
|
case WebSocketMessageType.AddHyperdeck:
|
|
if (message.id === undefined) return;
|
|
if (message.ip === undefined) return;
|
|
if (message.port === undefined) return;
|
|
if (isNaN(message.port)) return;
|
|
if (message.port <= 0) return;
|
|
|
|
console.log("Adding hyperdeck");
|
|
|
|
const newHyperdeck = new Hyperdeck()
|
|
|
|
hyperdecks.set(message.id, {
|
|
ip: message.ip,
|
|
port: message.port,
|
|
hyperdeck: newHyperdeck
|
|
});
|
|
|
|
newHyperdeck.on('connected', (_info) => {
|
|
notifyClients({
|
|
event: "hyperdeck_connected",
|
|
id: message.id
|
|
})
|
|
|
|
setInterval(() => {
|
|
newHyperdeck.sendCommand(new Commands.TransportInfoCommand()).then((transportInfo) => {
|
|
notifyClients({
|
|
event: "record_state",
|
|
hyperdeckId: message.id,
|
|
state: transportInfo.status,
|
|
})
|
|
})
|
|
})
|
|
|
|
newHyperdeck.sendCommand(new Commands.DeviceInfoCommand()).then((info) => {
|
|
for (let index = 0; index < info.slots; index++) {
|
|
setInterval(() => {
|
|
newHyperdeck.sendCommand(new Commands.SlotInfoCommand(index)).then((slot) => {
|
|
notifyClients({
|
|
event: "record_time_remaining",
|
|
hyperdeckId: message.id,
|
|
slotId: slot.slotId,
|
|
remaining: slot.recordingTime
|
|
})
|
|
})
|
|
})
|
|
}
|
|
})
|
|
})
|
|
|
|
newHyperdeck.on('notify.slot', function (slot) {
|
|
notifyClients({
|
|
event: "record_time_remaining",
|
|
hyperdeckId: message.id,
|
|
slotId: slot.slotId,
|
|
remaining: slot.recordingTime
|
|
})
|
|
})
|
|
newHyperdeck.on('notify.transport', function (state) {
|
|
notifyClients({
|
|
event: "record_state",
|
|
hyperdeckId: message.id,
|
|
state: state.status
|
|
})
|
|
})
|
|
newHyperdeck.on('error', (err) => {
|
|
console.log('Hyperdeck error', JSON.stringify(err))
|
|
})
|
|
|
|
newHyperdeck.on('disconnected', () => {
|
|
notifyClients({
|
|
event: "hyperdeck_disconnected",
|
|
id: message.id
|
|
})
|
|
})
|
|
|
|
newHyperdeck.connect(message.ip, message.port)
|
|
|
|
break;
|
|
case WebSocketMessageType.RemoveHyperdeck:
|
|
if (message.id === undefined) return;
|
|
|
|
console.log("Removing hyperdeck");
|
|
|
|
let hyperdeck = hyperdecks.get(message.id)
|
|
if (hyperdeck === undefined) return;
|
|
|
|
hyperdeck.hyperdeck.disconnect()
|
|
hyperdecks.delete(message.id)
|
|
|
|
break;
|
|
default:
|
|
exhaustiveMatch(message)
|
|
}
|
|
}
|
|
|
|
function notifyClients(message: object) {
|
|
connected_clients.forEach((client) => {
|
|
client.send(JSON.stringify(message))
|
|
})
|
|
}
|