File size: 6,376 Bytes
eeb9404 | 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 | /**
* Admin Users API
* GET /api/admin/users - List all users (with per-user stats)
*/
import { NextRequest, NextResponse } from 'next/server';
import { requireAuth, verifyInstanceApiKey } from '@/lib/auth/session';
import { listUsers, listUserWorkspaces, createUser, getUserByEmail, createWorkspace, setDefaultWorkspace } from '@/lib/auth/system-database';
import { hashPassword } from '@/lib/auth/passwords';
import Database from 'better-sqlite3';
import path from 'path';
import fs from 'fs';
function getDataDir(): string {
return process.env.DATA_DIR || path.join(process.cwd(), 'data');
}
/**
* Aggregate project count + last active date across all of a user's workspaces.
*/
function getUserStats(userId: string): { projectCount: number; lastActive: string | null } {
const workspaces = listUserWorkspaces(userId);
let totalProjects = 0;
let lastActive: string | null = null;
for (const ws of workspaces) {
const dbPath = path.join(getDataDir(), 'workspaces', ws.id, 'osws.sqlite');
if (!fs.existsSync(dbPath)) continue;
try {
const db = new Database(dbPath, { readonly: true });
const tableExists = db.prepare("SELECT name FROM sqlite_master WHERE type='table' AND name='projects'").get();
if (tableExists) {
totalProjects += (db.prepare('SELECT COUNT(*) as count FROM projects').get() as { count: number }).count;
const lastProject = db.prepare('SELECT updated_at FROM projects ORDER BY updated_at DESC LIMIT 1').get() as { updated_at: string } | undefined;
if (lastProject?.updated_at && (!lastActive || lastProject.updated_at > lastActive)) {
lastActive = lastProject.updated_at;
}
}
db.close();
} catch { /* skip inaccessible workspace DB */ }
}
return { projectCount: totalProjects, lastActive };
}
/**
* Recursively compute total size of a directory in bytes.
*/
function getDirectorySizeSync(dirPath: string): number {
let total = 0;
try {
const entries = fs.readdirSync(dirPath, { withFileTypes: true });
for (const entry of entries) {
const fullPath = path.join(dirPath, entry.name);
if (entry.isDirectory()) {
total += getDirectorySizeSync(fullPath);
} else if (entry.isFile()) {
total += fs.statSync(fullPath).size;
}
}
} catch { /* directory may not exist */ }
return total;
}
/**
* Calculate total storage for a user by summing all workspace data directories.
*/
function getUserStorageMb(userId: string): number {
const workspaces = listUserWorkspaces(userId);
let totalBytes = 0;
for (const ws of workspaces) {
const wsDir = path.join(getDataDir(), 'workspaces', ws.id);
totalBytes += getDirectorySizeSync(wsDir);
}
return Math.round((totalBytes / (1024 * 1024)) * 10) / 10;
}
export async function GET(request: NextRequest) {
try {
const apiSession = verifyInstanceApiKey(request);
const session = apiSession || await requireAuth();
if (!session.isAdmin) {
return NextResponse.json({ error: 'Admin access required' }, { status: 403 });
}
const users = listUsers();
// Enrich with workspace info, project stats, and storage (exclude password hash from response)
const enriched = users.map(user => {
const stats = getUserStats(user.id);
return {
id: user.id,
email: user.email,
displayName: user.display_name,
isAdmin: user.is_admin === 1,
active: user.active === 1,
workspaces: listUserWorkspaces(user.id),
projectCount: stats.projectCount,
storageMb: getUserStorageMb(user.id),
lastActive: stats.lastActive,
createdAt: user.created_at,
updatedAt: user.updated_at,
};
});
return NextResponse.json({ users: enriched });
} catch (error) {
if (error instanceof Error && error.message === 'Unauthorized') {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
return NextResponse.json({ error: 'Failed to list users' }, { status: 500 });
}
}
export async function POST(request: NextRequest) {
try {
const apiSession = verifyInstanceApiKey(request);
const session = apiSession || await requireAuth();
if (!session.isAdmin) {
return NextResponse.json({ error: 'Admin access required' }, { status: 403 });
}
const body = await request.json();
const { email, password, displayName, workspaceAssignment, workspaceId: assignWorkspaceId, isAdmin: makeAdmin } = body;
if (!email || !password) {
return NextResponse.json({ error: 'Email and password are required' }, { status: 400 });
}
// Check for existing user
const existing = getUserByEmail(email);
if (existing) {
return NextResponse.json({ error: 'A user with this email already exists' }, { status: 409 });
}
const passwordHash = await hashPassword(password);
const userId = createUser(email, passwordHash, displayName || undefined);
// Optionally promote to instance admin
if (makeAdmin) {
const { updateUser } = await import('@/lib/auth/system-database');
updateUser(userId, { active: 1 }); // updateUser doesn't support is_admin directly
const db = (await import('@/lib/auth/system-database')).getSystemDatabase();
db.prepare("UPDATE users SET is_admin = 1 WHERE id = ?").run(userId);
}
// Workspace assignment
let workspaceId: string | undefined;
if (workspaceAssignment === 'existing' && assignWorkspaceId) {
const { grantWorkspaceAccess } = await import('@/lib/auth/system-database');
grantWorkspaceAccess(userId, assignWorkspaceId, 'editor');
setDefaultWorkspace(userId, assignWorkspaceId);
workspaceId = assignWorkspaceId;
} else if (workspaceAssignment !== 'none') {
// Default: create new workspace
const workspaceName = displayName ? `${displayName}'s Workspace` : 'My Workspace';
workspaceId = createWorkspace(workspaceName, userId);
setDefaultWorkspace(userId, workspaceId);
}
return NextResponse.json({ id: userId, workspaceId }, { status: 201 });
} catch (error) {
if (error instanceof Error && error.message === 'Unauthorized') {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
return NextResponse.json({ error: 'Failed to create user' }, { status: 500 });
}
}
|