123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- const {Util} = require('discord.js');
- const {limit: {command: commandLimit}, defaultSettings, wikiProjects} = require('./default.json');
- const Wiki = require('./wiki.js');
- const check_wiki = {
- fandom: require('../cmds/wiki/fandom/general.js'),
- general: require('../cmds/wiki/general.js'),
- test: require('../cmds/test.js').run
- };
- const fs = require('fs');
- var cmdmap = {};
- var pausecmdmap = {};
- var ownercmdmap = {};
- fs.readdir( './cmds', (error, files) => {
- if ( error ) return error;
- files.filter( file => file.endsWith('.js') ).forEach( file => {
- var command = require('../cmds/' + file);
- if ( command.everyone ) cmdmap[command.name] = command.run;
- if ( command.pause ) pausecmdmap[command.name] = command.run;
- if ( command.owner ) ownercmdmap[command.name] = command.run;
- } );
- } );
- /**
- * Processes new messages.
- * @param {import('discord.js').Message} msg - The Discord message.
- * @param {import('./i18n.js')} lang - The user language.
- * @param {Wiki} [wiki] - The default wiki.
- * @param {String} [prefix] - The prefix for the message.
- * @param {Boolean} [noInline] - Parse inline commands?
- * @param {String} [content] - Overwrite for the message content.
- */
- function newMessage(msg, lang, wiki = defaultSettings.wiki, prefix = process.env.prefix, noInline = null, content = '') {
- wiki = new Wiki(wiki);
- msg.noInline = noInline;
- var cont = ( content || msg.content );
- var cleanCont = ( content && Util.cleanContent(content, msg) || msg.cleanContent );
- var author = msg.author;
- var channel = msg.channel;
- if ( msg.isOwner() && cont.hasPrefix(prefix) ) {
- let invoke = cont.substring(prefix.length).split(' ')[0].split('\n')[0].toLowerCase();
- let aliasInvoke = ( lang.aliases[invoke] || invoke );
- if ( aliasInvoke in ownercmdmap ) {
- cont = cont.substring(prefix.length);
- let args = cont.split(' ').slice(1);
- if ( cont.split(' ')[0].split('\n')[1] ) args.unshift( '', cont.split(' ')[0].split('\n')[1] );
- console.log( ( channel.isGuild() ? msg.guild.id : '@' + author.id ) + ': ' + prefix + cont );
- return ownercmdmap[aliasInvoke](lang, msg, args, cont, wiki);
- }
- }
- var count = 0;
- var maxcount = commandLimit[( msg?.guild?.id in patreons ? 'patreon' : 'default' )];
- var breakLines = false;
- cleanCont.replace( /\u200b/g, '' ).replace( /(?<!\\)```.+?```/gs, '<codeblock>' ).split('\n').forEach( line => {
- if ( line.startsWith( '>>> ' ) ) breakLines = true;
- if ( !line.hasPrefix(prefix) || breakLines || count > maxcount ) return;
- count++;
- if ( count === maxcount ) {
- console.log( '- Message contains too many commands!' );
- msg.reactEmoji('⚠️');
- msg.sendChannelError( lang.get('general.limit', '<@' + author.id + '>'), {allowedMentions:{users:[author.id]}} );
- return;
- }
- line = line.substring(prefix.length);
- var invoke = line.split(' ')[0].toLowerCase();
- var args = line.split(' ').slice(1);
- var aliasInvoke = ( lang.aliases[invoke] || invoke );
- var ownercmd = ( msg.isOwner() && aliasInvoke in ownercmdmap );
- var pausecmd = ( msg.isAdmin() && pause[msg.guild.id] && aliasInvoke in pausecmdmap );
- if ( msg.onlyVerifyCommand && !( aliasInvoke === 'verify' || pausecmd || ownercmd ) ) return;
- if ( channel.isGuild() && pause[msg.guild.id] && !( pausecmd || ownercmd ) ) {
- return console.log( msg.guild.id + ': Paused' );
- }
- console.log( ( channel.isGuild() ? msg.guild.id : '@' + author.id ) + ': ' + prefix + line );
- if ( ownercmd ) return ownercmdmap[aliasInvoke](lang, msg, args, line, wiki);
- if ( pausecmd ) return pausecmdmap[aliasInvoke](lang, msg, args, line, wiki);
- if ( aliasInvoke in cmdmap ) return cmdmap[aliasInvoke](lang, msg, args, line, wiki);
- if ( /^![a-z\d-]{1,50}$/.test(invoke) ) {
- return cmdmap.LINK(lang, msg, args.join(' '), new Wiki('https://' + invoke.substring(1) + '.gamepedia.com/'), invoke + ' ');
- }
- if ( /^\?(?:[a-z-]{2,12}\.)?[a-z\d-]{1,50}$/.test(invoke) ) {
- let invokeWiki = wiki;
- if ( invoke.includes( '.' ) ) invokeWiki = 'https://' + invoke.split('.')[1] + '.fandom.com/' + invoke.substring(1).split('.')[0] + '/';
- else invokeWiki = 'https://' + invoke.substring(1) + '.fandom.com/';
- return cmdmap.LINK(lang, msg, args.join(' '), new Wiki(invokeWiki), invoke + ' ');
- }
- if ( /^\?\?(?:[a-z-]{2,12}\.)?[a-z\d-]{1,50}$/.test(invoke) ) {
- let invokeWiki = wiki;
- if ( invoke.includes( '.' ) ) invokeWiki = 'https://' + invoke.split('.')[1] + '.wikia.org/' + invoke.substring(2).split('.')[0] + '/';
- else invokeWiki = 'https://' + invoke.substring(2) + '.wikia.org/';
- return cmdmap.LINK(lang, msg, args.join(' '), new Wiki(invokeWiki), invoke + ' ');
- }
- if ( /^!!(?:[a-z\d-]{1,50}\.)?[a-z\d-]{1,50}\.[a-z\d-]{1,10}(?:\/|$)/.test(invoke) ) {
- let project = wikiProjects.find( project => invoke.split('/')[0].endsWith( project.name ) );
- if ( project ) {
- let regex = invoke.match( new RegExp( project.regex ) );
- if ( regex && invoke === '!!' + regex[1] ) return cmdmap.LINK(lang, msg, args.join(' '), new Wiki('https://' + regex[1] + project.scriptPath), invoke + ' ');
- }
- }
- return cmdmap.LINK(lang, msg, line, wiki);
- } );
- if ( msg.onlyVerifyCommand ) return;
-
- if ( ( !channel.isGuild() || !pause[msg.guild.id] ) && !noInline && ( cont.includes( '[[' ) || cont.includes( '{{' ) ) ) {
- var links = [];
- var embeds = [];
- var linkcount = 0;
- var linkmaxcount = maxcount + 5;
- var breakInline = false;
- cleanCont.replace( /\u200b/g, '' ).replace( /(?<!\\)```.+?```/gs, '<codeblock>' ).replace( /(?<!\\)`.+?`/gs, '<code>' ).split('\n').forEach( line => {
- if ( line.startsWith( '>>> ' ) ) breakInline = true;
- if ( line.startsWith( '> ' ) || breakInline ) return;
- if ( line.hasPrefix(prefix) || !( line.includes( '[[' ) || line.includes( '{{' ) ) ) return;
- if ( line.includes( '[[' ) && line.includes( ']]' ) && linkcount <= linkmaxcount ) {
- let regex = new RegExp( '(?<!\\\\)(|\\|\\|)\\[\\[([^' + "<>\\[\\]\\|{}\\x01-\\x1F\\x7F" + ']+)(?<!\\\\)\\]\\]\\1', 'g' );
- let entry = null;
- while ( ( entry = regex.exec(line) ) !== null ) {
- if ( linkcount < linkmaxcount ) {
- linkcount++;
- console.log( ( channel.isGuild() ? msg.guild.id : '@' + author.id ) + ': ' + entry[0] );
- let title = entry[2].split('#')[0];
- let section = ( entry[2].includes( '#' ) ? entry[2].split('#').slice(1).join('#') : '' )
- links.push({title,section,spoiler:entry[1]});
- }
- else if ( linkcount === linkmaxcount ) {
- linkcount++;
- console.log( '- Message contains too many links!' );
- msg.reactEmoji('⚠️');
- break;
- }
- }
- }
-
- if ( line.includes( '{{' ) && line.includes( '}}' ) && count <= maxcount ) {
- let regex = new RegExp( '(?<!\\\\)(|\\|\\|)(?<!\\{)\\{\\{([^' + "<>\\[\\]\\|{}\\x01-\\x1F\\x7F" + ']+)(?<!\\\\)\\}\\}\\1', 'g' );
- let entry = null;
- while ( ( entry = regex.exec(line) ) !== null ) {
- if ( count < maxcount ) {
- count++;
- console.log( ( channel.isGuild() ? msg.guild.id : '@' + author.id ) + ': ' + entry[0] );
- let title = entry[2].split('#')[0];
- let section = ( entry[2].includes( '#' ) ? entry[2].split('#').slice(1).join('#') : '' )
- embeds.push({title,section,spoiler:entry[1]});
- }
- else if ( count === maxcount ) {
- count++;
- console.log( '- Message contains too many links!' );
- msg.reactEmoji('⚠️');
- break;
- }
- }
- }
- } );
-
- if ( links.length ) got.get( wiki + 'api.php?action=query&meta=siteinfo&siprop=general&iwurl=true&titles=' + encodeURIComponent( links.map( link => link.title ).join('|') ) + '&format=json' ).then( response => {
- var body = response.body;
- if ( response.statusCode !== 200 || !body || !body.query ) {
- if ( wiki.noWiki(response.url, response.statusCode) ) {
- console.log( '- This wiki doesn\'t exist!' );
- msg.reactEmoji('nowiki');
- return;
- }
- console.log( '- ' + response.statusCode + ': Error while following the links: ' + ( body && body.error && body.error.info ) );
- return;
- }
- wiki.updateWiki(body.query.general);
- if ( body.query.normalized ) {
- body.query.normalized.forEach( title => links.filter( link => link.title === title.from ).forEach( link => link.title = title.to ) );
- }
- if ( body.query.interwiki ) {
- body.query.interwiki.forEach( interwiki => links.filter( link => link.title === interwiki.title ).forEach( link => {
- link.url = ( link.section ? interwiki.url.split('#')[0] + Wiki.toSection(link.section) : interwiki.url );
- } ) );
- }
- if ( body.query.pages ) {
- var querypages = Object.values(body.query.pages);
- querypages.filter( page => page.invalid !== undefined ).forEach( page => links.filter( link => link.title === page.title ).forEach( link => {
- links.splice(links.indexOf(link), 1);
- } ) );
- querypages.filter( page => page.missing !== undefined && page.known === undefined ).forEach( page => links.filter( link => link.title === page.title ).forEach( link => {
- if ( ( page.ns === 2 || page.ns === 202 ) && !page.title.includes( '/' ) ) return;
- if ( wiki.isMiraheze() && page.ns === 0 && /^Mh:[a-z\d]+:/.test(page.title) ) {
- var iw_parts = page.title.split(':');
- var iw = new Wiki('https://' + iw_parts[1] + '.miraheze.org/w/');
- link.url = iw.toLink(iw_parts.slice(2).join(':'), '', link.section);
- return;
- }
- link.url = wiki.toLink(link.title, 'action=edit&redlink=1');
- } ) );
- }
- if ( links.length ) msg.sendChannel( links.map( link => link.spoiler + '<' + ( link.url || wiki.toLink(link.title, '', link.section) ) + '>' + link.spoiler ).join('\n'), {split:true} );
- }, error => {
- if ( wiki.noWiki(error.message) ) {
- console.log( '- This wiki doesn\'t exist!' );
- msg.reactEmoji('nowiki');
- }
- else {
- console.log( '- Error while following the links: ' + error );
- }
- } );
-
- if ( embeds.length ) got.get( wiki + 'api.php?action=query&meta=siteinfo&siprop=general' + ( wiki.isFandom() ? '' : '|variables' ) + '&titles=' + encodeURIComponent( embeds.map( embed => embed.title + '|Template:' + embed.title ).join('|') ) + '&format=json' ).then( response => {
- var body = response.body;
- if ( response.statusCode !== 200 || !body || !body.query ) {
- if ( wiki.noWiki(response.url, response.statusCode) ) {
- console.log( '- This wiki doesn\'t exist!' );
- msg.reactEmoji('nowiki');
- return;
- }
- console.log( '- ' + response.statusCode + ': Error while following the links: ' + ( body && body.error && body.error.info ) );
- return;
- }
- wiki.updateWiki(body.query.general);
- if ( body.query.normalized ) {
- body.query.normalized.forEach( title => embeds.filter( embed => embed.title === title.from ).forEach( embed => embed.title = title.to ) );
- }
- if ( body.query.pages ) {
- var querypages = Object.values(body.query.pages);
- querypages.filter( page => page.invalid !== undefined ).forEach( page => embeds.filter( embed => embed.title === page.title ).forEach( embed => {
- embeds.splice(embeds.indexOf(embed), 1);
- } ) );
- var missing = [];
- querypages.filter( page => page.missing !== undefined && page.known === undefined ).forEach( page => embeds.filter( embed => embed.title === page.title ).forEach( embed => {
- if ( ( page.ns === 2 || page.ns === 202 ) && !page.title.includes( '/' ) ) return;
- if ( wiki.isMiraheze() && page.ns === 0 && /^Mh:[a-z\d]+:/.test(page.title) ) return;
- embeds.splice(embeds.indexOf(embed), 1);
- if ( page.ns === 0 && !embed.section ) {
- var template = querypages.find( template => template.ns === 10 && template.title.split(':').slice(1).join(':') === embed.title );
- if ( template && template.missing === undefined ) embed.template = wiki.toLink(template.title);
- }
- if ( embed.template || !body.query.variables || !body.query.variables.some( variable => variable.toUpperCase() === embed.title ) ) missing.push(embed);
- } ) );
- if ( missing.length ) {
- msg.sendChannel( missing.map( embed => embed.spoiler + '<' + ( embed.template || wiki.toLink(embed.title, 'action=edit&redlink=1') ) + '>' + embed.spoiler ).join('\n'), {split:true} );
- }
- }
- if ( embeds.length ) embeds.forEach( embed => msg.reactEmoji('⏳').then( reaction => {
- check_wiki.general(lang, msg, embed.title, wiki, '', reaction, embed.spoiler, new URLSearchParams(), embed.section);
- } ) );
- }, error => {
- if ( wiki.noWiki(error.message) ) {
- console.log( '- This wiki doesn\'t exist!' );
- msg.reactEmoji('nowiki');
- }
- else {
- console.log( '- Error while following the links: ' + error );
- }
- } );
- }
- }
- module.exports = newMessage;
|