forked from Supositware/Haha-Yes
thispersondoesnotexist
This commit is contained in:
parent
33eed9f0ad
commit
d84192d7fe
2 changed files with 29 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -14,3 +14,4 @@ videoReady.mp4
|
|||
package-lock.json
|
||||
img/frame001.png
|
||||
img/spb.png
|
||||
img/de.png
|
||||
|
|
28
commands/fun/dosentexist.js
Normal file
28
commands/fun/dosentexist.js
Normal 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;
|
Loading…
Reference in a new issue