2023-01-05 23:56:56 +00:00
|
|
|
import { createLightNode } from "js-waku/lib/create_waku";
|
|
|
|
import { utils } from "js-waku";
|
|
|
|
import { waitForRemotePeer } from "js-waku/lib/wait_for_remote_peer";
|
|
|
|
import {
|
|
|
|
Fleet,
|
|
|
|
getPredefinedBootstrapNodes,
|
|
|
|
} from "js-waku/lib/predefined_bootstrap_nodes";
|
|
|
|
import { PeerDiscoveryStaticPeers } from "js-waku/lib/peer_discovery_static_list";
|
|
|
|
import { Protocols } from "js-waku";
|
|
|
|
import * as noise from "@waku/noise";
|
|
|
|
import protobuf from "protobufjs";
|
|
|
|
import QRCode from "qrcode";
|
|
|
|
|
2023-01-14 01:06:31 +00:00
|
|
|
// Protobuf
|
|
|
|
const ProtoChatMessage = new protobuf.Type("ChatMessage")
|
|
|
|
.add(new protobuf.Field("timestamp", 1, "uint64"))
|
|
|
|
.add(new protobuf.Field("nick", 2, "string"))
|
|
|
|
.add(new protobuf.Field("text", 3, "bytes"));
|
|
|
|
|
|
|
|
main();
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
const ui = initUI();
|
|
|
|
ui.waku.connecting();
|
|
|
|
|
|
|
|
// Starting the node
|
|
|
|
const node = await createLightNode({
|
|
|
|
libp2p: {
|
|
|
|
peerDiscovery: [
|
|
|
|
new PeerDiscoveryStaticPeers(getPredefinedBootstrapNodes(Fleet.Test)),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
try {
|
|
|
|
await node.start();
|
|
|
|
await waitForRemotePeer(node, [Protocols.Filter, Protocols.LightPush]);
|
|
|
|
|
|
|
|
ui.waku.connected();
|
|
|
|
|
|
|
|
const [sender, responder] = getSenderAndResponder(node);
|
|
|
|
const myStaticKey = noise.generateX25519KeyPair();
|
|
|
|
const urlPairingInfo = getPairingInfoFromURL();
|
|
|
|
|
|
|
|
const pairingObj = new noise.WakuPairing(
|
|
|
|
sender,
|
|
|
|
responder,
|
|
|
|
myStaticKey,
|
|
|
|
urlPairingInfo || new noise.ResponderParameters()
|
|
|
|
);
|
|
|
|
const pExecute = pairingObj.execute(120000); // timeout after 2m
|
|
|
|
|
|
|
|
scheduleHandshakeAuthConfirmation(pairingObj, ui);
|
|
|
|
|
|
|
|
let encoder;
|
|
|
|
let decoder;
|
|
|
|
|
|
|
|
try {
|
|
|
|
ui.handshake.waiting();
|
|
|
|
|
|
|
|
if (!urlPairingInfo) {
|
|
|
|
const pairingURL = buildPairingURLFromObj(pairingObj);
|
|
|
|
ui.shareInfo.setURL(pairingURL);
|
|
|
|
ui.shareInfo.renderQR(pairingURL);
|
2023-01-14 01:52:28 +00:00
|
|
|
ui.shareInfo.show();
|
2023-01-14 01:06:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[encoder, decoder] = await pExecute;
|
|
|
|
|
|
|
|
ui.handshake.connected();
|
|
|
|
ui.shareInfo.hide();
|
|
|
|
} catch (err) {
|
|
|
|
ui.handshake.error(err.message);
|
|
|
|
ui.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.message.display();
|
|
|
|
|
|
|
|
await node.filter.subscribe(
|
|
|
|
[decoder],
|
|
|
|
ui.message.onReceive.bind(ui.message)
|
|
|
|
);
|
|
|
|
|
|
|
|
ui.message.onSend(async (text, nick) => {
|
|
|
|
const timestamp = Math.floor(Date.now() / 1000);
|
|
|
|
const message = ProtoChatMessage.create({
|
|
|
|
nick,
|
|
|
|
timestamp,
|
|
|
|
text: utils.utf8ToBytes(text),
|
|
|
|
});
|
|
|
|
const payload = ProtoChatMessage.encode(message).finish();
|
|
|
|
|
|
|
|
await node.lightPush.push(encoder, { payload, timestamp });
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
ui.waku.error(err.message);
|
|
|
|
ui.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildPairingURLFromObj(pairingObj) {
|
|
|
|
const pInfo = pairingObj.getPairingInfo();
|
|
|
|
|
|
|
|
// Data to encode in the QR code. The qrMessageNametag too to the QR string (separated by )
|
|
|
|
const messageNameTagParam = `messageNameTag=${utils.bytesToHex(
|
|
|
|
pInfo.qrMessageNameTag
|
|
|
|
)}`;
|
|
|
|
const qrCodeParam = `qrCode=${encodeURIComponent(pInfo.qrCode)}`;
|
|
|
|
|
|
|
|
return `${window.location.href}?${messageNameTagParam}&${qrCodeParam}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPairingInfoFromURL() {
|
2023-01-12 00:14:50 +00:00
|
|
|
const urlParams = new URLSearchParams(window.location.search);
|
2023-01-05 23:56:56 +00:00
|
|
|
|
2023-01-12 00:14:50 +00:00
|
|
|
const messageNameTag = urlParams.get("messageNameTag");
|
|
|
|
const qrCodeString = urlParams.get("qrCode");
|
2023-01-05 23:56:56 +00:00
|
|
|
|
2023-01-12 00:14:50 +00:00
|
|
|
if (!(messageNameTag && qrCodeString)) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2023-01-05 23:56:56 +00:00
|
|
|
|
|
|
|
return new noise.InitiatorParameters(
|
2023-01-12 00:18:47 +00:00
|
|
|
decodeURIComponent(qrCodeString),
|
2023-01-12 00:14:50 +00:00
|
|
|
utils.hexToBytes(messageNameTag)
|
2023-01-05 23:56:56 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSenderAndResponder(node) {
|
|
|
|
const sender = {
|
|
|
|
async publish(encoder, msg) {
|
|
|
|
await node.lightPush.push(encoder, msg);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const msgQueue = new Array();
|
|
|
|
const subscriptions = new Map();
|
|
|
|
const intervals = new Map();
|
|
|
|
|
|
|
|
const responder = {
|
|
|
|
async subscribe(decoder) {
|
|
|
|
const subscription = await node.filter.subscribe(
|
|
|
|
[decoder],
|
|
|
|
(wakuMessage) => {
|
|
|
|
msgQueue.push(wakuMessage);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
subscriptions.set(decoder.contentTopic, subscription);
|
|
|
|
},
|
|
|
|
async nextMessage(contentTopic) {
|
|
|
|
if (msgQueue.length != 0) {
|
|
|
|
const oldestMsg = msgQueue.shift();
|
|
|
|
if (oldestMsg.contentTopic === contentTopic) {
|
|
|
|
return oldestMsg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
const interval = setInterval(() => {
|
|
|
|
if (msgQueue.length != 0) {
|
|
|
|
clearInterval(interval);
|
|
|
|
const oldestMsg = msgQueue.shift();
|
|
|
|
if (oldestMsg.contentTopic === contentTopic) {
|
|
|
|
resolve(oldestMsg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 100);
|
|
|
|
intervals.set(contentTopic, interval);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
async stop(contentTopic) {
|
|
|
|
if (intervals.has(contentTopic)) {
|
|
|
|
clearInterval(intervals.get(contentTopic));
|
|
|
|
intervals.delete(contentTopic);
|
|
|
|
}
|
|
|
|
if (subscriptions.has(contentTopic)) {
|
|
|
|
await subscriptions.get(contentTopic)();
|
|
|
|
subscriptions.delete(contentTopic);
|
|
|
|
} else {
|
|
|
|
console.log("Subscriptipon doesnt exist");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return [sender, responder];
|
|
|
|
}
|
|
|
|
|
2023-01-14 01:06:31 +00:00
|
|
|
async function scheduleHandshakeAuthConfirmation(pairingObj, ui) {
|
2023-01-05 23:56:56 +00:00
|
|
|
const authCode = await pairingObj.getAuthCode();
|
2023-01-14 01:06:31 +00:00
|
|
|
ui.handshake.connecting();
|
2023-01-05 23:56:56 +00:00
|
|
|
pairingObj.validateAuthCode(confirm("Confirm that authcode is: " + authCode));
|
|
|
|
}
|
|
|
|
|
2023-01-14 01:06:31 +00:00
|
|
|
function initUI() {
|
|
|
|
const messagesList = document.getElementById("messages");
|
|
|
|
const nicknameInput = document.getElementById("nick-input");
|
|
|
|
const textInput = document.getElementById("text-input");
|
|
|
|
const sendButton = document.getElementById("send-btn");
|
|
|
|
const chatArea = document.getElementById("chat-area");
|
|
|
|
const wakuStatusSpan = document.getElementById("waku-status");
|
|
|
|
const handshakeStatusSpan = document.getElementById("handshake-status");
|
|
|
|
|
|
|
|
const qrCanvas = document.getElementById("qr-canvas");
|
|
|
|
const qrUrlContainer = document.getElementById("qr-url-container");
|
|
|
|
const qrUrl = document.getElementById("qr-url");
|
|
|
|
const copyURLButton = document.getElementById("copy-url");
|
|
|
|
const openTabButton = document.getElementById("open-tab");
|
|
|
|
|
|
|
|
copyURLButton.onclick = () => {
|
|
|
|
const copyText = document.getElementById("qr-url"); // need to get it each time otherwise copying does not work
|
|
|
|
copyText.select();
|
|
|
|
copyText.setSelectionRange(0, 99999);
|
|
|
|
navigator.clipboard.writeText(copyText.value);
|
|
|
|
};
|
2023-01-05 23:56:56 +00:00
|
|
|
|
2023-01-14 01:06:31 +00:00
|
|
|
openTabButton.onclick = () => {
|
|
|
|
window.open(qrUrl.value, "_blank");
|
|
|
|
};
|
2023-01-05 23:56:56 +00:00
|
|
|
|
2023-01-14 01:06:31 +00:00
|
|
|
const disableChatUIStateIfNeeded = () => {
|
|
|
|
const readyToSend = nicknameInput.value !== "";
|
|
|
|
textInput.disabled = !readyToSend;
|
|
|
|
sendButton.disabled = !readyToSend;
|
|
|
|
};
|
|
|
|
nicknameInput.onchange = disableChatUIStateIfNeeded;
|
|
|
|
nicknameInput.onblur = disableChatUIStateIfNeeded;
|
|
|
|
|
|
|
|
return {
|
|
|
|
shareInfo: {
|
|
|
|
setURL(url) {
|
|
|
|
qrUrl.value = url;
|
|
|
|
},
|
|
|
|
hide() {
|
2023-01-14 01:52:28 +00:00
|
|
|
qrUrlContainer.style.display = "none";
|
|
|
|
},
|
|
|
|
show() {
|
|
|
|
qrUrlContainer.style.display = "flex";
|
2023-01-14 01:06:31 +00:00
|
|
|
},
|
|
|
|
renderQR(url) {
|
|
|
|
QRCode.toCanvas(qrCanvas, url, (err) => {
|
|
|
|
if (err) {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2023-01-05 23:56:56 +00:00
|
|
|
},
|
2023-01-14 01:06:31 +00:00
|
|
|
waku: {
|
|
|
|
_val(msg) {
|
|
|
|
wakuStatusSpan.innerText = msg;
|
|
|
|
},
|
|
|
|
_class(name) {
|
|
|
|
wakuStatusSpan.className = name;
|
|
|
|
},
|
|
|
|
connecting() {
|
|
|
|
this._val("connecting...");
|
|
|
|
this._class("progress");
|
|
|
|
},
|
|
|
|
connected() {
|
|
|
|
this._val("connected");
|
|
|
|
this._class("success");
|
|
|
|
},
|
|
|
|
error(msg) {
|
|
|
|
this._val(msg);
|
|
|
|
this._class("error");
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handshake: {
|
|
|
|
_val(val) {
|
|
|
|
handshakeStatusSpan.innerText = val;
|
|
|
|
},
|
|
|
|
_class(name) {
|
|
|
|
handshakeStatusSpan.className = name;
|
|
|
|
},
|
|
|
|
error(msg) {
|
|
|
|
this._val(msg);
|
|
|
|
this._class("error");
|
|
|
|
},
|
|
|
|
waiting() {
|
|
|
|
this._val("waiting for handshake...");
|
|
|
|
this._class("progress");
|
|
|
|
},
|
|
|
|
generating() {
|
|
|
|
this._val("generating QR code...");
|
|
|
|
this._class("progress");
|
|
|
|
},
|
|
|
|
connecting() {
|
|
|
|
this._val("executing handshake...");
|
|
|
|
this._class("progress");
|
|
|
|
},
|
|
|
|
connected() {
|
|
|
|
this._val("handshake completed!");
|
|
|
|
this._class("success");
|
|
|
|
},
|
|
|
|
},
|
|
|
|
message: {
|
|
|
|
_render({ time, text, nick }) {
|
|
|
|
messagesList.innerHTML += `
|
|
|
|
<li>
|
|
|
|
(${nick})
|
|
|
|
<strong>${text}</strong>
|
|
|
|
<i>[${new Date(time).toISOString()}]</i>
|
|
|
|
</li>
|
|
|
|
`;
|
|
|
|
},
|
|
|
|
_status(text, className) {
|
2023-01-14 01:52:28 +00:00
|
|
|
sendButton.className = className;
|
2023-01-14 01:06:31 +00:00
|
|
|
},
|
|
|
|
onReceive({ payload }) {
|
|
|
|
const { timestamp, nick, text } = ProtoChatMessage.decode(payload);
|
|
|
|
|
|
|
|
this._render({
|
|
|
|
nick,
|
|
|
|
time: timestamp * 1000,
|
|
|
|
text: utils.bytesToUtf8(text),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onSend(cb) {
|
|
|
|
sendButton.addEventListener("click", async () => {
|
|
|
|
try {
|
|
|
|
this._status("sending...", "progress");
|
|
|
|
await cb(textInput.value, nicknameInput.value);
|
|
|
|
this._status("sent", "success");
|
|
|
|
|
|
|
|
this._render({
|
|
|
|
time: Date.now(), // a bit different from what receiver will see but for the matter of example is good enough
|
|
|
|
text: textInput.value,
|
|
|
|
nick: nicknameInput.value,
|
|
|
|
});
|
|
|
|
textInput.value = "";
|
|
|
|
} catch (e) {
|
|
|
|
this._status(`error: ${e.message}`, "error");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
display() {
|
|
|
|
chatArea.style.display = "block";
|
|
|
|
this._status("waiting for input", "progress");
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hide() {
|
|
|
|
this.shareInfo.hide();
|
2023-01-14 01:52:28 +00:00
|
|
|
chatArea.style.display = "none";
|
2023-01-14 01:06:31 +00:00
|
|
|
},
|
|
|
|
};
|
2023-01-05 23:56:56 +00:00
|
|
|
}
|