Screenshot NSFW Filter

This commit is contained in:
Dragon Fire
2020-06-21 17:34:41 -04:00
parent d9b8d22bfe
commit 40f34e571e
3 changed files with 22 additions and 1 deletions
+2
View File
@@ -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/)
+19
View File
@@ -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
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "116.37.0",
"version": "116.37.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {