import assert from "assert" ;
import logging from '../lib/logging.js' ;
import { Client , IntentsBitField , Partials } from "discord.js" ;
import { User } from "../lib/models.js" ;
import { company } from '../emails/config.js' ;
import { discord } from "../lib/config.js" ;
import { send _email , load _templates , debug _templates } from '../lib/email.js' ;
const log = logging . create ( "/queues/mail.js" ) ;
const client = new Client ( {
intents : [
Intents . Flags . GuildInvites ,
] ,
partials : [ Partials . GuildMember ] ,
} ) ;
const load _guild _channel = async ( client ) => {
const guilds = await client . guilds . fetch ( ) ;
let temp = guilds . entries ( ) . next ( ) . value [ 1 ] ;
assert ( temp , "Can't find any guilds/servers." ) ;
const guild = await temp . fetch ( ) ;
assert ( guild , "No guild after fetch." ) ;
const channels = await guild . channels . fetch ( ) ;
for ( let chan of channels . entries ( ) ) {
if ( chan [ 1 ] . type === "GUILD_TEXT" ) {
// remember, return await puts the errors here
return [ guild , await chan [ 1 ] . fetch ( ) ] ;
}
}
// fallthrough, no text channels
[ guild , undefined ] ;
}
log . info ( "Connecting to discord server..." ) ;
await client . login ( discord . token ) ;
const [ guild , channel ] = await load _guild _channel ( client ) ;
// if it doesn't exist make it and add it to their account
log . info ( "Connected to Sever/Guild" , guild . name ) ;
log . info ( "Sending invites from Channel" , channel . name ) ;
const invite _email = await load _templates ( "discord_email" ) ;
export const send _invite = async ( job ) => {
try {
console . log ( "JOB!" , job . data ) ;
assert ( channel !== undefined , "Did not find one text channel." ) ;
assert ( job . data . user _id !== undefined , "user_id is required" ) ;
log . debug ( ` Discord invite request for ${ job . data . user _id } ` ) ;
const user = await User . first ( { id : job . data . user _id } ) ;
assert ( user , "didn't find user" ) ;
// check the user's account to see if a code already exists
if ( user . discord _invite ) {
log . info ( ` Ignoring user ${ user . id } because they already have invite code ${ user . discord _invite } sent on ${ user . discord _sent } ` ) ;
} else {
const invite = await channel . createInvite ( discord . invites ) ;
// update the user's account with their invite code and
const text = invite _email . txt ( { user , invite , company , discord } ) ;
const html = invite _email . html ( { user , invite , company , discord } ) ;
await User . update ( { id : user . id } , { discord _invite : invite . code , discord _sent : new Date ( ) } ) ;
await debug _templates ( { text , html } , "invite_email" ) ;
// send both txt and html as attachments
send _email ( {
from : company . mail ,
to : user . email ,
subject : ` Discord Invite for ${ company . website } ` ,
text , html
} ) ;
log . info ( ` INVITE code ${ invite . code } sent to user ${ user . id } ` ) ;
}
} catch ( error ) {
log . error ( error ) ;
}
}