File size: 6,720 Bytes
391c43e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | /**
* Session Management for Server Mode
*
* Simple JWT-based session management using jose library
*/
import { SignJWT, jwtVerify } from 'jose';
import { cookies } from 'next/headers';
import { timingSafeEqual } from 'crypto';
import type { NextRequest } from 'next/server';
const SESSION_COOKIE_NAME = 'osw_session';
const SESSION_DURATION = 24 * 60 * 60 * 1000; // 24 hours
function getSecretKey(): Uint8Array {
const secret = process.env.SESSION_SECRET;
if (!secret) {
throw new Error('SESSION_SECRET environment variable not set');
}
return new TextEncoder().encode(secret);
}
export interface SessionData {
userId: string;
email: string;
isAdmin: boolean;
exp: number;
}
/**
* Create a new session token
*/
export async function createSession(userId: string, email: string, isAdmin = false): Promise<string> {
const secret = getSecretKey();
const exp = Math.floor((Date.now() + SESSION_DURATION) / 1000);
const token = await new SignJWT({
userId,
email,
isAdmin,
})
.setProtectedHeader({ alg: 'HS256' })
.setExpirationTime(exp)
.setIssuedAt()
.sign(secret);
return token;
}
/**
* Verify and decode a session token
*/
export async function verifySession(token: string): Promise<SessionData | null> {
try {
const secret = getSecretKey();
const { payload } = await jwtVerify(token, secret);
return {
userId: payload.userId as string,
email: payload.email as string,
isAdmin: payload.isAdmin as boolean,
exp: payload.exp as number,
};
} catch (error) {
return null;
}
}
/**
* Returns a refreshed token if the session is past the halfway point of its
* lifetime, otherwise null (keep the existing cookie).
*
* Used by middleware to extend active sessions without re-issuing a cookie on
* every single request.
*/
export async function maybeRefreshSession(session: SessionData): Promise<string | null> {
const nowSec = Math.floor(Date.now() / 1000);
const remainingMs = (session.exp - nowSec) * 1000;
if (remainingMs > SESSION_DURATION / 2) return null;
return createSession(session.userId, session.email, session.isAdmin);
}
export { SESSION_COOKIE_NAME, SESSION_DURATION };
/**
* Get current session from cookies
*/
export async function getSession(): Promise<SessionData | null> {
// Desktop app: always authenticated as local admin
if (process.env.OSW_DESKTOP === 'true') {
return { userId: 'desktop', email: 'desktop@localhost', isAdmin: true, exp: 253402300799 };
}
const cookieStore = await cookies();
const token = cookieStore.get(SESSION_COOKIE_NAME)?.value;
if (!token) {
return null;
}
const session = await verifySession(token);
if (!session) return null;
// Check user is still active (prevents deactivated users from continuing)
if (session.userId !== 'admin' && session.userId !== 'desktop' && session.userId !== 'instance-api') {
try {
const { getUserById } = await import('@/lib/auth/system-database');
const user = getUserById(session.userId);
if (!user) return null;
} catch {
// System database not available (browser mode) — skip check
}
}
return session;
}
/**
* Set session cookie
*/
export async function setSessionCookie(token: string): Promise<void> {
const cookieStore = await cookies();
cookieStore.set(SESSION_COOKIE_NAME, token, {
httpOnly: true,
secure: process.env.SECURE_COOKIES !== 'false' && process.env.NODE_ENV === 'production',
sameSite: 'lax',
maxAge: SESSION_DURATION / 1000,
path: '/',
});
}
/**
* Clear session cookie
*/
export async function clearSessionCookie(): Promise<void> {
const cookieStore = await cookies();
cookieStore.delete(SESSION_COOKIE_NAME);
}
/**
* Check if user is authenticated
*/
export async function isAuthenticated(): Promise<boolean> {
const session = await getSession();
return session !== null;
}
/**
* Require authentication (throws if not authenticated)
*/
export async function requireAuth(): Promise<SessionData> {
const session = await getSession();
if (!session) {
throw new Error('Unauthorized');
}
return session;
}
/**
* Verify instance API key for machine-to-machine auth.
* Returns a synthetic admin session if the key is valid.
* When GATEWAY_IPS is set, restricts to those source IPs only.
*/
export function verifyInstanceApiKey(request: NextRequest): SessionData | null {
const apiKey = request.headers.get('x-instance-api-key');
const expectedKey = process.env.INSTANCE_API_KEY;
if (!apiKey || !expectedKey) return null;
try {
const a = Buffer.from(apiKey);
const b = Buffer.from(expectedKey);
if (a.length !== b.length || !timingSafeEqual(a, b)) return null;
} catch {
return null;
}
const allowedIps = process.env.GATEWAY_IPS;
if (allowedIps) {
const clientIp =
request.headers.get('cf-connecting-ip') ||
request.headers.get('x-real-ip') ||
request.headers.get('x-forwarded-for')?.split(',')[0]?.trim();
const allowed = new Set(allowedIps.split(',').map(ip => ip.trim()));
if (!clientIp || !allowed.has(clientIp)) return null;
}
return {
userId: 'instance-api',
email: 'api@instance',
isAdmin: true,
exp: Math.floor(Date.now() / 1000) + 3600,
};
}
/**
* Create a short-lived handoff token for external auth → instance session exchange.
* Token is a JWT valid for 30 seconds, signed with the same SESSION_SECRET.
*/
export async function createHandoffToken(userId: string): Promise<string> {
const secret = getSecretKey();
const token = await new SignJWT({
userId,
purpose: 'handoff',
jti: crypto.randomUUID(),
})
.setProtectedHeader({ alg: 'HS256' })
.setExpirationTime('30s')
.setIssuedAt()
.sign(secret);
return token;
}
// In-memory set of consumed JTIs for replay protection (auto-clears after 60s)
const consumedJTIs = new Map<string, number>();
/**
* Verify a handoff token. Returns the userId if valid, null otherwise.
* Single-use: consumed tokens are rejected.
*/
export async function verifyHandoffToken(token: string): Promise<{ userId: string } | null> {
try {
const secret = getSecretKey();
const { payload } = await jwtVerify(token, secret);
if (payload.purpose !== 'handoff') return null;
const jti = payload.jti;
if (!jti || consumedJTIs.has(jti)) return null;
// Mark as consumed
consumedJTIs.set(jti, Date.now());
// Cleanup old JTIs
const cutoff = Date.now() - 60000;
for (const [id, time] of consumedJTIs) {
if (time < cutoff) consumedJTIs.delete(id);
}
return { userId: payload.userId as string };
} catch {
return null;
}
}
|