Spaces:
Runtime error
Runtime error
File size: 13,030 Bytes
46252cd | 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 | import { Controller, Get, Post, Delete, Param, Query, Body, HttpCode, HttpStatus, ParseUUIDPipe } from '@nestjs/common';
import { ApiTags, ApiOperation, ApiResponse, ApiParam, ApiQuery } from '@nestjs/swagger';
import { SessionService } from './session.service';
import {
CreateSessionDto,
SessionResponseDto,
QRCodeResponseDto,
MarkChatReadDto,
DeleteChatDto,
SendChatStateDto,
RequestPairingCodeDto,
PairingCodeResponseDto,
} from './dto';
import { Session } from './entities/session.entity';
import { ChatSummary } from '../../engine/interfaces/whatsapp-engine.interface';
import { AuditService } from '../audit/audit.service';
import { AuditAction } from '../audit/entities/audit-log.entity';
import { RequireRole, CurrentApiKey, SessionScoped } from '../auth/decorators/auth.decorators';
import { ApiKey, ApiKeyRole } from '../auth/entities/api-key.entity';
@ApiTags('sessions')
@Controller('sessions')
// The `:id` route param here is a WhatsApp session id, so the ApiKeyGuard enforces a key's
// allowedSessions scope against it (other controllers' `:id` is an unrelated resource id).
@SessionScoped()
export class SessionController {
constructor(
private readonly sessionService: SessionService,
private readonly auditService: AuditService,
) {}
private transformSession(session: Session): SessionResponseDto {
return SessionResponseDto.fromEntity(session);
}
@Post()
@RequireRole(ApiKeyRole.OPERATOR)
@ApiOperation({ summary: 'Create a new WhatsApp session' })
@ApiResponse({
status: 201,
description: 'Session created',
type: SessionResponseDto,
})
@ApiResponse({ status: 409, description: 'Session name already exists' })
async create(@Body() dto: CreateSessionDto): Promise<Session> {
const session = await this.sessionService.create(dto);
await this.auditService.logInfo(AuditAction.SESSION_CREATED, {
sessionId: session.id,
sessionName: session.name,
});
return session;
}
@Get()
@ApiOperation({ summary: 'List all sessions' })
@ApiResponse({
status: 200,
description: 'List of sessions',
type: [SessionResponseDto],
})
@ApiQuery({ name: 'limit', required: false, description: 'Max sessions to return (1-1000, default 1000)' })
@ApiQuery({ name: 'offset', required: false, description: 'Number of sessions to skip (for paging)' })
async findAll(
@CurrentApiKey() apiKey?: ApiKey,
@Query('limit') limit?: string,
@Query('offset') offset?: string,
): Promise<SessionResponseDto[]> {
// Scope to the key's allowedSessions so a session-restricted key cannot enumerate every
// session. A null/empty allowlist (e.g. ADMIN) still lists all.
const sessions = await this.sessionService.findAll(apiKey?.allowedSessions, {
limit: limit ? parseInt(limit, 10) : undefined,
offset: offset ? parseInt(offset, 10) : undefined,
});
return sessions.map(s => this.transformSession(s));
}
@Get(':id')
@ApiOperation({ summary: 'Get session by ID' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({
status: 200,
description: 'Session details',
type: SessionResponseDto,
})
@ApiResponse({ status: 404, description: 'Session not found' })
async findOne(@Param('id', ParseUUIDPipe) id: string): Promise<SessionResponseDto> {
const session = await this.sessionService.findOne(id);
return this.transformSession(session);
}
@Delete(':id')
@RequireRole(ApiKeyRole.OPERATOR)
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Delete a session' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({ status: 204, description: 'Session deleted' })
@ApiResponse({ status: 404, description: 'Session not found' })
async delete(@Param('id', ParseUUIDPipe) id: string): Promise<void> {
const session = await this.sessionService.findOne(id);
await this.sessionService.delete(id);
await this.auditService.logInfo(AuditAction.SESSION_DELETED, {
sessionId: id,
sessionName: session.name,
});
}
@Post(':id/start')
@RequireRole(ApiKeyRole.OPERATOR)
@HttpCode(HttpStatus.OK)
@ApiOperation({
summary: 'Start a session and initialize WhatsApp connection',
})
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({
status: 200,
description: 'Session started',
type: SessionResponseDto,
})
@ApiResponse({ status: 400, description: 'Session already started' })
@ApiResponse({ status: 404, description: 'Session not found' })
async start(@Param('id', ParseUUIDPipe) id: string): Promise<SessionResponseDto> {
const session = await this.sessionService.start(id);
await this.auditService.logInfo(AuditAction.SESSION_STARTED, {
sessionId: session.id,
sessionName: session.name,
});
return this.transformSession(session);
}
@Post(':id/stop')
@RequireRole(ApiKeyRole.OPERATOR)
@HttpCode(HttpStatus.OK)
@ApiOperation({ summary: 'Stop a session and disconnect WhatsApp' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({
status: 200,
description: 'Session stopped',
type: SessionResponseDto,
})
@ApiResponse({ status: 404, description: 'Session not found' })
async stop(@Param('id', ParseUUIDPipe) id: string): Promise<SessionResponseDto> {
const session = await this.sessionService.stop(id);
await this.auditService.logInfo(AuditAction.SESSION_STOPPED, {
sessionId: session.id,
sessionName: session.name,
});
return this.transformSession(session);
}
@Post(':id/force-kill')
@RequireRole(ApiKeyRole.OPERATOR)
@HttpCode(HttpStatus.OK)
@ApiOperation({ summary: 'Force-kill a stuck session (SIGKILL its wedged engine, then tear it down)' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({
status: 200,
description: 'Session force-killed',
type: SessionResponseDto,
})
@ApiResponse({ status: 404, description: 'Session not found' })
async forceKill(@Param('id', ParseUUIDPipe) id: string): Promise<SessionResponseDto> {
const session = await this.sessionService.forceKill(id);
await this.auditService.logInfo(AuditAction.SESSION_FORCE_KILLED, {
sessionId: session.id,
sessionName: session.name,
});
return this.transformSession(session);
}
@Get(':id/qr')
@RequireRole(ApiKeyRole.OPERATOR)
@ApiOperation({ summary: 'Get QR code for session authentication' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({
status: 200,
description: 'QR code data',
type: QRCodeResponseDto,
})
@ApiResponse({
status: 400,
description: 'QR code not ready or session already authenticated',
})
@ApiResponse({ status: 404, description: 'Session not found' })
async getQRCode(@Param('id', ParseUUIDPipe) id: string): Promise<QRCodeResponseDto> {
const qrCode = await this.sessionService.getQRCode(id);
await this.auditService.logInfo(AuditAction.SESSION_QR_GENERATED, {
sessionId: id,
});
return qrCode;
}
@Post(':id/pairing-code')
@RequireRole(ApiKeyRole.OPERATOR)
@ApiOperation({ summary: 'Request an 8-char pairing code to link via phone number (alternative to QR)' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({ status: 201, description: 'Pairing code generated', type: PairingCodeResponseDto })
@ApiResponse({ status: 400, description: 'Session not started or already authenticated' })
@ApiResponse({ status: 404, description: 'Session not found' })
async requestPairingCode(
@Param('id', ParseUUIDPipe) id: string,
@Body() dto: RequestPairingCodeDto,
): Promise<PairingCodeResponseDto> {
return this.sessionService.requestPairingCode(id, dto.phoneNumber);
}
@Get(':id/groups')
@ApiOperation({ summary: 'Get all groups for a session' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({
status: 200,
description: 'List of groups the session is a member of',
})
@ApiResponse({ status: 400, description: 'Session not ready' })
@ApiResponse({ status: 404, description: 'Session not found' })
@ApiQuery({ name: 'limit', required: false, description: 'Max groups to return (1–1000, default 1000)' })
@ApiQuery({ name: 'offset', required: false, description: 'Number of groups to skip (for paging)' })
async getGroups(
@Param('id', ParseUUIDPipe) id: string,
@Query('limit') limit?: string,
@Query('offset') offset?: string,
): Promise<{ id: string; name: string; linkedParentJID?: string | null }[]> {
return this.sessionService.getGroups(id, {
limit: limit ? parseInt(limit, 10) : undefined,
offset: offset ? parseInt(offset, 10) : undefined,
});
}
@Get(':id/chats')
@ApiOperation({ summary: 'Get active chats for a session' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({ status: 200, description: 'List of active chats (most recent first)' })
@ApiResponse({ status: 400, description: 'Session not ready' })
@ApiResponse({ status: 404, description: 'Session not found' })
@ApiQuery({ name: 'limit', required: false, description: 'Max chats to return (1–1000, default 1000)' })
@ApiQuery({ name: 'offset', required: false, description: 'Number of chats to skip (for paging)' })
async getChats(
@Param('id', ParseUUIDPipe) id: string,
@Query('limit') limit?: string,
@Query('offset') offset?: string,
): Promise<ChatSummary[]> {
return this.sessionService.getChats(id, {
limit: limit ? parseInt(limit, 10) : undefined,
offset: offset ? parseInt(offset, 10) : undefined,
});
}
@Post(':id/chats/read')
@RequireRole(ApiKeyRole.OPERATOR)
@HttpCode(HttpStatus.OK)
@ApiOperation({ summary: 'Mark a chat as read/seen' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({ status: 200, description: 'Chat marked as read successfully' })
@ApiResponse({ status: 400, description: 'Session not ready' })
@ApiResponse({ status: 404, description: 'Session not found' })
async markChatRead(
@Param('id', ParseUUIDPipe) id: string,
@Body() dto: MarkChatReadDto,
): Promise<{ success: boolean }> {
const success = await this.sessionService.sendSeen(id, dto.chatId);
return { success };
}
@Post(':id/chats/unread')
@RequireRole(ApiKeyRole.OPERATOR)
@HttpCode(HttpStatus.OK)
@ApiOperation({ summary: 'Mark a chat as unread' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({ status: 200, description: 'Chat marked as unread successfully' })
@ApiResponse({ status: 400, description: 'Session not ready' })
@ApiResponse({ status: 404, description: 'Session not found' })
async markChatUnread(
@Param('id', ParseUUIDPipe) id: string,
@Body() dto: MarkChatReadDto,
): Promise<{ success: boolean }> {
const success = await this.sessionService.markUnread(id, dto.chatId);
return { success };
}
@Post(':id/chats/delete')
@RequireRole(ApiKeyRole.OPERATOR)
@HttpCode(HttpStatus.OK)
@ApiOperation({ summary: 'Delete a chat from the chat list (e.g. a group you have left)' })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({ status: 200, description: 'Chat deleted successfully' })
@ApiResponse({ status: 400, description: 'Session not ready' })
@ApiResponse({ status: 404, description: 'Session not found' })
async deleteChat(@Param('id', ParseUUIDPipe) id: string, @Body() dto: DeleteChatDto): Promise<{ success: boolean }> {
const success = await this.sessionService.deleteChat(id, dto.chatId);
return { success };
}
@Post(':id/chats/typing')
@RequireRole(ApiKeyRole.OPERATOR)
@HttpCode(HttpStatus.OK)
@ApiOperation({ summary: "Send a typing/recording presence indicator to a chat (or clear it with 'paused')" })
@ApiParam({ name: 'id', description: 'Session ID' })
@ApiResponse({ status: 200, description: 'Presence sent' })
@ApiResponse({ status: 404, description: 'Session not found' })
async sendChatState(
@Param('id', ParseUUIDPipe) id: string,
@Body() dto: SendChatStateDto,
): Promise<{ success: boolean }> {
await this.sessionService.sendChatState(id, dto.chatId, dto.state);
return { success: true };
}
@Get('stats/overview')
@ApiOperation({
summary: 'Get session statistics for multi-session monitoring',
})
@ApiResponse({
status: 200,
description: 'Session statistics including counts and memory usage',
})
async getStats(@CurrentApiKey() apiKey?: ApiKey): Promise<{
total: number;
active: number;
ready: number;
disconnected: number;
byStatus: Record<string, number>;
memoryUsage: { heapUsed: number; heapTotal: number; rss: number };
}> {
// Scope aggregate stats to the key's allowedSessions so a session-restricted key cannot enumerate
// global session counts/status (the route carries no :id for the guard to scope against).
return this.sessionService.getStats(apiKey?.allowedSessions);
}
}
|