mirror of
https://git.coastit.co.za/caitlin/CRM_ENVR.git
synced 2026-07-10 11:15:43 +02:00
20a1744e7f
Database & Security: - Dual password storage: bcrypt (auth) + pgcrypto AES-256 (recovery) - SUPER_ADMIN master key recovery system (master_keys table) - Row Level Security on customers, leads, opportunities, communications, tasks - SALES_USER: own records only - ADMIN: all records - SUPER_ADMIN: all records (bypasses RLS) - Immutable audit logs (DELETE/UPDATE blocked by triggers) - New audit event types: BUG_CREATED, BUG_UPDATED, BUG_ASSIGNED, BUG_RESOLVED, LOGIN, LOGOUT - Database export logging (database_export_logs table) - Backup logging with pg_dump script (scripts/backup.ps1) - Fixed audit constraint to allow new action types Authentication: - Random JWT secret generated on every dev server start (invalidates all prior sessions after restart) - Session cookie is now session-only (no maxAge) - setSessionContext() for RLS integration Bug Reporting System: - bug_reports table with RLS (insert by all, select/update by admin only) - POST /api/bug-reports (any authenticated user) - GET /api/bug-reports (admin/super_admin only) - PATCH /api/bug-reports/:id (admin/super_admin only) - POST /api/auth/recover (super_admin password recovery) - Audit logging for all bug report actions Other: - Added 'dev' to UserRole type - Bug report modal UI with severity selector - Added bug report button to topbar
260 lines
7.5 KiB
TypeScript
260 lines
7.5 KiB
TypeScript
import { SignJWT, jwtVerify } from "jose";
|
|
import bcrypt from "bcryptjs";
|
|
import { query } from "@/lib/db";
|
|
import { cookies } from "next/headers";
|
|
|
|
const RAW_SECRET = process.env.JWT_SECRET;
|
|
if (!RAW_SECRET) {
|
|
throw new Error("JWT_SECRET environment variable is required");
|
|
}
|
|
const JWT_SECRET = new TextEncoder().encode(RAW_SECRET);
|
|
|
|
const SESSION_COOKIE = "session";
|
|
const MAX_FAILED_ATTEMPTS = 5;
|
|
const LOCKOUT_DURATION_MINUTES = 15;
|
|
|
|
export interface SessionUser {
|
|
id: string;
|
|
username: string;
|
|
email: string;
|
|
phone: string | null;
|
|
firstName: string;
|
|
lastName: string;
|
|
role: string;
|
|
avatar: string;
|
|
}
|
|
|
|
export async function hashPassword(password: string): Promise<string> {
|
|
return bcrypt.hash(password, 12);
|
|
}
|
|
|
|
export async function comparePassword(
|
|
password: string,
|
|
hash: string,
|
|
): Promise<boolean> {
|
|
return bcrypt.compare(password, hash);
|
|
}
|
|
|
|
export async function signToken(payload: { userId: string; role: string }) {
|
|
return new SignJWT(payload)
|
|
.setProtectedHeader({ alg: "HS256" })
|
|
.setExpirationTime("24h")
|
|
.setIssuedAt()
|
|
.sign(JWT_SECRET);
|
|
}
|
|
|
|
export async function verifyToken(token: string) {
|
|
try {
|
|
const { payload } = await jwtVerify(token, JWT_SECRET);
|
|
return payload as { userId: string; role: string };
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function getUserByEmail(email: string) {
|
|
const result = await query(
|
|
` SELECT u.id, u.username, u.email, u.password_hash, u.first_name, u.last_name,
|
|
u.is_active, u.is_locked, u.failed_login_attempts, u.locked_until,
|
|
u.password_change_required, u.avatar_url,
|
|
r.name AS role_name
|
|
FROM users u
|
|
JOIN user_roles ur ON ur.user_id = u.id
|
|
JOIN roles r ON r.id = ur.role_id
|
|
WHERE u.email = $1 AND u.deleted_at IS NULL
|
|
LIMIT 1`,
|
|
[email.toLowerCase().trim()],
|
|
);
|
|
return result.rows[0] || null;
|
|
}
|
|
|
|
export async function getUserByUsername(username: string) {
|
|
const result = await query(
|
|
` SELECT u.id, u.username, u.email, u.password_hash, u.first_name, u.last_name,
|
|
u.is_active, u.is_locked, u.failed_login_attempts, u.locked_until,
|
|
u.password_change_required, u.avatar_url,
|
|
r.name AS role_name
|
|
FROM users u
|
|
JOIN user_roles ur ON ur.user_id = u.id
|
|
JOIN roles r ON r.id = ur.role_id
|
|
WHERE u.username = $1 AND u.deleted_at IS NULL
|
|
LIMIT 1`,
|
|
[username.toLowerCase().trim()],
|
|
);
|
|
return result.rows[0] || null;
|
|
}
|
|
|
|
export async function getUserById(id: string) {
|
|
const result = await query(
|
|
` SELECT u.id, u.username, u.email, u.phone, u.first_name, u.last_name,
|
|
u.is_active, u.avatar_url,
|
|
r.name AS role_name
|
|
FROM users u
|
|
JOIN user_roles ur ON ur.user_id = u.id
|
|
JOIN roles r ON r.id = ur.role_id
|
|
WHERE u.id = $1 AND u.deleted_at IS NULL
|
|
LIMIT 1`,
|
|
[id],
|
|
);
|
|
return result.rows[0] || null;
|
|
}
|
|
|
|
export async function recordLoginAttempt(
|
|
userId: string | null,
|
|
usernameAttempted: string,
|
|
ipAddress: string,
|
|
userAgent: string | null,
|
|
wasSuccessful: boolean,
|
|
failureReason?: string,
|
|
) {
|
|
await query(
|
|
`INSERT INTO login_attempts (user_id, username_attempted, ip_address, user_agent, was_successful, failure_reason)
|
|
VALUES ($1, $2, $3, $4, $5, $6)`,
|
|
[
|
|
userId,
|
|
usernameAttempted,
|
|
ipAddress,
|
|
userAgent,
|
|
wasSuccessful,
|
|
failureReason || null,
|
|
],
|
|
);
|
|
}
|
|
|
|
export async function incrementFailedAttempts(userId: string) {
|
|
await query(
|
|
`UPDATE users
|
|
SET failed_login_attempts = failed_login_attempts + 1,
|
|
locked_until = CASE
|
|
WHEN failed_login_attempts + 1 >= $2
|
|
THEN NOW() + (INTERVAL '1 minute' * $3)
|
|
ELSE locked_until
|
|
END
|
|
WHERE id = $1`,
|
|
[userId, MAX_FAILED_ATTEMPTS, LOCKOUT_DURATION_MINUTES],
|
|
);
|
|
}
|
|
|
|
export async function resetFailedAttempts(userId: string) {
|
|
await query(
|
|
`UPDATE users
|
|
SET failed_login_attempts = 0,
|
|
locked_until = NULL,
|
|
last_login_at = NOW()
|
|
WHERE id = $1`,
|
|
[userId],
|
|
);
|
|
}
|
|
|
|
export async function isAccountLocked(user: {
|
|
is_locked: boolean;
|
|
locked_until: Date | null;
|
|
}): Promise<{ locked: boolean; reason?: string }> {
|
|
if (user.is_locked) {
|
|
return {
|
|
locked: true,
|
|
reason: "Account has been locked by an administrator.",
|
|
};
|
|
}
|
|
if (user.locked_until && new Date(user.locked_until) > new Date()) {
|
|
const minutes = Math.ceil(
|
|
(new Date(user.locked_until).getTime() - Date.now()) / 60000,
|
|
);
|
|
return {
|
|
locked: true,
|
|
reason: `Account is temporarily locked due to too many failed attempts. Try again in ${minutes} minute(s).`,
|
|
};
|
|
}
|
|
return { locked: false };
|
|
}
|
|
|
|
export function mapDbUserToSessionUser(
|
|
dbUser: Record<string, unknown>,
|
|
): SessionUser {
|
|
const roleName = dbUser.role_name as string;
|
|
|
|
const roleMapping: Record<string, string> = {
|
|
SUPER_ADMIN: "super_admin",
|
|
ADMIN: "admin",
|
|
SALES_USER: "sales",
|
|
DEVELOPER: "dev",
|
|
};
|
|
|
|
const avatarUrl = dbUser.avatar_url as string | null
|
|
|
|
return {
|
|
id: dbUser.id as string,
|
|
username: dbUser.username as string,
|
|
email: dbUser.email as string,
|
|
phone: (dbUser.phone as string) || null,
|
|
firstName: dbUser.first_name as string,
|
|
lastName: dbUser.last_name as string,
|
|
role: roleMapping[roleName] || roleName.toLowerCase(),
|
|
avatar: avatarUrl || (() => { const f = ((dbUser.first_name as string)?.[0] || '').toUpperCase(); const l = ((dbUser.last_name as string)?.[0] || '').toUpperCase(); return `data:image/svg+xml,${encodeURIComponent(`<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><rect width="128" height="128" fill="#1d4ed8"/><text x="64" y="80" font-size="48" fill="white" text-anchor="middle" font-family="Arial,Helvetica,sans-serif">${f}${l}</text></svg>`)}` })(),
|
|
};
|
|
}
|
|
|
|
export async function encryptPassword(password: string): Promise<string> {
|
|
const result = await query("SELECT encrypt_password($1) AS encrypted", [password]);
|
|
return result.rows[0]?.encrypted;
|
|
}
|
|
|
|
export async function decryptPassword(encrypted: string): Promise<string | null> {
|
|
try {
|
|
const result = await query("SELECT decrypt_password($1) AS decrypted", [encrypted]);
|
|
return result.rows[0]?.decrypted || null;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function setSessionContext(userId: string, ip?: string) {
|
|
await query("SELECT set_config('app.current_user_id', $1, true)", [userId]);
|
|
if (ip) {
|
|
await query("SELECT set_config('app.current_ip', $1, true)", [ip]);
|
|
}
|
|
}
|
|
|
|
export async function createSession(userId: string, role: string) {
|
|
const token = await signToken({ userId, role });
|
|
|
|
const cookieStore = await cookies();
|
|
cookieStore.set(SESSION_COOKIE, token, {
|
|
httpOnly: true,
|
|
secure: process.env.NODE_ENV === "production",
|
|
sameSite: "strict",
|
|
path: "/",
|
|
});
|
|
|
|
return token;
|
|
}
|
|
|
|
export async function destroySession() {
|
|
const cookieStore = await cookies();
|
|
cookieStore.set(SESSION_COOKIE, "", {
|
|
httpOnly: true,
|
|
secure: process.env.NODE_ENV === "production",
|
|
sameSite: "strict",
|
|
path: "/",
|
|
maxAge: 0,
|
|
});
|
|
}
|
|
|
|
export async function getSessionUser(): Promise<SessionUser | null> {
|
|
try {
|
|
const cookieStore = await cookies();
|
|
const token = cookieStore.get(SESSION_COOKIE)?.value;
|
|
if (!token) return null;
|
|
|
|
const payload = await verifyToken(token);
|
|
if (!payload) return null;
|
|
|
|
const dbUser = await getUserById(payload.userId);
|
|
if (!dbUser) return null;
|
|
|
|
return mapDbUserToSessionUser(dbUser);
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|