mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Screenshot NSFW Filter
This commit is contained in:
@@ -886,6 +886,8 @@ here.
|
||||
* skyrim-skill ([Image, Original "The Elder Scrolls V: Skyrim" Game](https://elderscrolls.bethesda.net/en/skyrim))
|
||||
- [Bitly](https://bitly.com/)
|
||||
* shorten-url ([API](https://dev.bitly.com/v4_documentation.html))
|
||||
- [Block List Project](https://blocklist.site/)
|
||||
* screenshot ([NSFW Site List](https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt))
|
||||
- [Bob Ross](https://www.bobross.com/)
|
||||
* bob-ross (Himself)
|
||||
- [Bowserinator](https://github.com/Bowserinator/)
|
||||
|
||||
@@ -20,6 +20,12 @@ module.exports = class ScreenshotCommand extends Command {
|
||||
name: 'AzuraApple',
|
||||
url: 'https://github.com/AzuraApple',
|
||||
reason: 'Concept'
|
||||
},
|
||||
{
|
||||
name: 'Block List Project',
|
||||
url: 'https://blocklist.site/',
|
||||
reason: 'NSFW Site List',
|
||||
reasonURL: 'https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
@@ -30,10 +36,16 @@ module.exports = class ScreenshotCommand extends Command {
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
this.pornList = null;
|
||||
}
|
||||
|
||||
async run(msg, { url }) {
|
||||
try {
|
||||
if (!this.pornList) await this.fetchPornList();
|
||||
if (this.pornList.some(pornURL => url.includes(pornURL)) && !msg.channel.nsfw) {
|
||||
return msg.reply('This site is NSFW.');
|
||||
}
|
||||
const { body } = await request.get(`https://image.thum.io/get/width/1920/crop/675/noanimate/${url}`);
|
||||
return msg.say({ files: [{ attachment: body, name: 'screenshot.png' }] });
|
||||
} catch (err) {
|
||||
@@ -41,4 +53,11 @@ module.exports = class ScreenshotCommand extends Command {
|
||||
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
||||
}
|
||||
}
|
||||
|
||||
async fetchPornList(force = false) {
|
||||
if (!force && this.pornList) return this.pornList;
|
||||
const { text } = await request.get('https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt');
|
||||
this.pornList = text.split('\n').filter(url => !url.startsWith('#')).map(url => url.replace(/^(0.0.0.0 )/, ''));
|
||||
return this.postList;
|
||||
}
|
||||
};
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "116.37.0",
|
||||
"version": "116.37.1",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user