LinkUp-P2P-Chat/app.js

304 lines
8.9 KiB
JavaScript
Raw Normal View History

2024-06-03 19:23:14 -04:00
import Hyperswarm from 'hyperswarm';
import crypto from 'hypercore-crypto';
import b4a from 'b4a';
import ServeDrive from 'serve-drive';
import Localdrive from 'localdrive';
2024-06-03 20:04:15 -04:00
import fs from 'fs';
2024-06-03 22:33:39 -04:00
import Hyperdrive from 'hyperdrive';
import Corestore from 'corestore';
2024-06-03 22:33:39 -04:00
const store = new Corestore('./storage');
const drive = new Hyperdrive(store);
await drive.ready();
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
let swarm;
let userName = 'Anonymous';
let userAvatar = '';
let registeredUsers = JSON.parse(localStorage.getItem('registeredUsers')) || {};
let peerCount = 0;
let currentRoom = null;
async function initialize() {
swarm = new Hyperswarm();
const servePort = 1337;
const serve = new ServeDrive({ port: servePort, get: ({ key, filename, version }) => drive });
await serve.ready();
console.log('Listening on http://localhost:' + serve.address().port);
const registerForm = document.querySelector('#register-form');
const selectAvatarButton = document.querySelector('#select-avatar');
const createChatRoomButton = document.querySelector('#create-chat-room');
const joinChatRoomButton = document.querySelector('#join-chat-room');
const messageForm = document.querySelector('#message-form');
const toggleSetupBtn = document.querySelector('#toggle-setup-btn');
const removeRoomBtn = document.querySelector('#remove-room-btn');
if (registerForm) {
registerForm.addEventListener('submit', registerUser);
}
if (selectAvatarButton) {
selectAvatarButton.addEventListener('click', () => {
document.querySelector('#avatar-file').click();
});
}
if (createChatRoomButton) {
createChatRoomButton.addEventListener('click', createChatRoom);
}
if (joinChatRoomButton) {
joinChatRoomButton.addEventListener('click', joinChatRoom);
}
if (messageForm) {
messageForm.addEventListener('submit', sendMessage);
}
if (toggleSetupBtn) {
toggleSetupBtn.addEventListener('click', toggleSetupView);
}
if (removeRoomBtn) {
removeRoomBtn.addEventListener('click', leaveRoom);
2024-06-03 19:23:14 -04:00
}
2024-06-03 22:33:39 -04:00
2024-06-08 15:16:28 -04:00
const registerDiv = document.querySelector('#register');
if (registerDiv) {
registerDiv.classList.remove('hidden');
}
2024-06-03 22:33:39 -04:00
2024-06-08 15:16:28 -04:00
swarm.on('connection', async (connection, info) => {
peerCount++;
updatePeerCount();
2024-06-08 15:40:58 -04:00
// Send the current user's icon to the new peer
2024-06-08 15:16:28 -04:00
const iconBuffer = await drive.get(`/icons/${userName}.png`);
if (iconBuffer) {
const iconMessage = JSON.stringify({
type: 'icon',
username: userName,
avatar: iconBuffer.toString('base64'),
});
connection.write(iconMessage);
2024-06-08 15:06:24 -04:00
}
2024-06-08 15:16:28 -04:00
connection.on('data', async (data) => {
const messageObj = JSON.parse(data.toString());
if (messageObj.type === 'icon') {
const username = messageObj.username;
const avatarBuffer = Buffer.from(messageObj.avatar, 'base64');
await drive.put(`/icons/${username}.png`, avatarBuffer);
updateIcon(username, avatarBuffer);
} else {
onMessageAdded(messageObj.name, messageObj.message, messageObj.avatar);
2024-06-03 19:53:10 -04:00
}
2024-06-03 19:43:33 -04:00
});
2024-06-03 19:42:30 -04:00
2024-06-08 15:16:28 -04:00
connection.on('close', () => {
peerCount--;
updatePeerCount();
2024-06-08 15:06:24 -04:00
});
2024-06-08 15:16:28 -04:00
});
2024-06-03 19:42:30 -04:00
2024-06-08 15:16:28 -04:00
swarm.on('error', (err) => {
console.error('Swarm error:', err);
});
2024-06-03 19:42:30 -04:00
2024-06-08 15:16:28 -04:00
swarm.on('close', () => {
console.log('Swarm closed');
});
}
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
function registerUser(e) {
e.preventDefault();
const regUsername = document.querySelector('#reg-username').value;
2024-06-08 15:06:24 -04:00
2024-06-08 15:16:28 -04:00
if (registeredUsers[regUsername]) {
alert('Username already taken. Please choose another.');
return;
2024-06-03 19:23:14 -04:00
}
2024-06-08 15:16:28 -04:00
const avatarFile = document.querySelector('#avatar-file').files[0];
if (avatarFile) {
const reader = new FileReader();
reader.onload = (event) => {
const buffer = new Uint8Array(event.target.result);
drive.put(`/icons/${regUsername}.png`, buffer);
2024-06-08 15:48:56 -04:00
userAvatar = `http://localhost:1337/icons/${regUsername}.png`; // Set the correct URL
2024-06-08 15:16:28 -04:00
registeredUsers[regUsername] = userAvatar;
localStorage.setItem('registeredUsers', JSON.stringify(registeredUsers));
continueRegistration(regUsername);
};
reader.readAsArrayBuffer(avatarFile);
} else {
continueRegistration(regUsername);
2024-06-03 19:23:14 -04:00
}
2024-06-08 15:16:28 -04:00
}
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
async function continueRegistration(regUsername) {
const loadingDiv = document.querySelector('#loading');
const setupDiv = document.querySelector('#setup');
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
if (!regUsername) {
alert('Please enter a username.');
return;
2024-06-03 19:23:14 -04:00
}
2024-06-08 15:16:28 -04:00
userName = regUsername;
setupDiv.classList.remove('hidden');
document.querySelector('#register').classList.add('hidden');
loadingDiv.classList.add('hidden');
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
const randomTopic = crypto.randomBytes(32);
document.querySelector('#chat-room-topic').innerText = truncateHash(b4a.toString(randomTopic, 'hex'));
}
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
async function createChatRoom() {
const topicBuffer = crypto.randomBytes(32);
const topic = b4a.toString(topicBuffer, 'hex');
addRoomToList(topic);
joinSwarm(topicBuffer);
}
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
async function joinChatRoom(e) {
e.preventDefault();
const topicStr = document.querySelector('#join-chat-room-topic').value;
const topicBuffer = b4a.from(topicStr, 'hex');
addRoomToList(topicStr);
joinSwarm(topicBuffer);
}
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
async function joinSwarm(topicBuffer) {
if (currentRoom) {
currentRoom.destroy();
}
2024-06-08 15:16:28 -04:00
document.querySelector('#setup').classList.add('hidden');
document.querySelector('#loading').classList.remove('hidden');
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
const discovery = swarm.join(topicBuffer, { client: true, server: true });
await discovery.flushed();
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
const topic = b4a.toString(topicBuffer, 'hex');
document.querySelector('#chat-room-topic').innerText = topic; // Set full topic here
document.querySelector('#loading').classList.add('hidden');
document.querySelector('#chat').classList.remove('hidden');
2024-06-08 15:16:28 -04:00
currentRoom = discovery;
clearMessages();
}
2024-06-08 15:16:28 -04:00
function addRoomToList(topic) {
const roomList = document.querySelector('#room-list');
const roomItem = document.createElement('li');
roomItem.textContent = truncateHash(topic);
roomItem.dataset.topic = topic;
roomItem.addEventListener('click', () => switchRoom(topic));
roomList.appendChild(roomItem);
}
2024-06-08 15:16:28 -04:00
function switchRoom(topic) {
const topicBuffer = b4a.from(topic, 'hex');
joinSwarm(topicBuffer);
}
2024-06-08 15:16:28 -04:00
function leaveRoom() {
if (currentRoom) {
const topic = b4a.toString(currentRoom.topic, 'hex');
const roomItem = document.querySelector(`li[data-topic="${topic}"]`);
if (roomItem) {
roomItem.remove();
}
2024-06-08 15:16:28 -04:00
currentRoom.destroy();
currentRoom = null;
}
2024-06-08 15:16:28 -04:00
document.querySelector('#chat').classList.add('hidden');
document.querySelector('#setup').classList.remove('hidden');
}
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
function sendMessage(e) {
e.preventDefault();
const message = document.querySelector('#message').value;
document.querySelector('#message').value = '';
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
onMessageAdded(userName, message, userAvatar);
const messageObj = JSON.stringify({
type: 'message',
name: userName,
message,
avatar: userAvatar,
timestamp: Date.now(),
});
const peers = [...swarm.connections];
for (const peer of peers) {
peer.write(messageObj);
2024-06-03 19:23:14 -04:00
}
2024-06-08 15:16:28 -04:00
}
2024-06-03 19:23:14 -04:00
2024-06-08 15:22:50 -04:00
function updatePeerCount() {
const peerCountElement = document.querySelector('#peer-count');
if (peerCountElement) {
peerCountElement.textContent = `Connected Peers: ${peerCount}`;
}
}
2024-06-08 15:16:28 -04:00
function scrollToBottom() {
var container = document.getElementById("messages-container");
container.scrollTop = container.scrollHeight;
}
2024-06-04 01:00:24 -04:00
2024-06-08 15:16:28 -04:00
function onMessageAdded(from, message, avatar) {
const $div = document.createElement('div');
$div.classList.add('message');
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
const $img = document.createElement('img');
2024-06-08 15:32:21 -04:00
$img.src = avatar || 'https://via.placeholder.com/40'; // Default to a placeholder image if avatar URL is not provided
2024-06-08 15:16:28 -04:00
$div.appendChild($img);
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
const $content = document.createElement('div');
$content.classList.add('message-content');
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
const $header = document.createElement('div');
$header.classList.add('message-header');
$header.textContent = from;
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
const $text = document.createElement('div');
$text.classList.add('message-text');
2024-06-04 00:03:14 -04:00
2024-06-08 15:16:28 -04:00
const md = window.markdownit();
const markdownContent = md.render(message);
$text.innerHTML = markdownContent;
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
$content.appendChild($header);
$content.appendChild($text);
$div.appendChild($content);
2024-06-03 19:23:14 -04:00
2024-06-08 15:16:28 -04:00
document.querySelector('#messages').appendChild($div);
scrollToBottom();
}
2024-06-03 22:33:39 -04:00
2024-06-08 15:16:28 -04:00
function truncateHash(hash) {
return `${hash.slice(0, 6)}...${hash.slice(-6)}`;
}
2024-06-08 15:16:28 -04:00
async function updateIcon(username, avatarBuffer) {
2024-06-08 15:40:58 -04:00
// Update the icon in the local HTML if necessary
// This can be adjusted as per your needs
2024-06-08 15:16:28 -04:00
const userIcon = document.querySelector(`img[src*="${username}.png"]`);
if (userIcon) {
2024-06-08 15:48:56 -04:00
userIcon.src = `http://localhost:1337/icons/${username}.png`; // Ensure the URL is correct
2024-06-04 00:57:28 -04:00
}
2024-06-08 15:16:28 -04:00
}
2024-06-04 00:57:28 -04:00
2024-06-08 15:16:28 -04:00
function clearMessages() {
const messagesContainer = document.querySelector('#messages');
while (messagesContainer.firstChild) {
messagesContainer.removeChild(messagesContainer.firstChild);
}
2024-06-08 15:16:28 -04:00
}
2024-06-08 15:16:28 -04:00
function toggleSetupView() {
const setupDiv = document.querySelector('#setup');
setupDiv.classList.toggle('hidden');
}
2024-06-08 15:19:39 -04:00
initialize();