Compare commits

..

14 Commits

Author SHA1 Message Date
MrMasrozYTLIVE
24101e5611 Trying to make multiple rooms support. This is gonna be a bit of a hell lol. 2024-06-09 22:55:32 +03:00
MrMasrozYTLIVE
9f5d5b7dba Merge branch 'main' of https://git.ssh.surf/snxraven/LinkUp-P2P-Chat 2024-06-09 21:01:00 +03:00
Raven Scott
f269781226 revert too tired 2024-06-09 07:00:42 -04:00
Raven Scott
5ff2460d23 add debug, last try for now 2024-06-09 06:44:26 -04:00
Raven Scott
d5ea2abb7a add debug 2024-06-09 06:39:15 -04:00
Raven Scott
3835149c92 add debug 2024-06-09 06:35:45 -04:00
Raven Scott
206d095bcf attempts for file attachments again 2024-06-09 06:25:30 -04:00
Raven Scott
0010feed24 attempts for file attachments again 2024-06-09 06:13:58 -04:00
Raven Scott
b07579cdc9 another shot 2024-06-09 06:10:42 -04:00
Raven Scott
f6d9991c71 attempts for file attachments again 2024-06-09 06:06:08 -04:00
Raven Scott
3042974e55 repair file sharing hopefully 2024-06-09 05:40:37 -04:00
Raven Scott
b46ca2b2df repair icons for report peers 2024-06-09 05:35:37 -04:00
Raven Scott
55d00260fa fix user icons between peers 2024-06-09 05:09:39 -04:00
1c07819d91 Merge pull request 'Fixed rooms not being deleted from the json file' (#4) from MiTask/LinkUp-P2P-Chat:main into main
Reviewed-on: snxraven/LinkUp-P2P-Chat#4

#killinit. - Coding and vibin like it should be!
2024-06-09 08:19:59 +00:00
5 changed files with 10 additions and 7 deletions

6
app.js
View File

@ -386,7 +386,9 @@ function onMessageAdded(from, message, avatar) {
$div.classList.add('message');
const $img = document.createElement('img');
$img.src = avatar || 'https://via.placeholder.com/40'; // Default to a placeholder image if avatar URL is not provided
$img.src = updatePortInUrl(avatar) || 'https://via.placeholder.com/40'; // Default to a placeholder image if avatar URL is not provided
console.log(updatePortInUrl(avatar))
$img.classList.add('avatar');
$div.appendChild($img);
@ -454,4 +456,4 @@ function updatePortInUrl(url) {
return urlObject.toString();
}
initialize();
initialize();

View File

@ -4,6 +4,6 @@ export default {
handler: function(bot, args, message) {
const responses = ['It is certain.', 'It is decidedly so.', 'Without a doubt.', 'Yes - definitely.', 'You may rely on it.', 'As I see it, yes.', 'Most likely.', 'Outlook good.', 'Yes.', 'Signs point to yes.', 'Reply hazy, try again.', 'Ask again later.', 'Better not tell you now.', 'Cannot predict now.', 'Concentrate and ask again.', 'Don\'t count on it.', 'My reply is no.', 'My sources say no.', 'Outlook not so good.', 'Very doubtful.'];
const randomIndex = Math.floor(Math.random() * responses.length);
bot.sendMessage(responses[randomIndex]);
bot.sendMessage(message.peers, responses[randomIndex]);
}
};

View File

@ -3,6 +3,6 @@ export default {
description: 'Greet the user',
handler: function(bot, args, message) {
const userName = message.name;
bot.sendMessage(`Hello, ${userName}! How can I assist you today?`);
bot.sendMessage(message.peers, `Hello, ${userName}! How can I assist you today?`);
}
};

View File

@ -2,6 +2,6 @@
export default {
handler: function(bot, args, message) {
bot.sendMessage('Pong!');
bot.sendMessage(message.peers, 'Pong!');
}
};

View File

@ -32,10 +32,11 @@ class Client extends EventEmitter {
});
}
sendMessage(message) {
sendMessage(roomPeers, message) {
console.log('Bot name:', this.botName);
const timestamp = Date.now(); // Generate timestamp
const peers = [...this.swarm.connections];
const peers = [...this.swarm.connections].filter(peer => roomPeers.includes(peer.remotePublicKey.toString('hex')));
console.log(`Sending message ${message} to peers ${peers}`)
const data = JSON.stringify({name: this.botName, message, timestamp}); // Include timestamp
for (const peer of peers) peer.write(data);
}