trilium/src/services/messaging.js

92 lines
2.5 KiB
JavaScript
Raw Normal View History

const WebSocket = require('ws');
const utils = require('./utils');
const log = require('./log');
const sql = require('./sql');
let webSocketServer;
function init(httpServer, sessionParser) {
webSocketServer = new WebSocket.Server({
verifyClient: (info, done) => {
sessionParser(info.req, {}, () => {
const allowed = utils.isElectron() || info.req.session.loggedIn;
if (!allowed) {
log.error("WebSocket connection not allowed because session is neither electron nor logged in.");
}
done(allowed)
});
},
server: httpServer
});
2017-12-02 11:28:22 +08:00
webSocketServer.on('connection', (ws, req) => {
console.log("websocket client connected");
2017-12-02 11:28:22 +08:00
ws.on('message', messageJson => {
const message = JSON.parse(messageJson);
if (message.type === 'log-error') {
log.error('JS Error: ' + message.error);
}
else if (message.type === 'ping') {
sendPing(ws, message.lastSyncId);
}
2017-12-02 11:28:22 +08:00
else {
log.error('Unrecognized message: ');
log.error(message);
}
});
});
}
async function sendMessage(client, message) {
const jsonStr = JSON.stringify(message);
if (client.readyState === WebSocket.OPEN) {
client.send(jsonStr);
}
}
async function sendMessageToAllClients(message) {
const jsonStr = JSON.stringify(message);
2019-01-03 05:36:06 +08:00
if (webSocketServer) {
log.info("Sending message to all clients: " + jsonStr);
2018-01-02 08:41:22 +08:00
2019-01-03 05:36:06 +08:00
webSocketServer.clients.forEach(function each(client) {
if (client.readyState === WebSocket.OPEN) {
client.send(jsonStr);
}
});
}
}
async function sendPing(client, lastSentSyncId) {
const syncData = await sql.getRows("SELECT * FROM sync WHERE id > ?", [lastSentSyncId]);
for (const sync of syncData) {
if (sync.entityName === 'attributes') {
sync.noteId = await sql.getValue(`SELECT noteId FROM attributes WHERE attributeId = ?`, [sync.entityId]);
}
}
const stats = require('./sync').stats;
await sendMessage(client, {
type: 'sync',
data: syncData,
outstandingSyncs: stats.outstandingPushes + stats.outstandingPulls
});
}
async function refreshTree() {
await sendMessageToAllClients({ type: 'refresh-tree' });
}
module.exports = {
init,
sendMessageToAllClients,
2019-02-11 02:36:03 +08:00
refreshTree
};