mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-17 19:26:20 +00:00
80 lines
2.3 KiB
JavaScript
80 lines
2.3 KiB
JavaScript
const { Client } = require('./index')
|
|
|
|
const client = new Client({puppeteer: {headless: false}});
|
|
|
|
client.initialize();
|
|
|
|
client.on('qr', (qr) => {
|
|
console.log('QR RECEIVED', qr);
|
|
});
|
|
|
|
client.on('authenticated', () => {
|
|
console.log('AUTHENTICATED');
|
|
});
|
|
|
|
client.on('ready', () => {
|
|
console.log('READY');
|
|
});
|
|
|
|
client.on('message', async msg => {
|
|
console.log('MESSAGE RECEIVED', msg);
|
|
|
|
if (msg.body == '!ping reply') {
|
|
// Send a new message as a reply to the current one
|
|
msg.reply('pong');
|
|
|
|
} else if (msg.body == '!ping') {
|
|
// Send a new message to the same chat
|
|
client.sendMessage(msg.from, 'pong');
|
|
|
|
} else if (msg.body.startsWith('!subject ')) {
|
|
// Change the group subject
|
|
let chat = await msg.getChat();
|
|
if(chat.isGroup) {
|
|
let newSubject = msg.body.slice(9);
|
|
chat.setSubject(newSubject);
|
|
} else {
|
|
msg.reply('This command can only be used in a group!');
|
|
}
|
|
} else if (msg.body.startsWith('!echo ')) {
|
|
// Replies with the same message
|
|
msg.reply(msg.body.slice(6));
|
|
} else if (msg.body.startsWith('!desc ')) {
|
|
// Change the group description
|
|
let chat = await msg.getChat();
|
|
if(chat.isGroup) {
|
|
let newDescription = msg.body.slice(6);
|
|
chat.setDescription(newDescription);
|
|
} else {
|
|
msg.reply('This command can only be used in a group!');
|
|
}
|
|
} else if (msg.body == '!leave') {
|
|
// Leave the group
|
|
let chat = await msg.getChat();
|
|
if(chat.isGroup) {
|
|
chat.leave();
|
|
} else {
|
|
msg.reply('This command can only be used in a group!');
|
|
}
|
|
} else if(msg.body == '!groupinfo') {
|
|
let chat = await msg.getChat();
|
|
if(chat.isGroup) {
|
|
msg.reply(`
|
|
*Group Details*
|
|
Name: ${chat.name}
|
|
Description: ${chat.description}
|
|
Created At: ${chat.createdAt.toString()}
|
|
Created By: ${chat.owner.user}
|
|
Participant count: ${chat.participants.length}
|
|
`);
|
|
} else {
|
|
msg.reply('This command can only be used in a group!');
|
|
}
|
|
}
|
|
});
|
|
|
|
client.on('disconnected', () => {
|
|
console.log('Client was logged out');
|
|
})
|
|
|