Notes
Notes - notes.io |
const monitoredChannelId = '1221684717309399111'; // ID of the channel to monitor
const logChannelId = '1223871039541346317';
const client = new Client({
checkUpdate: false
});
// Map to store message data
const messageMap = new Map();
client.on('ready', async () => {
console.log('Bot is ready.');
const monitoredChannel = client.channels.cache.get(monitoredChannelId);
if (!monitoredChannel) {
console.error(`Monitored channel with ID ${monitoredChannelId} not found.`);
return;
}
// Fetch messages from the monitored channel and store them
await fetchAndStoreMessages(monitoredChannel);
console.log('Indexed messages in the monitored channel.');
});
// Function to fetch messages from the monitored channel and store them
async function fetchAndStoreMessages(channel) {
try {
const messages = await channel.messages.fetch();
messages.forEach(message => {
messageMap.set(message.id, {
content: message.content,
user: message.author.tag
});
});
} catch (error) {
console.error('Error fetching and storing messages:', error);
}
}
// Event listener for message deletion
client.on('messageDelete', async (deletedMessage) => {
if (deletedMessage.channel.id === monitoredChannelId) {
const storedMessage = messageMap.get(deletedMessage.id);
if (storedMessage) {
logEvent('Message Deleted', storedMessage.user, storedMessage.content, new Date());
} else {
console.error(`Message with ID ${deletedMessage.id} not found in message map.`);
}
}
});
// Event listener for message edit
client.on('messageUpdate', async (oldMessage, newMessage) => {
if (newMessage.channel.id === monitoredChannelId) {
logEvent('Message Edited', newMessage.author.tag, `nBefore: ${oldMessage.content}nAfter: ${newMessage.content}`, newMessage.editedAt || newMessage.createdAt);
}
});
// Event listener for new messages
client.on('messageCreate', async (message) => {
if (message.channel.id === monitoredChannelId) {
logEvent('Message Sent', message.author.tag, message.content, message.createdAt);
}
});
// Function to log events in the log channel
async function logEvent(action, user, messageContent, timestamp) {
const logChannel = client.channels.cache.get(logChannelId);
if (logChannel) {
logChannel.send('```NEW ACTION' + `n${action}`+'```'+`nUser: ${user ? user : 'name'}nTimestamp: <t:${Math.floor(timestamp / 1000)}:R>n**__Message:__** ${messageContent || '_No content_'}n` + '```END OF ACTION```');
} else {
console.error(`Log channel with ID ${logChannelId} not found.`);
}
}
client.login('NjQwODk0ODY5MTY2MDk2NDI2.GuTcDJ.DVojrUt_Xf_Sy9RfQEeTv2-ilOCPyMSIRUnFGc')
|
Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 12 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team