WHAT WAS DONE: - Migrated Arbiter (discord-oauth-arbiter) code to services/arbiter/ - Migrated Modpack Version Checker code to services/modpack-version-checker/ - Created .env.example for Arbiter with all required environment variables - Moved systemd service file to services/arbiter/deploy/ - Organized directory structure per Gemini monorepo recommendations WHY: - Consolidate all service code in one repository - Prepare for Gemini code review (Panel v1.12 compatibility check) - Enable service-prefixed Git tagging (arbiter-v2.1.0, modpack-v1.0.0) - Support npm workspaces for shared dependencies SERVICES MIGRATED: 1. Arbiter (Discord OAuth bot) - Originally written by Gemini + Claude - Full source code from ops-manual docs/implementation/ - Created comprehensive .env.example - Ready for Panel v1.12 compatibility verification 2. Modpack Version Checker (Python CLI tool) - Full source code from ops-manual docs/tasks/ - Written for Panel v1.11, needs Gemini review for v1.12 - Never had code review before STILL TODO: - Whitelist Manager - Pull from Billing VPS (38.68.14.188) - Currently deployed and running - Needs Panel v1.12 API compatibility fix (Task #86) - Requires SSH access to pull code NEXT STEPS: - Gemini code review for Panel v1.12 API compatibility - Create package.json for each service - Test npm workspaces integration - Deploy after verification FILES: - services/arbiter/ (25 new files, full application) - services/modpack-version-checker/ (21 new files, full application) Signed-off-by: The Golden Chronicler <claude@firefrostgaming.com>
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
// src/email.js
|
|
// Email service using Nodemailer for subscription linking notifications
|
|
|
|
const nodemailer = require('nodemailer');
|
|
|
|
const transporter = nodemailer.createTransport({
|
|
host: process.env.SMTP_HOST,
|
|
port: 587,
|
|
secure: false, // Use STARTTLS
|
|
auth: {
|
|
user: process.env.SMTP_USER,
|
|
pass: process.env.SMTP_PASS
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Send Discord linking email to subscriber
|
|
* @param {string} name - Customer name
|
|
* @param {string} email - Customer email address
|
|
* @param {string} token - Secure linking token
|
|
* @returns {Promise} - Nodemailer send result
|
|
*/
|
|
async function sendLinkingEmail(name, email, token) {
|
|
const link = `${process.env.APP_URL}/link?token=${token}`;
|
|
|
|
const textBody = `Hi ${name},
|
|
|
|
Thanks for subscribing to Firefrost Gaming!
|
|
|
|
To access your game servers, please connect your Discord account:
|
|
|
|
${link}
|
|
|
|
This link expires in 24 hours. Once connected, you'll see your server channels in Discord with IPs pinned at the top.
|
|
|
|
Questions? Join us in Discord: https://firefrostgaming.com/discord
|
|
|
|
- The Firefrost Team
|
|
🔥❄️`;
|
|
|
|
return transporter.sendMail({
|
|
from: `"Firefrost Gaming" <${process.env.SMTP_USER}>`,
|
|
to: email,
|
|
subject: 'Welcome to Firefrost Gaming! 🔥❄️ One More Step...',
|
|
text: textBody
|
|
});
|
|
}
|
|
|
|
module.exports = { sendLinkingEmail };
|