feat: SMTP integration, dynamic app_settings for email, and email verification enforcement for tier upgrades

This commit is contained in:
Mohan Ki
2026-07-27 18:54:19 +05:30
parent 41e333b30e
commit b328b0429a
9 changed files with 273 additions and 2 deletions
+2
View File
@@ -5,6 +5,8 @@ CREATE TABLE IF NOT EXISTS users (
email VARCHAR(255) UNIQUE NOT NULL,
password_hash VARCHAR(255) NOT NULL,
role VARCHAR(50) DEFAULT 'free',
is_email_verified BOOLEAN DEFAULT false,
email_verification_token VARCHAR(255),
created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP
);
+6 -1
View File
@@ -11,5 +11,10 @@ INSERT INTO app_settings (key, value, category) VALUES
('icici_api_key', '', 'payments'),
('google_safe_browsing_key', '', 'security'),
('google_client_id', '', 'auth'),
('apple_service_id', '', 'auth')
('apple_service_id', '', 'auth'),
('smtp_host', 'smtp.office365.com', 'smtp'),
('smtp_port', '587', 'smtp'),
('smtp_user', 'noreply@cavininfotech.com', 'smtp'),
('smtp_pass', 'xmkshjlszjbkcyzb', 'smtp'),
('smtp_secure', 'false', 'smtp')
ON CONFLICT (key) DO NOTHING;
+10
View File
@@ -15,6 +15,7 @@
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^9.0.3",
"pg": "^8.22.0",
"qrcode": "^1.5.4",
"redis": "^6.1.0",
@@ -967,6 +968,15 @@
"node": ">= 0.6"
}
},
"node_modules/nodemailer": {
"version": "9.0.3",
"resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-9.0.3.tgz",
"integrity": "sha512-n+YP+NKwR5zRWa60k3GiQ6Q3B4KXCoAw40dAKeCtYn020iNN74aWK2liXIC3ZEATeGql7we3tE3t8QwhY0eskw==",
"license": "MIT-0",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/object-assign": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+1
View File
@@ -16,6 +16,7 @@
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^9.0.3",
"pg": "^8.22.0",
"qrcode": "^1.5.4",
"redis": "^6.1.0",
+7
View File
@@ -63,6 +63,13 @@ router.put('/users/:id/tier', async (req, res) => {
}
try {
if (role === 'pro' || role === 'enterprise') {
const userCheck = await pgPool.query('SELECT is_email_verified FROM users WHERE id = $1', [id]);
if (userCheck.rows.length === 0) return res.status(404).json({ error: 'User not found' });
if (!userCheck.rows[0].is_email_verified) {
return res.status(400).json({ error: 'Cannot upgrade tier: User email is not verified' });
}
}
const result = await pgPool.query(
'UPDATE users SET role = $1 WHERE id = $2 RETURNING id, email, role',
[role, id]
+58 -1
View File
@@ -2,7 +2,9 @@ const express = require('express');
const router = express.Router();
const bcrypt = require('bcryptjs');
const jwt = require('jsonwebtoken');
const crypto = require('crypto');
const { Pool } = require('pg');
const { sendMail } = require('../utils/emailService');
const pgPool = new Pool({
host: process.env.PGHOST || 'postgres',
@@ -72,7 +74,7 @@ router.post('/login', async (req, res) => {
const { verifyToken } = require('../middleware/auth');
router.get('/me', verifyToken, async (req, res) => {
try {
const userQuery = await pgPool.query('SELECT id, email, role FROM users WHERE id = $1', [req.user.id]);
const userQuery = await pgPool.query('SELECT id, email, role, is_email_verified FROM users WHERE id = $1', [req.user.id]);
if (userQuery.rows.length === 0) return res.status(404).json({ error: 'User not found' });
res.json({ user: userQuery.rows[0] });
} catch (err) {
@@ -81,6 +83,61 @@ router.get('/me', verifyToken, async (req, res) => {
}
});
// Send Verification Email
router.post('/send-verification', verifyToken, async (req, res) => {
try {
const userQuery = await pgPool.query('SELECT email, is_email_verified FROM users WHERE id = $1', [req.user.id]);
if (userQuery.rows.length === 0) return res.status(404).json({ error: 'User not found' });
const user = userQuery.rows[0];
if (user.is_email_verified) {
return res.status(400).json({ error: 'Email is already verified' });
}
const token = crypto.randomBytes(32).toString('hex');
await pgPool.query('UPDATE users SET email_verification_token = $1 WHERE id = $2', [token, req.user.id]);
const baseUrl = process.env.FRONTEND_URL || 'https://qr.houseofwebsites.ai';
const verifyLink = `${baseUrl}/verify-email?token=${token}`;
const html = `
<h2>Verify Your Email</h2>
<p>Thanks for using CK-QR! Please verify your email address to unlock Pro tier upgrades.</p>
<a href="${verifyLink}" style="display:inline-block;padding:10px 20px;background:#4f46e5;color:#fff;text-decoration:none;border-radius:5px;">Verify Email</a>
<p>Or copy and paste this link: <br> ${verifyLink}</p>
`;
await sendMail(user.email, 'Verify your CK-QR account', html);
res.json({ message: 'Verification email sent' });
} catch (err) {
console.error(err);
res.status(500).json({ error: 'Failed to send verification email' });
}
});
// Verify Email Token
router.get('/verify-email/:token', async (req, res) => {
const { token } = req.params;
if (!token) return res.status(400).json({ error: 'Token is required' });
try {
const result = await pgPool.query(
'UPDATE users SET is_email_verified = true, email_verification_token = NULL WHERE email_verification_token = $1 RETURNING id, email',
[token]
);
if (result.rows.length === 0) {
return res.status(400).json({ error: 'Invalid or expired token' });
}
res.json({ message: 'Email verified successfully!' });
} catch (err) {
console.error(err);
res.status(500).json({ error: 'Server error during verification' });
}
});
// Logout
router.post('/logout', (req, res) => {
res.clearCookie('token');
+19
View File
@@ -1,10 +1,29 @@
const express = require('express');
const router = express.Router();
const { Pool } = require('pg');
const pgPool = new Pool({
host: process.env.PGHOST || 'postgres',
port: process.env.PGPORT || 5432,
user: process.env.PGUSER || 'postgres',
password: process.env.PGPASSWORD || 'postgres',
database: process.env.PGDATABASE || 'ckqr',
});
// Placeholder for ICICI Payment Gateway initialization
router.post('/icici/initiate', async (req, res) => {
const { amount, plan, userId } = req.body;
try {
const userCheck = await pgPool.query('SELECT is_email_verified FROM users WHERE id = $1', [userId]);
if (userCheck.rows.length > 0 && !userCheck.rows[0].is_email_verified) {
return res.status(400).json({ error: 'Please verify your email address before upgrading your plan.' });
}
} catch (err) {
console.error('Error checking verification status', err);
return res.status(500).json({ error: 'Server error' });
}
// Here you would construct the ICICI request payload, compute checksums, etc.
// and return the URL or parameters for the frontend to redirect the user to ICICI.
+69
View File
@@ -0,0 +1,69 @@
const nodemailer = require('nodemailer');
const { Pool } = require('pg');
const pgPool = new Pool({
host: process.env.PGHOST || 'postgres',
port: process.env.PGPORT || 5432,
user: process.env.PGUSER || 'postgres',
password: process.env.PGPASSWORD || 'postgres',
database: process.env.PGDATABASE || 'ckqr',
});
// Helper to fetch SMTP settings from the database
async function getSmtpSettings() {
const result = await pgPool.query("SELECT key, value FROM app_settings WHERE category = 'smtp'");
const settings = {};
result.rows.forEach(row => {
settings[row.key] = row.value;
});
return settings;
}
// Helper to create and configure a transporter
async function getTransporter() {
const settings = await getSmtpSettings();
return nodemailer.createTransport({
host: settings.smtp_host || 'smtp.office365.com',
port: parseInt(settings.smtp_port) || 587,
secure: settings.smtp_secure === 'true', // true for 465, false for other ports
auth: {
user: settings.smtp_user,
pass: settings.smtp_pass,
},
tls: {
ciphers: 'SSLv3', // sometimes required for Office365
rejectUnauthorized: false
}
});
}
/**
* Sends an email using dynamic SMTP settings from the DB.
*
* @param {string} to - Recipient email address
* @param {string} subject - Email subject
* @param {string} html - HTML body of the email
*/
async function sendMail(to, subject, html) {
const settings = await getSmtpSettings();
const transporter = await getTransporter();
const mailOptions = {
from: `"CK-QR Support" <${settings.smtp_user}>`,
to: to,
subject: subject,
html: html
};
try {
const info = await transporter.sendMail(mailOptions);
console.log('Message sent: %s', info.messageId);
return { success: true, messageId: info.messageId };
} catch (error) {
console.error('Error sending email:', error);
throw error;
}
}
module.exports = { sendMail, getSmtpSettings };