Compare commits
No commits in common. "cc654112b288df91543f898f47bc31993e7d4c80" and "9461368c021171267043ba9b83f9956766536e69" have entirely different histories.
cc654112b2
...
9461368c02
@ -57,14 +57,14 @@ loadCommands().then(commands => {
|
|||||||
commandHandler.handler(bot, args, message);
|
commandHandler.handler(bot, args, message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
})
|
||||||
|
|
||||||
bot.on('onBotJoinRoom', () => {
|
|
||||||
console.log("Bot is ready!");
|
|
||||||
bot.sendMessage(process.env.ON_READY_MESSAGE);
|
|
||||||
});
|
|
||||||
|
|
||||||
bot.joinChatRoom();
|
bot.joinChatRoom();
|
||||||
|
|
||||||
|
// Wait for 2 seconds for the bot to connect
|
||||||
|
setTimeout(() => {
|
||||||
|
// Send a message
|
||||||
|
bot.sendMessage(process.env.ON_READY_MESSAGE);
|
||||||
|
}, 2000); // Adjust the delay as necessary
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
console.error('Error loading commands:', error);
|
console.error('Error loading commands:', error);
|
||||||
});
|
});
|
||||||
|
@ -4,9 +4,6 @@ import EventEmitter from 'node:events'
|
|||||||
class Client extends EventEmitter {
|
class Client extends EventEmitter {
|
||||||
constructor(chatRoomID, botName) {
|
constructor(chatRoomID, botName) {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
if(!chatRoomID || !botName) return console.error("ChatRoomID or BotName is not defined!");
|
|
||||||
|
|
||||||
this.topicBuffer = Buffer.from(chatRoomID, 'hex');
|
this.topicBuffer = Buffer.from(chatRoomID, 'hex');
|
||||||
this.botName = botName;
|
this.botName = botName;
|
||||||
this.swarm = new Hyperswarm();
|
this.swarm = new Hyperswarm();
|
||||||
@ -15,11 +12,8 @@ class Client extends EventEmitter {
|
|||||||
|
|
||||||
setupSwarm() {
|
setupSwarm() {
|
||||||
this.swarm.on('connection', (peer) => {
|
this.swarm.on('connection', (peer) => {
|
||||||
peer.on('data', message => this.emit('onMessage', peer, JSON.parse(message.toString())));
|
peer.on('data', message => this.emit("onMessage", peer, JSON.parse(message.toString())));
|
||||||
peer.on('error', e => {
|
peer.on('error', e => console.log(`Connection error: ${e}`));
|
||||||
this.emit('onError', e);
|
|
||||||
console.error(`Connection error: ${e}`)
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.swarm.on('update', () => {
|
this.swarm.on('update', () => {
|
||||||
@ -28,10 +22,9 @@ class Client extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
joinChatRoom() {
|
joinChatRoom() {
|
||||||
this.discovery = this.swarm.join(this.topicBuffer, {client: true, server: true});
|
this.discovery = this.swarm.join(this.topicBuffer, { client: true, server: true });
|
||||||
this.discovery.flushed().then(() => {
|
this.discovery.flushed().then(() => {
|
||||||
console.log(`Bot ${this.botName} joined the chat room.`);
|
console.log(`Bot ${this.botName} joined the chat room.`);
|
||||||
this.emit('onBotJoinRoom');
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -39,7 +32,7 @@ class Client extends EventEmitter {
|
|||||||
console.log('Bot name:', this.botName);
|
console.log('Bot name:', this.botName);
|
||||||
const timestamp = Date.now(); // Generate timestamp
|
const timestamp = Date.now(); // Generate timestamp
|
||||||
const peers = [...this.swarm.connections];
|
const peers = [...this.swarm.connections];
|
||||||
const data = JSON.stringify({name: this.botName, message, timestamp}); // Include timestamp
|
const data = JSON.stringify({ name: this.botName, message, timestamp }); // Include timestamp
|
||||||
for (const peer of peers) peer.write(data);
|
for (const peer of peers) peer.write(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user