mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-15 00:12:38 +02:00
Shorten wikipedia blurb
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
const Command = require('../../framework/Command');
|
const Command = require('../../framework/Command');
|
||||||
const { EmbedBuilder, PermissionFlagsBits } = require('discord.js');
|
const { EmbedBuilder, PermissionFlagsBits } = require('discord.js');
|
||||||
const request = require('node-superfetch');
|
const request = require('node-superfetch');
|
||||||
const { shorten } = require('../../util/Util');
|
|
||||||
const logos = require('../../assets/json/logos');
|
const logos = require('../../assets/json/logos');
|
||||||
|
|
||||||
module.exports = class WikipediaCommand extends Command {
|
module.exports = class WikipediaCommand extends Command {
|
||||||
@@ -51,13 +50,20 @@ module.exports = class WikipediaCommand extends Command {
|
|||||||
const nsfw = await this.client.tensorflow.isImageNSFW(img.body);
|
const nsfw = await this.client.tensorflow.isImageNSFW(img.body);
|
||||||
if (nsfw) thumbnail = null;
|
if (nsfw) thumbnail = null;
|
||||||
}
|
}
|
||||||
|
let fact = data.extract;
|
||||||
|
if (fact.length > 200) {
|
||||||
|
const facts = fact.split('.');
|
||||||
|
fact = `${facts[0]}.`;
|
||||||
|
if (fact.length < 200 && facts.length > 1) fact += `${facts[1]}.`;
|
||||||
|
}
|
||||||
|
const url = `https://en.wikipedia.org/wiki/${encodeURIComponent(query).replaceAll(')', '%29')}`;
|
||||||
const embed = new EmbedBuilder()
|
const embed = new EmbedBuilder()
|
||||||
.setColor(0xE7E7E7)
|
.setColor(0xE7E7E7)
|
||||||
.setTitle(data.title)
|
.setTitle(data.title)
|
||||||
.setAuthor({ name: 'Wikipedia', iconURL: logos.wikipedia, url: 'https://www.wikipedia.org/' })
|
.setAuthor({ name: 'Wikipedia', iconURL: logos.wikipedia, url: 'https://www.wikipedia.org/' })
|
||||||
.setURL(`https://en.wikipedia.org/wiki/${encodeURIComponent(query).replaceAll(')', '%29')}`)
|
.setURL(url)
|
||||||
.setThumbnail(thumbnail)
|
.setThumbnail(thumbnail)
|
||||||
.setDescription(shorten(data.extract.replaceAll('\n', '\n\n')));
|
.setDescription(`${fact} [Read more...](${url})`);
|
||||||
return msg.embed(embed);
|
return msg.embed(embed);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user