Spaces:
Paused
Paused
File size: 13,871 Bytes
5a81b95 | 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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 | # Phase 1: Authentication & Authorization System
## π― Objective
Implement robust authentication and authorization with role-based access control (RBAC) for all API endpoints.
## π Prerequisites
- PostgreSQL migration completed (or adapt for SQLite)
- Backend services running
- Frontend matrix-frontend available
## π§ Implementation Tasks
### Task 1.1: Design Authentication Architecture
**Agent**: Backend Architect
**Priority**: Critical
**Estimated Time**: 4 hours
**Deliverables**:
- [ ] Authentication strategy document (OAuth 2.0 vs JWT)
- [ ] User role definitions (admin, standard, viewer)
- [ ] Database schema for users, roles, user_roles
- [ ] API endpoint design (/api/auth/login, /api/auth/refresh, /api/auth/logout)
**Test Cases**:
- Architecture review passes security audit
- Schema supports all defined roles
- API design follows REST best practices
### Task 1.2: Implement Database Schema
**Agent**: Backend Engineer
**Priority**: Critical
**Estimated Time**: 3 hours
**Deliverables**:
```sql
-- apps/backend/src/database/auth-schema.sql
CREATE TABLE users (
id SERIAL PRIMARY KEY,
username VARCHAR(255) UNIQUE NOT NULL,
email VARCHAR(255) UNIQUE NOT NULL,
password_hash VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE roles (
id SERIAL PRIMARY KEY,
name VARCHAR(50) UNIQUE NOT NULL,
description TEXT,
permissions JSONB
);
CREATE TABLE user_roles (
user_id INTEGER REFERENCES users(id) ON DELETE CASCADE,
role_id INTEGER REFERENCES roles(id) ON DELETE CASCADE,
PRIMARY KEY (user_id, role_id)
);
-- Seed default roles
INSERT INTO roles (name, description, permissions) VALUES
('admin', 'Full system access', '{"*": ["read", "write", "delete"]}'),
('standard', 'Standard user access', '{"memory": ["read", "write"], "srag": ["read"]}'),
('viewer', 'Read-only access', '{"*": ["read"]}');
```
**Test Cases**:
```typescript
// Test: Schema creation
await db.query('SELECT * FROM users');
await db.query('SELECT * FROM roles');
await db.query('SELECT * FROM user_roles');
// Expected: Tables exist without error
// Test: Foreign key constraints
// Insert user_role with invalid user_id -> Should fail
```
### Task 1.3: Implement Authentication Service
**Agent**: Backend Engineer
**Priority**: Critical
**Estimated Time**: 6 hours
**Deliverables**:
```typescript
// apps/backend/src/services/auth/authService.ts
import bcrypt from 'bcrypt';
import jwt from 'jsonwebtoken';
export class AuthService {
async register(username: string, email: string, password: string) {
const passwordHash = await bcrypt.hash(password, 10);
// Insert user with passwordHash
return { userId, message: 'User registered' };
}
async login(username: string, password: string) {
const user = await this.findUserByUsername(username);
if (!user) throw new Error('Invalid credentials');
const valid = await bcrypt.compare(password, user.password_hash);
if (!valid) throw new Error('Invalid credentials');
const accessToken = jwt.sign(
{ userId: user.id, username: user.username },
process.env.JWT_SECRET!,
{ expiresIn: '15m' }
);
const refreshToken = jwt.sign(
{ userId: user.id },
process.env.JWT_REFRESH_SECRET!,
{ expiresIn: '7d' }
);
return { accessToken, refreshToken, user };
}
async refreshToken(refreshToken: string) {
const payload = jwt.verify(refreshToken, process.env.JWT_REFRESH_SECRET!);
const newAccessToken = jwt.sign(
{ userId: payload.userId },
process.env.JWT_SECRET!,
{ expiresIn: '15m' }
);
return { accessToken: newAccessToken };
}
async verifyToken(token: string) {
return jwt.verify(token, process.env.JWT_SECRET!);
}
}
```
**Test Cases**:
```typescript
// Unit tests
describe('AuthService', () => {
it('should register new user with hashed password', async () => {
const result = await authService.register('testuser', 'test@example.com', 'password123');
expect(result.userId).toBeDefined();
// Verify password is hashed in DB
});
it('should login with correct credentials', async () => {
const result = await authService.login('testuser', 'password123');
expect(result.accessToken).toBeDefined();
expect(result.refreshToken).toBeDefined();
});
it('should reject invalid credentials', async () => {
await expect(authService.login('testuser', 'wrongpassword'))
.rejects.toThrow('Invalid credentials');
});
it('should refresh access token', async () => {
const { refreshToken } = await authService.login('testuser', 'password123');
const result = await authService.refreshToken(refreshToken);
expect(result.accessToken).toBeDefined();
});
});
```
### Task 1.4: Implement Authorization Middleware
**Agent**: Backend Engineer
**Priority**: Critical
**Estimated Time**: 4 hours
**Deliverables**:
```typescript
// apps/backend/src/middleware/auth.ts
import { Request, Response, NextFunction } from 'express';
import { AuthService } from '../services/auth/authService.js';
const authService = new AuthService();
export const authenticate = async (req: Request, res: Response, next: NextFunction) => {
try {
const authHeader = req.headers.authorization;
if (!authHeader || !authHeader.startsWith('Bearer ')) {
return res.status(401).json({ error: 'No token provided' });
}
const token = authHeader.substring(7);
const payload = await authService.verifyToken(token);
req.user = payload; // Attach user to request
next();
} catch (error) {
return res.status(401).json({ error: 'Invalid token' });
}
};
export const authorize = (requiredPermissions: string[]) => {
return async (req: Request, res: Response, next: NextFunction) => {
const user = req.user;
if (!user) {
return res.status(401).json({ error: 'Not authenticated' });
}
// Load user roles and check permissions
const userRoles = await authService.getUserRoles(user.userId);
const hasPermission = userRoles.some(role =>
requiredPermissions.every(perm => role.permissions[perm])
);
if (!hasPermission) {
return res.status(403).json({ error: 'Insufficient permissions' });
}
next();
};
};
```
**Test Cases**:
```typescript
// Integration tests
describe('Auth Middleware', () => {
it('should allow request with valid token', async () => {
const token = await generateValidToken();
const response = await request(app)
.get('/api/memory/entities')
.set('Authorization', `Bearer ${token}`);
expect(response.status).toBe(200);
});
it('should reject request without token', async () => {
const response = await request(app).get('/api/memory/entities');
expect(response.status).toBe(401);
});
it('should reject request with invalid token', async () => {
const response = await request(app)
.get('/api/memory/entities')
.set('Authorization', 'Bearer invalid-token');
expect(response.status).toBe(401);
});
it('should reject viewer role from writing', async () => {
const viewerToken = await generateTokenForRole('viewer');
const response = await request(app)
.post('/api/memory/ingest')
.set('Authorization', `Bearer ${viewerToken}`)
.send({ /* data */ });
expect(response.status).toBe(403);
});
it('should allow admin role full access', async () => {
const adminToken = await generateTokenForRole('admin');
const response = await request(app)
.post('/api/memory/ingest')
.set('Authorization', `Bearer ${adminToken}`)
.send({ /* data */ });
expect(response.status).toBe(200);
});
});
```
### Task 1.5: Integrate Authentication in Backend
**Agent**: Backend Engineer
**Priority**: Critical
**Estimated Time**: 3 hours
**Deliverables**:
```typescript
// apps/backend/src/index.ts - Update
import { authenticate, authorize } from './middleware/auth.js';
import { authRouter } from './services/auth/authController.js';
// Public routes (no auth required)
app.use('/api/auth', authRouter);
// Protected routes
app.use('/api/memory', authenticate, memoryRouter);
app.use('/api/srag', authenticate, sragRouter);
app.use('/api/evolution', authenticate, evolutionRouter);
app.use('/api/pal', authenticate, palRouter);
// Admin-only routes
app.use('/api/admin', authenticate, authorize(['admin']), adminRouter);
```
**Test Cases**:
- All endpoints require authentication except /api/auth/*
- Role-based access works for admin routes
- Token refresh flow works end-to-end
### Task 1.6: Frontend Login Implementation
**Agent**: Frontend Engineer
**Priority**: High
**Estimated Time**: 5 hours
**Deliverables**:
```typescript
// apps/matrix-frontend/components/LoginForm.tsx
import React, { useState } from 'react';
import { useAuth } from '../contexts/AuthContext';
export const LoginForm: React.FC = () => {
const [username, setUsername] = useState('');
const [password, setPassword] = useState('');
const { login, error } = useAuth();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
await login(username, password);
};
return (
<form onSubmit={handleSubmit}>
<input
type="text"
value={username}
onChange={(e) => setUsername(e.target.value)}
placeholder="Username"
/>
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="Password"
/>
{error && <div className="error">{error}</div>}
<button type="submit">Login</button>
</form>
);
};
// apps/matrix-frontend/contexts/AuthContext.tsx
import React, { createContext, useContext, useState, useEffect } from 'react';
interface AuthContextType {
user: User | null;
login: (username: string, password: string) => Promise<void>;
logout: () => void;
isAuthenticated: boolean;
}
const AuthContext = createContext<AuthContextType | undefined>(undefined);
export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => {
const [user, setUser] = useState<User | null>(null);
const [accessToken, setAccessToken] = useState<string | null>(
localStorage.getItem('accessToken')
);
const login = async (username: string, password: string) => {
const response = await fetch('/api/auth/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username, password }),
});
if (!response.ok) throw new Error('Login failed');
const data = await response.json();
localStorage.setItem('accessToken', data.accessToken);
localStorage.setItem('refreshToken', data.refreshToken);
setAccessToken(data.accessToken);
setUser(data.user);
};
const logout = () => {
localStorage.removeItem('accessToken');
localStorage.removeItem('refreshToken');
setAccessToken(null);
setUser(null);
};
return (
<AuthContext.Provider value={{ user, login, logout, isAuthenticated: !!user }}>
{children}
</AuthContext.Provider>
);
};
export const useAuth = () => {
const context = useContext(AuthContext);
if (!context) throw new Error('useAuth must be used within AuthProvider');
return context;
};
```
**Test Cases**:
```typescript
// E2E tests with Playwright
test('User can login successfully', async ({ page }) => {
await page.goto('http://localhost:3000');
await page.fill('input[placeholder="Username"]', 'testuser');
await page.fill('input[placeholder="Password"]', 'password123');
await page.click('button:has-text("Login")');
await expect(page).toHaveURL('http://localhost:3000/dashboard');
await expect(page.locator('.user-menu')).toContainText('testuser');
});
test('Login fails with wrong password', async ({ page }) => {
await page.goto('http://localhost:3000');
await page.fill('input[placeholder="Username"]', 'testuser');
await page.fill('input[placeholder="Password"]', 'wrongpassword');
await page.click('button:has-text("Login")');
await expect(page.locator('.error')).toContainText('Invalid credentials');
});
```
## π Success Criteria
- [ ] All API endpoints require valid JWT token
- [ ] Role-based access control working for admin/standard/viewer
- [ ] Login form functional in matrix-frontend
- [ ] Token refresh mechanism working
- [ ] All test cases passing (unit, integration, E2E)
- [ ] Security audit completed (no JWT manipulation possible)
- [ ] Documentation updated
## π Security Checklist
- [ ] Passwords hashed with bcrypt (cost factor β₯ 10)
- [ ] JWT secrets stored in environment variables
- [ ] Tokens have appropriate expiration times
- [ ] Refresh tokens stored securely (httpOnly cookies)
- [ ] CSRF protection enabled
- [ ] Rate limiting on login endpoint
- [ ] Audit logging for authentication events
## π Documentation
- [ ] API documentation updated with auth requirements
- [ ] Frontend developer guide for using AuthContext
- [ ] Admin guide for managing users and roles
- [ ] Security best practices document
## π Deployment
1. Run database migrations for auth tables
2. Seed default roles
3. Create initial admin user
4. Update environment variables with JWT secrets
5. Deploy backend with authentication middleware
6. Deploy frontend with login flow
7. Test authentication end-to-end in staging
8. Monitor logs for authentication failures
## π Agent Coordination
**Backend Architect** β Design complete β **Backend Engineer** starts implementation
**Backend Engineer** β API ready β **Frontend Engineer** integrates
**QA Engineer** β Runs all test suites
**Security Expert** β Performs security audit
**DevOps** β Sets up secrets management and deployment
---
**Next Phase**: Phase 2 - PostgreSQL Migration
|