Files
iios/packages/iios-service/src/support/support.controller.ts
T
maaz519 9c6e2c76e8 fix(support): agent-demo self-seeds (join default queue + go online); tickets always get a queue
Root cause of 'waiting for escalations': no queue/membership meant tickets were
never assigned. Now: createTicket find-or-creates a default queue; new joinDefault
endpoint + useGoOnline hook; agent-demo joins+goes-AVAILABLE on load (assignPending
picks up any waiting ticket). smoke-support self-seeds (no seed script needed).
Also: vitest singleFork to end cross-file DB races (45 tests deterministic).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-01 12:39:14 +05:30

82 lines
3.1 KiB
TypeScript

import { BadRequestException, Body, Controller, Get, Headers, Param, Patch, Post, Query } from '@nestjs/common';
import { IiosTicketState } from '@prisma/client';
import { SupportService } from './support.service';
import { AssignmentService } from './assignment.service';
import { SessionVerifier } from '../platform/session.verifier';
import type { MessagePrincipal } from '../identity/actor.resolver';
import {
AvailabilityDto,
CallbackDto,
CreateQueueDto,
CreateTicketDto,
EscalateDto,
PatchTicketDto,
} from './support.dto';
@Controller('v1/support')
export class SupportController {
constructor(
private readonly support: SupportService,
private readonly assignment: AssignmentService,
private readonly session: SessionVerifier,
) {}
@Post('tickets')
async createTicket(@Body() body: CreateTicketDto, @Headers('authorization') auth?: string) {
return this.support.createTicket(this.principal(auth), body);
}
@Post('escalate')
async escalate(@Body() body: EscalateDto, @Headers('authorization') auth?: string) {
return this.support.escalate(body.threadId, this.principal(auth), body.subject);
}
@Get('tickets')
async listTickets(@Query('scope') scope?: string, @Headers('authorization') auth?: string) {
return this.support.listTickets(this.principal(auth), { scope: scope === 'assigned' ? 'assigned' : 'mine' });
}
@Patch('tickets/:id')
async patchTicket(@Param('id') id: string, @Body() body: PatchTicketDto, @Headers('authorization') auth?: string) {
return this.support.transition(id, this.principal(auth), body.state as IiosTicketState, body.reason);
}
@Post('callbacks')
async callback(@Body() body: CallbackDto, @Headers('authorization') auth?: string) {
return this.support.requestCallback(this.principal(auth), {
preferChannel: body.preferChannel,
preferredTime: body.preferredTime ? new Date(body.preferredTime) : undefined,
notes: body.notes,
ticketId: body.ticketId,
});
}
// ─── admin / agent ────────────────────────────────────────────────
@Post('queues')
async createQueue(@Body() body: CreateQueueDto, @Headers('authorization') auth?: string) {
return this.assignment.createQueue(this.principal(auth), body.name);
}
@Post('queues/:id/members')
async joinQueue(@Param('id') id: string, @Headers('authorization') auth?: string) {
return this.assignment.addMember(id, this.principal(auth));
}
@Post('agents/me/join')
async joinDefault(@Headers('authorization') auth?: string) {
return this.assignment.joinDefault(this.principal(auth));
}
@Patch('members/me/availability')
async availability(@Body() body: AvailabilityDto, @Headers('authorization') auth?: string) {
return this.assignment.setAvailability(this.principal(auth), body.state);
}
private principal(authorization?: string): MessagePrincipal {
const token = (authorization ?? '').replace(/^Bearer\s+/i, '');
if (!token) throw new BadRequestException('Authorization bearer token is required');
return this.session.verify(token);
}
}