thispersondoesnotexist

This commit is contained in:
Loïc Bersier 2019-03-30 05:08:00 +01:00
parent 33eed9f0ad
commit d84192d7fe
2 changed files with 29 additions and 0 deletions

1
.gitignore vendored
View file

@ -14,3 +14,4 @@ videoReady.mp4
package-lock.json
img/frame001.png
img/spb.png
img/de.png

View file

@ -0,0 +1,28 @@
const { Command } = require('discord-akairo');
const fs = require('fs');
const fetch = require('node-fetch');
class dosentexistCommand extends Command {
constructor() {
super('dosentexist', {
aliases: ['dosentexist', 'thispersondoesnotexist', 'de'],
category: 'fun',
description: {
content: 'Send images from thispersondoesnotexist.com',
usage: '',
examples: ['']
}
});
}
async exec(message) {
fetch('https://thispersondoesnotexist.com/image')
.then(res => {
const dest = fs.createWriteStream('./img/de.png');
res.body.pipe(dest);
dest.on('finish', () => {
return message.channel.send({files: ['./img/de.png']});
});
}); }
}
module.exports = dosentexistCommand;