Spaces:
Sleeping
Sleeping
File size: 15,839 Bytes
639bb77 89f0680 639bb77 89f0680 639bb77 89f0680 639bb77 211e90e 639bb77 89f0680 639bb77 89f0680 639bb77 89f0680 639bb77 89f0680 639bb77 89f0680 639bb77 | 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 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | import {
Injectable,
UnauthorizedException,
BadRequestException,
ConflictException,
Logger,
} from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
import { JwtService } from '@nestjs/jwt';
import { SupabaseService } from '../../database/supabase.service';
import { RedisService } from '../../redis/redis.service';
import { RedisKeys } from '../../redis/keys';
import {
LoginDto,
RegisterDto,
RefreshTokenDto,
UpdateProfileDto,
ChangePasswordDto,
} from './dto';
interface TokenPayload {
sub: string;
email: string;
}
interface AuthTokens {
accessToken: string;
refreshToken: string;
expiresIn: number;
}
@Injectable()
export class AuthService {
private readonly logger = new Logger(AuthService.name);
constructor(
private supabaseService: SupabaseService,
private jwtService: JwtService,
private configService: ConfigService,
private redisService: RedisService,
) {}
private readonly usernameColors = [
'Đỏ gạch', 'Cam đất', 'Vàng mù tạt', 'Vàng chanh', 'Xanh lá bơ',
'Xanh ngọc nhạt', 'Xanh dương nhạt', 'Xanh biển', 'Tím nhạt', 'Hồng phấn',
'Hồng tím', 'Xanh cổ vịt', 'Xanh rêu', 'Xanh denim', 'Tím oải hương',
'Xám xanh', 'Nâu đất', 'Đỏ san hô', 'Vàng nắng', 'Xanh lá mạ',
'Xanh ngọc', 'Xanh dương', 'Tím hoa cà', 'Hồng đào', 'Xám bạc',
'Xanh rừng', 'Xanh biển sâu', 'Tím đậm', 'Cam neon', 'Vàng tươi',
'Hồng nhạt', 'Xanh ngọc bích',
];
private getRandomColor(): string {
return this.usernameColors[Math.floor(Math.random() * this.usernameColors.length)];
}
async register(dto: RegisterDto) {
const { email, password, displayName, username, avatar, color } = dto;
// Auto-generate username from email if not provided
const finalUsername = username || await this.generateUniqueUsername(email);
// Check if email already exists
const { data: existingUser, error: existingError } =
await this.supabaseService
.from('profiles')
.select('id')
.eq('email', email)
.limit(1)
.maybeSingle();
if (existingError && !existingError.message?.includes('0 rows')) {
this.logger.error('Failed to check existing user:', existingError.message);
throw new BadRequestException('Failed to register user');
}
if (existingUser) {
throw new ConflictException('Email already registered');
}
// Check if username already exists
const { data: existingUsername, error: usernameError } =
await this.supabaseService
.from('profiles')
.select('id')
.eq('username', finalUsername.toLowerCase())
.limit(1)
.maybeSingle();
if (usernameError && !usernameError.message?.includes('0 rows')) {
this.logger.error('Failed to check existing username:', usernameError.message);
throw new BadRequestException('Failed to register user');
}
if (existingUsername) {
throw new ConflictException('Username already taken');
}
// Create user in Supabase Auth
const { data: authData, error: authError } =
await this.supabaseService.signUp(email, password);
if (authError) {
this.logger.error(
'Failed to create user in Supabase Auth:',
authError.message,
);
throw new BadRequestException(authError.message);
}
if (!authData.user) {
throw new BadRequestException('Failed to create user');
}
// Create profile in database
const { data: profile, error: profileError } = await this.supabaseService
.from('profiles')
.insert({
id: authData.user.id,
email,
username: finalUsername.toLowerCase(),
display_name: displayName,
avatar_url: avatar,
color: color || this.getRandomColor(),
})
.select()
.single();
if (profileError) {
this.logger.error('Failed to create profile:', profileError.message);
// Try to clean up the auth user
await this.supabaseService
.getClient()
.auth.admin.deleteUser(authData.user.id);
throw new BadRequestException('Failed to create user profile');
}
// Generate tokens
const tokens = await this.generateTokens(authData.user.id, email);
// Store session in Redis
await this.storeSession(authData.user.id, tokens);
return {
user: this.formatUser(profile),
...tokens,
};
}
async login(dto: LoginDto, ip?: string) {
const { email, password } = dto;
this.logger.log(`Login attempt for ${email} from ${ip || 'unknown'}`);
// Check rate limit
if (ip) {
const rateKey = RedisKeys.rateLimit.login(ip);
const attempts = await this.redisService.incr(rateKey);
if (attempts === 1) {
await this.redisService.expire(rateKey, 3600); // 1 hour
}
if (attempts > 5) {
throw new UnauthorizedException(
'Too many login attempts. Please try again later.',
);
}
}
// Sign in with Supabase
const { data: authData, error: authError } =
await this.supabaseService.signIn(email, password);
if (authError || !authData.user) {
this.logger.error(
'Login signIn failed:',
authError?.message || 'No user returned',
);
throw new UnauthorizedException('Invalid email or password');
}
// Get user profile
const { data: profile, error: profileError } = await this.supabaseService
.from('profiles')
.select('*')
.eq('id', authData.user.id)
.limit(1)
.maybeSingle();
if (profileError || !profile) {
this.logger.error(
'Login profile lookup failed for user',
authData.user.id,
profileError?.message || 'No profile found',
);
throw new UnauthorizedException('User profile not found');
}
// Generate tokens
const tokens = await this.generateTokens(authData.user.id, email);
// Store session in Redis
await this.storeSession(authData.user.id, tokens);
// Reset rate limit on successful login
if (ip) {
await this.redisService.del(RedisKeys.rateLimit.login(ip));
}
return {
user: this.formatUser(profile),
...tokens,
};
}
async logout(userId: string, token: string) {
if (!userId) {
throw new UnauthorizedException('Invalid user ID');
}
// Remove session from Redis
await this.redisService.del(RedisKeys.session(userId));
await this.redisService.del(RedisKeys.refreshToken(userId));
// Sign out from Supabase (optional, as token validation is done via JWT)
await this.supabaseService.signOut(token);
return { message: 'Logged out successfully' };
}
async refreshToken(dto: RefreshTokenDto): Promise<AuthTokens> {
const { refreshToken } = dto;
try {
// Verify the refresh token
const payload = this.jwtService.verify(refreshToken, {
secret: this.configService.get<string>('jwt.refreshSecret'),
});
// Check if refresh token is stored in Redis
const storedToken = await this.redisService.get(
RedisKeys.refreshToken(payload.sub),
);
if (!storedToken || storedToken !== refreshToken) {
throw new UnauthorizedException('Invalid refresh token');
}
// Generate new tokens
const tokens = await this.generateTokens(payload.sub, payload.email);
// Update session in Redis
await this.storeSession(payload.sub, tokens);
return tokens;
} catch (error) {
throw new UnauthorizedException('Invalid or expired refresh token');
}
}
async getProfile(userId: string) {
const cacheKey = RedisKeys.user.profile(userId);
// Try to get from cache first (Hash)
const cached = await this.redisService.hgetall(cacheKey);
if (cached && Object.keys(cached).length > 0) {
return {
user: {
id: cached.id,
email: cached.email || undefined,
username: cached.username || undefined,
displayName: cached.display_name || undefined,
avatar: cached.avatar_url || undefined,
bio: cached.bio || undefined,
color: cached.color || undefined,
status: cached.status || undefined,
lastSeen: cached.last_seen || undefined,
createdAt: cached.created_at || undefined,
updatedAt: cached.updated_at || undefined,
},
};
}
// Get from database
const { data: profile, error } = await this.supabaseService
.from('profiles')
.select('*')
.eq('id', userId)
.single();
if (error || !profile) {
throw new UnauthorizedException('User not found');
}
// Cache profile as Hash for 1 hour
await this.redisService.hset(cacheKey, {
id: String(profile.id),
email: String(profile.email || ''),
username: String(profile.username || ''),
display_name: String(profile.display_name || ''),
avatar_url: String(profile.avatar_url || ''),
bio: String(profile.bio || ''),
color: String(profile.color || ''),
status: String(profile.status || ''),
last_seen: String(profile.last_seen || ''),
created_at: String(profile.created_at || ''),
updated_at: String(profile.updated_at || ''),
});
await this.redisService.expire(cacheKey, 3600);
return { user: this.formatUser(profile) };
}
async updateProfile(userId: string, dto: UpdateProfileDto) {
const updateData: Record<string, string> = {};
if (dto.displayName) updateData.display_name = dto.displayName;
// Username cannot be changed after registration
// if (dto.username) { ... }
if (dto.avatar !== undefined) updateData.avatar_url = dto.avatar;
if (dto.bio !== undefined) updateData.bio = dto.bio;
if (dto.color !== undefined) updateData.color = dto.color;
updateData.updated_at = new Date().toISOString();
const { data: profile, error } = await this.supabaseService
.from('profiles')
.update(updateData)
.eq('id', userId)
.select()
.single();
if (error) {
throw new BadRequestException('Failed to update profile');
}
// Invalidate cache
await this.redisService.del(RedisKeys.user.profile(userId));
return { user: this.formatUser(profile) };
}
async changePassword(userId: string, dto: ChangePasswordDto) {
// Get user email to verify current password
const { data: profile, error: profileError } = await this.supabaseService
.from('profiles')
.select('email')
.eq('id', userId)
.single();
if (profileError || !profile) {
throw new BadRequestException('User not found');
}
// Verify current password
const { error: signInError } = await this.supabaseService.signIn(
profile.email,
dto.currentPassword,
);
if (signInError) {
throw new UnauthorizedException('Invalid current password');
}
// Update password via Supabase Admin API
const { error } = await this.supabaseService
.getClient()
.auth.admin.updateUserById(userId, {
password: dto.newPassword,
});
if (error) {
throw new BadRequestException('Failed to change password');
}
// Invalidate all sessions
await this.redisService.del(RedisKeys.session(userId));
await this.redisService.del(RedisKeys.refreshToken(userId));
return { message: 'Password changed successfully' };
}
async forgotPassword(email: string) {
const { error } = await this.supabaseService
.getClient()
.auth.resetPasswordForEmail(email, {
redirectTo: `${this.configService.get<string>('app.frontendUrl')}/reset-password`,
});
if (error) {
this.logger.error('Failed to send password reset email:', error.message);
}
// Always return success to prevent email enumeration
return {
message: 'If the email exists, a password reset link has been sent',
};
}
private async generateTokens(
userId: string,
email: string,
): Promise<AuthTokens> {
const payload: TokenPayload = { sub: userId, email };
const accessToken = this.jwtService.sign(payload, {
secret: this.configService.get<string>('jwt.secret'),
expiresIn: this.configService.get<string>(
'jwt.accessExpiration',
) as `${number}${'s' | 'm' | 'h' | 'd'}`,
});
const refreshToken = this.jwtService.sign(payload, {
secret: this.configService.get<string>('jwt.refreshSecret'),
expiresIn: this.configService.get<string>(
'jwt.refreshExpiration',
) as `${number}${'s' | 'm' | 'h' | 'd'}`,
});
// Parse expiration time
const expiresIn = this.parseExpiration(
this.configService.get<string>('jwt.accessExpiration', '15m'),
);
return {
accessToken,
refreshToken,
expiresIn,
};
}
private async storeSession(
userId: string,
tokens: AuthTokens,
): Promise<void> {
const sessionData = {
token: tokens.accessToken,
refreshToken: tokens.refreshToken,
createdAt: Date.now().toString(),
lastActive: Date.now().toString(),
};
// Store session with TTL (access token lifetime)
const accessTtl = this.parseExpiration(
this.configService.get<string>('jwt.accessExpiration', '15m'),
);
await this.redisService.hset(RedisKeys.session(userId), sessionData);
await this.redisService.expire(RedisKeys.session(userId), accessTtl);
// Store refresh token with TTL (7 days)
const refreshTtl = this.parseExpiration(
this.configService.get<string>('jwt.refreshExpiration', '7d'),
);
await this.redisService.set(
RedisKeys.refreshToken(userId),
tokens.refreshToken,
refreshTtl,
);
}
private parseExpiration(expiration: string): number {
const match = expiration.match(/^(\d+)([smhd])$/);
if (!match) return 900; // Default 15 minutes
const value = parseInt(match[1], 10);
const unit = match[2];
const multipliers: Record<string, number> = {
s: 1,
m: 60,
h: 3600,
d: 86400,
};
return value * (multipliers[unit] || 60);
}
private async generateUniqueUsername(email: string): Promise<string> {
const localPart = email.split('@')[0];
const baseUsername = localPart.toLowerCase().replace(/[^a-z0-9]/g, '_').substring(0, 26);
// Check if base username is available
const { data: existing } = await this.supabaseService
.from('profiles')
.select('id')
.eq('username', baseUsername)
.limit(1)
.maybeSingle();
if (!existing) {
return baseUsername;
}
// Find next available number suffix
let suffix = 1;
const maxAttempts = 9999;
while (suffix <= maxAttempts) {
const usernameWithSuffix = `${baseUsername}_${suffix}`;
const { data: existingWithSuffix } = await this.supabaseService
.from('profiles')
.select('id')
.eq('username', usernameWithSuffix)
.limit(1)
.maybeSingle();
if (!existingWithSuffix) {
return usernameWithSuffix;
}
suffix++;
}
// Fallback: add random suffix if all numbers taken
const randomSuffix = Math.floor(Math.random() * 10000);
return `${baseUsername}_${randomSuffix}`;
}
private formatUser(profile: Record<string, unknown>) {
return {
id: profile.id,
email: profile.email,
username: profile.username,
displayName: profile.display_name,
avatar: profile.avatar_url,
bio: profile.bio,
color: profile.color,
status: profile.status,
lastSeen: profile.last_seen,
createdAt: profile.created_at,
updatedAt: profile.updated_at,
};
}
}
|