mirror of
https://github.com/ad1217/PrinterStatus
synced 2024-11-11 02:55:09 -05:00
132 lines
3.4 KiB
TypeScript
132 lines
3.4 KiB
TypeScript
|
import * as fs from 'fs';
|
||
|
import * as url from 'url';
|
||
|
|
||
|
import fetch from 'node-fetch';
|
||
|
import * as messages from './messages';
|
||
|
import * as octoprint from './octoprint';
|
||
|
import * as WebSocket from 'ws';
|
||
|
import * as yaml from 'js-yaml';
|
||
|
|
||
|
// Load config
|
||
|
const config: {
|
||
|
printers: { address: string; apikey: string }[];
|
||
|
} = yaml.safeLoad(fs.readFileSync('config.yaml', 'utf8'));
|
||
|
|
||
|
const proxyServer = new WebSocket.Server({ host: '127.0.0.1', port: 4321 });
|
||
|
let printerStatuses: PrinterStatus[] = [];
|
||
|
|
||
|
function broadcast(data: WebSocket.Data) {
|
||
|
proxyServer.clients.forEach((client: WebSocket) => {
|
||
|
if (client.readyState === WebSocket.OPEN) {
|
||
|
client.send(data);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function broadcastPayload(payload: messages.ExtendedMessage) {
|
||
|
broadcast(JSON.stringify(payload));
|
||
|
}
|
||
|
|
||
|
class PrinterStatus {
|
||
|
wss: WebSocket.Server;
|
||
|
address: string;
|
||
|
apikey: string;
|
||
|
|
||
|
webcamURL?: string;
|
||
|
name?: string;
|
||
|
|
||
|
websocket?: WebSocket;
|
||
|
lastStatus?: messages.ExtendedMessage;
|
||
|
|
||
|
constructor(wss: WebSocket.Server, address: string, apikey: string) {
|
||
|
this.wss = wss;
|
||
|
this.address = address;
|
||
|
this.apikey = apikey;
|
||
|
|
||
|
try {
|
||
|
this.init(); // async init
|
||
|
} catch (e) {
|
||
|
throw 'Failed to Init' + e;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async init() {
|
||
|
// TODO: error handling (try/catch)
|
||
|
const settings = await this.api_get('settings');
|
||
|
this.webcamURL = settings.webcam.streamUrl;
|
||
|
this.name = settings.appearance.name;
|
||
|
|
||
|
// do passive login to get a session key from the API key
|
||
|
const login: octoprint.LoginResponse = await this.api_post('login', {
|
||
|
passive: 'true',
|
||
|
});
|
||
|
|
||
|
this.websocket = new WebSocket(
|
||
|
url.resolve(this.address, '/sockjs/websocket')
|
||
|
);
|
||
|
this.websocket
|
||
|
.on('open', () => {
|
||
|
this.websocket!.send(
|
||
|
JSON.stringify({ auth: login.name + ':' + login.session })
|
||
|
);
|
||
|
})
|
||
|
.on('message', (data: WebSocket.Data) => {
|
||
|
const event: octoprint.Message = JSON.parse(data as string);
|
||
|
console.log(event);
|
||
|
|
||
|
let ext_event: messages.ExtendedMessage = {
|
||
|
...event,
|
||
|
printer: this.name!,
|
||
|
};
|
||
|
broadcastPayload(ext_event);
|
||
|
|
||
|
if ('current' in event || 'history' in event) {
|
||
|
this.lastStatus = ext_event;
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async api_get(endpoint: string): Promise<any> {
|
||
|
const r = await fetch(url.resolve(this.address, '/api/' + endpoint), {
|
||
|
headers: { 'X-Api-Key': this.apikey },
|
||
|
});
|
||
|
return await r.json();
|
||
|
}
|
||
|
|
||
|
async api_post(endpoint: string, data: any): Promise<any> {
|
||
|
const r = await fetch(url.resolve(this.address, '/api/' + endpoint), {
|
||
|
headers: {
|
||
|
'X-Api-Key': this.apikey,
|
||
|
Accept: 'application/json',
|
||
|
'Content-Type': 'application/json',
|
||
|
},
|
||
|
method: 'POST',
|
||
|
body: JSON.stringify(data),
|
||
|
});
|
||
|
return await r.json();
|
||
|
}
|
||
|
|
||
|
send_init(ws: WebSocket) {
|
||
|
let payload: messages.ExtendedMessage;
|
||
|
console.log(this.lastStatus);
|
||
|
if (this.lastStatus) {
|
||
|
payload = this.lastStatus;
|
||
|
} else {
|
||
|
payload = { init: null, printer: this.name! };
|
||
|
}
|
||
|
ws.send(JSON.stringify(payload));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function init_printers() {
|
||
|
printerStatuses = config.printers.map(
|
||
|
printer => new PrinterStatus(proxyServer, printer.address, printer.apikey)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
init_printers();
|
||
|
|
||
|
proxyServer.on('connection', (ws: WebSocket) => {
|
||
|
printerStatuses.forEach((ps: PrinterStatus) => ps.send_init(ws));
|
||
|
});
|