feat: change status message

This commit is contained in:
Pedro Lopez
2020-02-08 01:32:15 -04:00
parent f2b286a319
commit edc2c7022d
3 changed files with 15 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ Take a look at [example.js](https://github.com/pedroslopez/whatsapp-web.js/blob/
| Mention users | _pending_ |
| Get contact info | ✅ |
| Get profile pictures | ✅ |
| Set user status message | ✅ |
Something missing? Make an issue and let us know!

View File

@@ -127,6 +127,10 @@ client.on('message', async msg => {
msg.reply(new Location(37.422, -122.084, 'Googleplex\nGoogle Headquarters'));
} else if(msg.location) {
msg.reply(msg.location);
} else if(msg.body.startsWith('!status ')) {
const newStatus = msg.body.split(' ')[1];
await client.setStatus(newStatus);
msg.reply(`Status was updated to *${newStatus}*`);
}
});

View File

@@ -331,6 +331,16 @@ class Client extends EventEmitter {
return chatId._serialized;
}
/**
* Sets the current user's status message
* @param {string} status New status message
*/
async setStatus(status) {
await this.pupPage.evaluate(async status => {
return await window.Store.Wap.sendSetStatus(status);
}, status);
}
}
module.exports = Client;