forked from Supositware/Haha-Yes
If itt can't be sent via discord sent it as a file
This commit is contained in:
parent
389c9c7122
commit
af611e7d18
1 changed files with 34 additions and 8 deletions
|
@ -45,7 +45,13 @@ class seetagCommand extends Command {
|
||||||
.addField('Response:', tagList['dataValues']['response'])
|
.addField('Response:', tagList['dataValues']['response'])
|
||||||
.addField('Creator:', `${user.username}#${user.discriminator} (${user.id})`);
|
.addField('Creator:', `${user.username}#${user.discriminator} (${user.id})`);
|
||||||
|
|
||||||
return message.channel.send(TagEmbed);
|
return message.channel.send(TagEmbed)
|
||||||
|
.catch(() => {
|
||||||
|
tagTxt(args.raw, tagList)
|
||||||
|
.then(path => {
|
||||||
|
return message.channel.send('This tag is to big to be shown on discord! Sending it as a file', {files: [path]});
|
||||||
|
});
|
||||||
|
});
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
const TagEmbed = new MessageEmbed()
|
const TagEmbed = new MessageEmbed()
|
||||||
|
@ -55,7 +61,13 @@ class seetagCommand extends Command {
|
||||||
.addField('Response:', tagList['dataValues']['response'])
|
.addField('Response:', tagList['dataValues']['response'])
|
||||||
.addField('Creator:', 'No user info.');
|
.addField('Creator:', 'No user info.');
|
||||||
|
|
||||||
return message.channel.send(TagEmbed);
|
return message.channel.send(TagEmbed)
|
||||||
|
.catch(() => {
|
||||||
|
tagTxt(args.raw, tagList)
|
||||||
|
.then(path => {
|
||||||
|
return message.channel.send('This tag is to big to be shown on discord! Sending it as a file', {files: [path]});
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
} else if (args.all) {
|
} else if (args.all) {
|
||||||
let tagList = await Tag.findAll({attributes: ['trigger','response','ownerID'], where: {serverID: message.guild.id}});
|
let tagList = await Tag.findAll({attributes: ['trigger','response','ownerID'], where: {serverID: message.guild.id}});
|
||||||
|
@ -64,9 +76,9 @@ class seetagCommand extends Command {
|
||||||
tagList.forEach(tag => {
|
tagList.forEach(tag => {
|
||||||
tagArray.push(tag.dataValues);
|
tagArray.push(tag.dataValues);
|
||||||
});
|
});
|
||||||
fs.writeFile(`${os.tmpdir()}/tagslist.txt`,JSON.stringify(tagArray, null, 2), function(err) {
|
tagTxt('taglist', tagArray)
|
||||||
if (err) return console.error(err);
|
.then(path => {
|
||||||
return message.channel.send('Here are your tags', {files: [`${os.tmpdir()}/tagslist.txt`]});
|
return message.channel.send('Here are all your tags!', {files: [path]});
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
let tagList = await Tag.findAll({attributes: ['trigger'], where: {serverID: message.guild.id}});
|
let tagList = await Tag.findAll({attributes: ['trigger'], where: {serverID: message.guild.id}});
|
||||||
|
@ -77,7 +89,21 @@ class seetagCommand extends Command {
|
||||||
.setDescription(tagString)
|
.setDescription(tagString)
|
||||||
.setFooter('Use this command with the name of the tag to see more info about it!');
|
.setFooter('Use this command with the name of the tag to see more info about it!');
|
||||||
|
|
||||||
return message.channel.send(TagEmbed);
|
return message.channel.send(TagEmbed)
|
||||||
|
.catch(() => {
|
||||||
|
tagTxt('tags', tagList)
|
||||||
|
.then(path => {
|
||||||
|
return message.channel.send('This tag is to big to be shown on discord! Sending it as a file', {files: [path]});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function tagTxt(name, tagArray) {
|
||||||
|
let path = `${os.tmpdir()}/${name.substring(0, 10)}.json`;
|
||||||
|
fs.writeFile(path,JSON.stringify(tagArray, null, 2), function(err) {
|
||||||
|
if (err) return console.error(err);
|
||||||
|
});
|
||||||
|
return path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue