123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- const crypto = require('crypto');
- const cheerio = require('cheerio');
- const {defaultPermissions, defaultSettings} = require('../util/default.json');
- const Wiki = require('../util/wiki.js');
- const Lang = require('./i18n.js');
- const dashboardLang = new Lang(defaultSettings.lang);
- const {got, settingsData, sendMsg, createNotice, hasPerm} = require('./util.js');
- const DiscordOauth2 = require('discord-oauth2');
- const oauth = new DiscordOauth2( {
- clientId: process.env.bot,
- clientSecret: process.env.secret,
- redirectUri: process.env.dashboard
- } );
- const file = require('fs').readFileSync('./dashboard/login.html');
- /**
- * Let a user login
- * @param {import('http').ServerResponse} res - The server response
- * @param {String} [state] - The user state
- * @param {String} [action] - The action the user made
- */
- function dashboard_login(res, state, action) {
- if ( state && settingsData.has(state) ) {
- if ( !action ) {
- res.writeHead(302, {Location: '/'});
- return res.end();
- }
- settingsData.delete(state);
- }
- var $ = cheerio.load(file);
- let responseCode = 200;
- let prompt = 'none';
- if ( process.env.READONLY ) createNotice($, 'readonly', dashboardLang);
- if ( action ) createNotice($, action, dashboardLang);
- if ( action === 'unauthorized' ) $('head').append(
- $('<script>').text('history.replaceState(null, null, "/login");')
- );
- if ( action === 'logout' ) prompt = 'consent';
- if ( action === 'loginfail' ) responseCode = 400;
- state = crypto.randomBytes(16).toString("hex");
- while ( settingsData.has(state) ) {
- state = crypto.randomBytes(16).toString("hex");
- }
- let invite = oauth.generateAuthUrl( {
- scope: ['identify', 'guilds', 'bot'],
- permissions: defaultPermissions, state
- } );
- $('.guild#invite a, .channel#invite-wikibot').attr('href', invite);
- let url = oauth.generateAuthUrl( {
- scope: ['identify', 'guilds'],
- prompt, state
- } );
- $('.channel#login, #login-button').attr('href', url);
- let body = $.html();
- res.writeHead(responseCode, {
- 'Set-Cookie': [
- ...( res.getHeader('Set-Cookie') || [] ),
- `wikibot="${state}"; HttpOnly; Path=/`
- ],
- 'Content-Length': body.length
- });
- res.write( body );
- return res.end();
- }
- /**
- * Load oauth data of a user
- * @param {import('http').ServerResponse} res - The server response
- * @param {String} state - The user state
- * @param {URLSearchParams} searchParams - The url parameters
- * @param {String} [lastGuild] - The guild to return to
- */
- function dashboard_oauth(res, state, searchParams, lastGuild) {
- if ( searchParams.get('error') === 'access_denied' && state === searchParams.get('state') && settingsData.has(state) ) {
- res.writeHead(302, {Location: '/'});
- return res.end();
- }
- if ( state !== searchParams.get('state') || !searchParams.get('code') ) {
- res.writeHead(302, {Location: '/login?action=failed'});
- return res.end();
- }
- settingsData.delete(state);
- return oauth.tokenRequest( {
- scope: ['identify', 'guilds'],
- code: searchParams.get('code'),
- grantType: 'authorization_code'
- } ).then( ({access_token}) => {
- return Promise.all([
- oauth.getUser(access_token),
- oauth.getUserGuilds(access_token)
- ]).then( ([user, guilds]) => {
- guilds = guilds.filter( guild => {
- return ( guild.owner || hasPerm(guild.permissions, 'MANAGE_GUILD') );
- } ).map( guild => {
- return {
- id: guild.id,
- name: guild.name,
- acronym: guild.name.replace( /'s /g, ' ' ).replace( /\w+/g, e => e[0] ).replace( /\s/g, '' ),
- icon: ( guild.icon ? `https://cdn.discordapp.com/icons/${guild.id}/${guild.icon}.`
- + ( guild.icon.startsWith( 'a_' ) ? 'gif' : 'png' ) : null ),
- userPermissions: guild.permissions
- };
- } );
- sendMsg( {
- type: 'getGuilds',
- member: user.id,
- guilds: guilds.map( guild => guild.id )
- } ).then( response => {
- var settings = {
- state: `${state}-${user.id}`,
- access_token,
- user: {
- id: user.id,
- username: user.username,
- discriminator: user.discriminator,
- avatar: 'https://cdn.discordapp.com/' + ( user.avatar ?
- `avatars/${user.id}/${user.avatar}.` +
- ( user.avatar.startsWith( 'a_' ) ? 'gif' : 'png' ) :
- `embed/avatars/${user.discriminator % 5}.png` ) + '?size=64',
- locale: user.locale
- },
- guilds: {
- count: guilds.length,
- isMember: new Map(),
- notMember: new Map()
- }
- };
- response.forEach( (guild, i) => {
- if ( guild ) {
- if ( guild === 'noMember' ) return;
- settings.guilds.isMember.set(guilds[i].id, Object.assign(guilds[i], guild));
- }
- else settings.guilds.notMember.set(guilds[i].id, guilds[i]);
- } );
- settingsData.set(settings.state, settings);
- res.writeHead(302, {
- Location: ( lastGuild && /^\d+\/(?:settings|verification|rcscript)(?:\/(?:\d+|new))?$/.test(lastGuild) ? `/guild/${lastGuild}` : '/' ),
- 'Set-Cookie': [`wikibot="${settings.state}"; HttpOnly; Path=/`]
- });
- return res.end();
- }, error => {
- console.log( '- Dashboard: Error while getting the guilds:', error );
- res.writeHead(302, {Location: '/login?action=failed'});
- return res.end();
- } );
- }, error => {
- console.log( '- Dashboard: Error while getting user and guilds: ' + error );
- res.writeHead(302, {Location: '/login?action=failed'});
- return res.end();
- } );
- }, error => {
- console.log( '- Dashboard: Error while getting the token: ' + error );
- res.writeHead(302, {Location: '/login?action=failed'});
- return res.end();
- } );
- }
- /**
- * Reload the guild of a user
- * @param {import('http').ServerResponse} res - The server response
- * @param {String} state - The user state
- * @param {String} [returnLocation] - The return location
- */
- function dashboard_refresh(res, state, returnLocation = '/') {
- var settings = settingsData.get(state);
- return oauth.getUserGuilds(settings.access_token).then( guilds => {
- guilds = guilds.filter( guild => {
- return ( guild.owner || hasPerm(guild.permissions, 'MANAGE_GUILD') );
- } ).map( guild => {
- return {
- id: guild.id,
- name: guild.name,
- acronym: guild.name.replace( /'s /g, ' ' ).replace( /\w+/g, e => e[0] ).replace( /\s/g, '' ),
- icon: ( guild.icon ? `https://cdn.discordapp.com/icons/${guild.id}/${guild.icon}.`
- + ( guild.icon.startsWith( 'a_' ) ? 'gif' : 'png' ) : null ),
- userPermissions: guild.permissions
- };
- } );
- sendMsg( {
- type: 'getGuilds',
- member: settings.user.id,
- guilds: guilds.map( guild => guild.id )
- } ).then( response => {
- let isMember = new Map();
- let notMember = new Map();
- response.forEach( (guild, i) => {
- if ( guild ) {
- if ( guild === 'noMember' ) return;
- isMember.set(guilds[i].id, Object.assign(guilds[i], guild));
- }
- else notMember.set(guilds[i].id, guilds[i]);
- } );
- settings.guilds = {count: guilds.length, isMember, notMember};
- res.writeHead(302, {Location: returnLocation + '?refresh=success'});
- return res.end();
- }, error => {
- console.log( '- Dashboard: Error while getting the refreshed guilds:', error );
- res.writeHead(302, {Location: returnLocation + '?refresh=failed'});
- return res.end();
- } );
- }, error => {
- console.log( '- Dashboard: Error while refreshing guilds: ' + error );
- res.writeHead(302, {Location: returnLocation + '?refresh=failed'});
- return res.end();
- } );
- }
- /**
- * Check if a wiki is availabe
- * @param {import('http').ServerResponse} res - The server response
- * @param {String} input - The wiki to check
- */
- function dashboard_api(res, input) {
- var wiki = Wiki.fromInput('https://' + input + '/');
- var result = {
- api: true,
- error: false,
- wiki: wiki.href,
- MediaWiki: false,
- TextExtracts: false,
- PageImages: false,
- RcGcDw: '',
- customRcGcDw: wiki.toLink('MediaWiki:Custom-RcGcDw', 'action=edit')
- };
- return got.get( wiki + 'api.php?&action=query&meta=allmessages|siteinfo&ammessages=custom-RcGcDw&amenableparser=true&siprop=general|extensions&format=json' ).then( response => {
- if ( response.statusCode === 404 && typeof response.body === 'string' ) {
- let api = cheerio.load(response.body)('head link[rel="EditURI"]').prop('href');
- if ( api ) {
- wiki = new Wiki(api.split('api.php?')[0], wiki);
- return got.get( wiki + 'api.php?action=query&meta=allmessages|siteinfo&ammessages=custom-RcGcDw&amenableparser=true&siprop=general|extensions&format=json' );
- }
- }
- return response;
- } ).then( response => {
- var body = response.body;
- if ( response.statusCode !== 200 || !body?.query?.allmessages || !body?.query?.general || !body?.query?.extensions ) {
- console.log( '- Dashboard: ' + response.statusCode + ': Error while checking the wiki: ' + body?.error?.info );
- result.error = true;
- return;
- }
- wiki.updateWiki(body.query.general);
- result.wiki = wiki.href;
- if ( body.query.general.generator.replace( /^MediaWiki 1\.(\d\d).*$/, '$1' ) >= 30 ) {
- result.MediaWiki = true;
- }
- if ( body.query.extensions.some( extension => extension.name === 'TextExtracts' ) ) {
- result.TextExtracts = true;
- }
- if ( body.query.extensions.some( extension => extension.name === 'PageImages' ) ) {
- result.PageImages = true;
- }
- if ( body.query.allmessages[0]['*'] ) {
- result.RcGcDw = body.query.allmessages[0]['*'];
- }
- result.customRcGcDw = wiki.toLink('MediaWiki:Custom-RcGcDw', 'action=edit');
- if ( wiki.isFandom() ) return;
- }, error => {
- console.log( '- Dashboard: Error while checking the wiki: ' + error );
- result.error = true;
- } ).finally( () => {
- let body = JSON.stringify(result);
- res.writeHead(200, {
- 'Content-Length': body.length,
- 'Content-Type': 'application/json'
- });
- res.write( body );
- return res.end();
- } );
- }
- module.exports = {
- login: dashboard_login,
- oauth: dashboard_oauth,
- refresh: dashboard_refresh,
- api: dashboard_api
- };
|