forked from Yara724/api
235 lines
8.0 KiB
TypeScript
235 lines
8.0 KiB
TypeScript
import {
|
|
Body,
|
|
Controller,
|
|
Get,
|
|
HttpException,
|
|
InternalServerErrorException,
|
|
Param,
|
|
Post,
|
|
Put,
|
|
Query,
|
|
UseGuards,
|
|
} from "@nestjs/common";
|
|
import {
|
|
ApiBearerAuth,
|
|
ApiBody,
|
|
ApiOperation,
|
|
ApiParam,
|
|
ApiResponse,
|
|
ApiTags,
|
|
} from "@nestjs/swagger";
|
|
import { ExpertFileAssignResultDto } from "src/common/dto/expert-file-assign-result.dto";
|
|
import { LocalActorAuthGuard } from "src/auth/guards/actor-local.guard";
|
|
import { RolesGuard } from "src/auth/guards/role.guard";
|
|
import { Roles } from "src/decorators/roles.decorator";
|
|
import { CurrentUser } from "src/decorators/user.decorator";
|
|
import { RoleEnum } from "src/Types&Enums/role.enum";
|
|
import { ExpertBlameService } from "./expert-blame.service";
|
|
import { ListQueryV2Dto } from "src/common/dto/list-query-v2.dto";
|
|
import {
|
|
UnifiedFileStatusReportDto,
|
|
UnifiedFileStatusReportQueryDto,
|
|
} from "src/common/dto/unified-file-status-report.dto";
|
|
import { AllRequestDtoRsV2 } from "./dto/all-request.dto";
|
|
import { SubmitReplyDto } from "./dto/reply.dto";
|
|
import { ResendRequestDto } from "./dto/resend.dto";
|
|
|
|
@ApiTags("expert-blame-panel (v2)")
|
|
@Controller("v2/expert-blame")
|
|
@ApiBearerAuth()
|
|
@UseGuards(LocalActorAuthGuard, RolesGuard)
|
|
@Roles(RoleEnum.EXPERT, RoleEnum.FIELD_EXPERT, RoleEnum.FILE_REVIEWER, RoleEnum.FILE_MAKER)
|
|
export class ExpertBlameV2Controller {
|
|
constructor(private readonly expertBlameService: ExpertBlameService) {}
|
|
|
|
@Get()
|
|
@ApiOperation({
|
|
summary: "List blame cases for expert review (V2)",
|
|
description:
|
|
"Damage experts (`expert`): tenant-scoped **DISAGREEMENT** queue (available, locked, or decided by you). " +
|
|
"Field experts (`field_expert`): all expert-initiated blame files they created (LINK + IN_PERSON). Use expert-claim for claims after blame completion. " +
|
|
"Optional query: `search`, `sortBy` (publicId | createdAt | requestNo | status), `sortOrder`, `page`, `limit`, `unifiedStatus`, `fileType` (THIRD_PARTY | CAR_BODY).",
|
|
})
|
|
@ApiResponse({ status: 200, type: AllRequestDtoRsV2 })
|
|
async findAll(
|
|
@CurrentUser() actor: any,
|
|
@Query() query: ListQueryV2Dto,
|
|
): Promise<AllRequestDtoRsV2> {
|
|
try {
|
|
return await this.expertBlameService.findAllV2(actor, query);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error ? error.message : "Failed to list blame cases",
|
|
);
|
|
}
|
|
}
|
|
|
|
@Get("report/unified-file-statuses")
|
|
@ApiOperation({
|
|
summary: "Unified file status catalog + counts (blame + linked claim)",
|
|
description:
|
|
"Calculatable statuses for this expert's blame portfolio. Filter lists with `unifiedStatus` and `fileType` query params. Optional `from` / `to` ISO dates narrow the counted portfolio.",
|
|
})
|
|
@ApiResponse({ status: 200, type: UnifiedFileStatusReportDto })
|
|
async getUnifiedFileStatusReportV2(
|
|
@CurrentUser() actor: any,
|
|
@Query() query: UnifiedFileStatusReportQueryDto,
|
|
): Promise<UnifiedFileStatusReportDto> {
|
|
try {
|
|
return await this.expertBlameService.getUnifiedFileStatusReportV2(
|
|
actor,
|
|
query,
|
|
);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error
|
|
? error.message
|
|
: "Failed to load unified file status report",
|
|
);
|
|
}
|
|
}
|
|
|
|
@Get("report/status-counts")
|
|
@ApiOperation({
|
|
summary: "Count blame cases by grouped status bucket (this field expert)",
|
|
deprecated: true,
|
|
description:
|
|
"Legacy blame-only buckets. Prefer GET report/unified-file-statuses for blame+claim calculatable statuses.",
|
|
})
|
|
async getStatusReportBucketsV2(@CurrentUser() actor: any) {
|
|
try {
|
|
return await this.expertBlameService.getStatusReportBucketsV2(actor);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error
|
|
? error.message
|
|
: "Failed to load blame status report",
|
|
);
|
|
}
|
|
}
|
|
|
|
@Get(":id")
|
|
@ApiParam({ name: "id", description: "Blame case request id" })
|
|
async findOne(@Param("id") id: string, @CurrentUser() actor: any) {
|
|
try {
|
|
return await this.expertBlameService.findOneV2(id, actor);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error
|
|
? error.message
|
|
: "Failed to get blame case details",
|
|
);
|
|
}
|
|
}
|
|
|
|
@Post(":id/assign")
|
|
@ApiOperation({
|
|
summary: "Check availability and assign blame case to this expert",
|
|
description:
|
|
"Call before opening a case from the list. Returns `assigned` when the case was free and is now locked to you, `already_assigned_to_you` when you already hold the lock, or **409** with `status=locked` when another expert is reviewing. Does not replace PUT lock — use this for list UI availability.",
|
|
})
|
|
@ApiParam({ name: "id", description: "Blame case request id" })
|
|
@ApiResponse({ status: 200, type: ExpertFileAssignResultDto })
|
|
@ApiResponse({
|
|
status: 409,
|
|
description: "Another expert is processing this case",
|
|
type: ExpertFileAssignResultDto,
|
|
})
|
|
async assignForReview(@Param("id") id: string, @CurrentUser() actor: any) {
|
|
try {
|
|
return await this.expertBlameService.assignBlameCaseForReviewV2(
|
|
id,
|
|
actor,
|
|
);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error ? error.message : "Failed to assign blame case",
|
|
);
|
|
}
|
|
}
|
|
|
|
@Put("lock/:id")
|
|
@ApiOperation({
|
|
summary: "Lock blame case for review (legacy)",
|
|
description:
|
|
"Same assignment logic as POST `:id/assign`, but returns the legacy `{ _id, lock }` shape and maps conflicts to 400 instead of 409.",
|
|
deprecated: true,
|
|
})
|
|
@ApiParam({ name: "id", description: "Blame case request id" })
|
|
async lockRequest(@Param("id") id: string, @CurrentUser() actor: any) {
|
|
try {
|
|
return await this.expertBlameService.lockRequestV2(id, actor);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error ? error.message : "Failed to lock blame case",
|
|
);
|
|
}
|
|
}
|
|
|
|
@Put("reply/resend/:id")
|
|
@ApiParam({ name: "id", description: "Blame case request id" })
|
|
@ApiBody({ type: ResendRequestDto })
|
|
async resendRequest(
|
|
@Param("id") id: string,
|
|
@Body() body: ResendRequestDto,
|
|
@CurrentUser() actor: any,
|
|
) {
|
|
try {
|
|
return await this.expertBlameService.resendRequestV2(id, body, actor);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error
|
|
? error.message
|
|
: "Failed to request document resend",
|
|
);
|
|
}
|
|
}
|
|
|
|
@Put("reply/submit/:id")
|
|
@ApiParam({ name: "id", description: "Blame case request id" })
|
|
@ApiBody({ type: SubmitReplyDto })
|
|
async submitReply(
|
|
@Param("id") id: string,
|
|
@Body() body: SubmitReplyDto,
|
|
@CurrentUser() actor: any,
|
|
) {
|
|
try {
|
|
return await this.expertBlameService.replyRequestV2(id, body, actor);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error
|
|
? error.message
|
|
: "Failed to submit expert reply",
|
|
);
|
|
}
|
|
}
|
|
|
|
@Put("reply/inPerson/:id")
|
|
@ApiParam({ name: "id", description: "Blame case request id" })
|
|
@ApiBody({ type: SubmitReplyDto })
|
|
async submitInPerson(
|
|
@Param("id") id: string,
|
|
@Body() body: SubmitReplyDto,
|
|
@CurrentUser() actor: any,
|
|
) {
|
|
try {
|
|
return await this.expertBlameService.submitInPerson(id, actor.sub);
|
|
} catch (error) {
|
|
if (error instanceof HttpException) throw error;
|
|
throw new InternalServerErrorException(
|
|
error instanceof Error
|
|
? error.message
|
|
: "Failed to submit expert reply for in person",
|
|
);
|
|
}
|
|
}
|
|
}
|