Spaces:
Running
Running
File size: 13,478 Bytes
f78b36a 9d53e35 f78b36a 9d53e35 f78b36a 1687bb1 f78b36a 131aa2a f78b36a 131aa2a f78b36a 131aa2a f78b36a 131aa2a f78b36a 131aa2a f78b36a 1687bb1 f78b36a 1687bb1 f78b36a 131aa2a f78b36a 9d53e35 f78b36a 1687bb1 f78b36a 131aa2a f78b36a a133601 f78b36a a133601 f78b36a c35b446 1687bb1 f78b36a 1687bb1 c35b446 1687bb1 f78b36a 1687bb1 f78b36a c35b446 f78b36a c35b446 f78b36a | 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 | import {
Injectable,
UnauthorizedException,
ConflictException,
Logger,
NotFoundException,
} from "@nestjs/common";
import { JwtService } from "@nestjs/jwt";
import { ConfigService } from "@nestjs/config";
import * as bcrypt from "bcrypt";
import * as crypto from "crypto";
import { PrismaService } from "../database/prisma.service";
import { RegisterDto } from "./dto/register.dto";
import { LoginDto } from "./dto/login.dto";
import { AuthResponseDto } from "./dto/auth-response.dto";
import { ForgotPasswordDto } from "./dto/forgot-password.dto";
import { ResetPasswordDto } from "./dto/reset-password.dto";
import { NotificationsService } from "../notifications/notifications.service";
import { EmailService } from "../email/email.service";
/**
* Authentication Service
*
* CLINICAL SAFETY PRINCIPLES:
* - Minimal PII storage
* - No health data in auth tables
* - No credential logging
* - Secure password hashing (bcrypt)
* - JWT-based stateless authentication
* - Refresh token rotation for security
*/
@Injectable()
export class AuthService {
private readonly logger = new Logger(AuthService.name);
private readonly SALT_ROUNDS = 10;
constructor(
private readonly prisma: PrismaService,
private readonly jwtService: JwtService,
private readonly configService: ConfigService,
private readonly notificationsService: NotificationsService,
private readonly emailService: EmailService,
) {}
/**
* Forgot password request
*/
async forgotPassword(forgotPasswordDto: ForgotPasswordDto): Promise<void> {
const { email, phone } = forgotPasswordDto;
if (!email && !phone) {
this.logger.warn("Forgot password attempt with no email or phone");
return;
}
// Find user — build conditions dynamically to avoid empty {} matching all rows
const conditions: any[] = [];
if (email)
conditions.push({
email: { equals: email.toLowerCase(), mode: "insensitive" },
});
if (phone) conditions.push({ phone });
const user = await this.prisma.userAuth.findFirst({
where: conditions.length === 1 ? conditions[0] : { OR: conditions },
});
if (!user) {
// Don't reveal if user exists for security
this.logger.warn(
`Forgot password attempt for non-existent user: ${email || phone}`,
);
return;
}
// Generate token (valid for 1 hour)
const token = crypto.randomBytes(32).toString("hex");
const expires = new Date();
expires.setHours(expires.getHours() + 1);
// Save token
await this.prisma.userAuth.update({
where: { id: user.id },
data: {
passwordResetToken: token,
passwordResetExpiresAt: expires,
},
});
// Send reset message (via notification service)
await this.notificationsService.sendResetPasswordNotification(
user.id,
token,
);
this.logger.log(`Password reset token generated for user: ${user.id}`);
}
/**
* Reset password with token
*/
async resetPassword(resetPasswordDto: ResetPasswordDto): Promise<void> {
const { token, newPassword } = resetPasswordDto;
// Find user with valid token
const user = await this.prisma.userAuth.findFirst({
where: {
passwordResetToken: token,
passwordResetExpiresAt: { gt: new Date() },
},
});
if (!user) {
throw new UnauthorizedException("Invalid or expired reset token");
}
// Hash new password
const passwordHash = await bcrypt.hash(newPassword, this.SALT_ROUNDS);
// Update user
await this.prisma.userAuth.update({
where: { id: user.id },
data: {
passwordHash,
passwordResetToken: null,
passwordResetExpiresAt: null,
refreshToken: null, // Force logout from all devices
status: "ACTIVE",
},
});
this.logger.log(`Password reset successful for user: ${user.id}`);
}
/**
* Setup initial password for new users
*/
async setupPassword(token: string, password: string): Promise<void> {
// Find user with valid setup token
const user = await this.prisma.userAuth.findFirst({
where: {
passwordSetupToken: token,
passwordSetupExpiresAt: { gt: new Date() },
},
});
if (!user) {
throw new UnauthorizedException("Invalid or expired setup token");
}
// Hash new password
const passwordHash = await bcrypt.hash(password, this.SALT_ROUNDS);
// Update user
await this.prisma.userAuth.update({
where: { id: user.id },
data: {
passwordHash,
passwordSetupToken: null,
passwordSetupExpiresAt: null,
status: "ACTIVE",
},
});
this.logger.log(`Password setup successful for user: ${user.id}`);
}
/**
* Register a new user
*
* CONSTRAINTS:
* - Email OR phone required (not both)
* - Password must be at least 8 characters
* - No duplicate email/phone
*/
async register(registerDto: RegisterDto): Promise<AuthResponseDto> {
this.logger.log(
`Registration attempt for: ${registerDto.email || registerDto.phone}`,
);
const { email, phone, password } = registerDto;
// Validate that at least one identifier is provided
if (!email && !phone) {
throw new ConflictException("Either email or phone must be provided");
}
// Check for existing user — build conditions dynamically
const conditions: any[] = [];
const normalizedEmail = email?.toLowerCase();
if (normalizedEmail)
conditions.push({
email: { equals: normalizedEmail, mode: "insensitive" },
});
if (phone) conditions.push({ phone });
const existingUser = await this.prisma.userAuth.findFirst({
where: conditions.length === 1 ? conditions[0] : { OR: conditions },
});
if (existingUser) {
throw new ConflictException(
"User with this email or phone already exists",
);
}
// Hash password (NEVER log the password)
const passwordHash = await bcrypt.hash(password, this.SALT_ROUNDS);
// Create user
try {
const user = await this.prisma.userAuth.create({
data: {
email: normalizedEmail,
phone,
passwordHash,
status: "ACTIVE", // Patients register themselves, so set to active
},
});
this.logger.log(`New user registered: ${user.id}`);
// TRIGGER 2 — Send welcome email asynchronously
if (user.email) {
this.emailService
.sendWelcomeEmail(user.email, "Mama")
.catch((err) =>
this.logger.error(`Failed to send welcome email to ${user.email}`, err),
);
}
return this.generateTokens(user.id);
} catch (error: any) {
this.logger.error(
`Database error during registration: ${error.message}`,
error.stack,
);
throw error;
}
}
/**
* Login user
*
* CONSTRAINTS:
* - Email OR phone required
* - Password verification
* - No credential logging
*/
async login(loginDto: LoginDto): Promise<AuthResponseDto> {
const { email, phone, password } = loginDto;
// Validate that at least one identifier is provided
if (!email && !phone) {
throw new UnauthorizedException("Either email or phone must be provided");
}
// Find user — build conditions dynamically
const loginConditions: any[] = [];
if (email)
loginConditions.push({
email: { equals: email.toLowerCase(), mode: "insensitive" },
});
if (phone) loginConditions.push({ phone });
const user = await this.prisma.userAuth.findFirst({
where:
loginConditions.length === 1
? loginConditions[0]
: { OR: loginConditions },
});
if (!user) {
// Generic error to prevent user enumeration
throw new UnauthorizedException("Invalid credentials");
}
// Check user status
if (user.status === "PENDING") {
throw new UnauthorizedException(
"Your account has not been activated. Please check your email to set your password.",
);
}
if (user.status === "SUSPENDED") {
throw new UnauthorizedException("Your account has been suspended.");
}
// Check if password is set
if (!user.passwordHash) {
throw new UnauthorizedException("Please set your password first.");
}
// Verify password (NEVER log the password)
const isPasswordValid = await bcrypt.compare(password, user.passwordHash);
if (!isPasswordValid) {
throw new UnauthorizedException("Invalid credentials");
}
// Check if user is active
if (!user.isActive) {
throw new UnauthorizedException("Account is inactive");
}
this.logger.log(`User logged in: ${user.id}`);
// Generate tokens
return this.generateTokens(user.id);
}
/**
* Refresh access token
*/
async refreshToken(refreshToken: string): Promise<AuthResponseDto> {
try {
// Verify refresh token
const payload = this.jwtService.verify(refreshToken, {
secret: this.configService.get("JWT_REFRESH_SECRET"),
});
// Find user
const user = await this.prisma.userAuth.findUnique({
where: { id: payload.sub },
});
if (!user || !user.isActive) {
throw new UnauthorizedException("Invalid refresh token");
}
// Verify stored refresh token matches
if (user.refreshToken !== refreshToken) {
throw new UnauthorizedException("Invalid refresh token");
}
// Generate new tokens
return this.generateTokens(user.id);
} catch (error) {
throw new UnauthorizedException("Invalid refresh token");
}
}
/**
* Logout user by invalidating stored refresh token
*
* SECURITY:
* - Clears refresh token from database so it can no longer be used
*/
async logout(userId: string): Promise<void> {
await this.prisma.userAuth.update({
where: { id: userId },
data: {
refreshToken: null,
pushToken: null, // Clear push token on logout for security
},
});
this.logger.log(`User logged out: ${userId}`);
}
/**
* Generate JWT access and refresh tokens
*
* SECURITY:
* - Access token: short-lived (1 hour)
* - Refresh token: longer-lived (7 days)
* - Refresh token stored in database for rotation
*/
private async generateTokens(userId: string): Promise<AuthResponseDto> {
// Get user data first
const userData = await this.prisma.userAuth.findUnique({
where: { id: userId },
select: {
id: true,
email: true,
role: true,
healthcareWorker: {
select: {
id: true,
facilityId: true,
type: true,
isSuspended: true,
},
},
patient: {
select: {
id: true,
facilityId: true,
},
},
},
});
// Build JWT payload
const payload: any = {
sub: userId,
id: userData?.id,
email: userData?.email,
role: userData?.role,
};
if (userData?.healthcareWorker) {
payload.healthcareWorker = userData.healthcareWorker;
}
if (userData?.patient) {
payload.patient = userData.patient;
}
// Generate access token
const accessToken = this.jwtService.sign(payload, {
secret: this.configService.get("JWT_SECRET"),
expiresIn: this.configService.get("JWT_EXPIRATION"),
});
// Generate refresh token
const refreshToken = this.jwtService.sign({ sub: userId }, {
secret: this.configService.get("JWT_REFRESH_SECRET"),
expiresIn: this.configService.get("JWT_REFRESH_EXPIRATION"),
});
// Store refresh token in database and get full user
const user = await this.prisma.userAuth.update({
where: { id: userId },
data: { refreshToken },
select: {
id: true,
email: true,
phone: true,
isActive: true,
role: true,
healthcareWorker: {
select: {
id: true,
firstName: true,
lastName: true,
type: true,
facilityId: true,
isSuspended: true,
},
},
patient: {
select: {
id: true,
firstName: true,
lastName: true,
phone: true,
facilityId: true,
patientId: true,
},
},
},
});
return {
accessToken,
refreshToken,
userId,
user,
};
}
/**
* Validate user by ID (used by JWT strategy)
*/
async validateUser(userId: string) {
const user = await this.prisma.userAuth.findUnique({
where: { id: userId },
select: {
id: true,
email: true,
phone: true,
isActive: true,
role: true,
healthcareWorker: {
select: {
id: true,
firstName: true,
lastName: true,
type: true,
facilityId: true,
isSuspended: true,
},
},
patient: {
select: {
id: true,
firstName: true,
lastName: true,
phone: true,
facilityId: true,
patientId: true,
},
},
},
});
if (!user || !user?.isActive) {
return null;
}
return user;
}
}
|