import { Controller } from '../../../../../shared/infrastructure/http/Controller'; import { Response } from 'express'; import { GetCollectionPageUseCase } from '../../../application/useCases/queries/GetCollectionPageUseCase'; import { AuthenticatedRequest } from '../../../../../shared/infrastructure/http/middleware/AuthMiddleware'; import { CardSortField, SortOrder } from '../../../domain/ICardQueryRepository'; export class GetCollectionPageController extends Controller { constructor(private getCollectionPageUseCase: GetCollectionPageUseCase) { super(); } async executeImpl(req: AuthenticatedRequest, res: Response): Promise { try { const { collectionId } = req.params; const { page, limit, sortBy, sortOrder } = req.query; const callerDid = req.did; if (!collectionId) { return this.badRequest(res, 'Collection ID is required'); } const result = await this.getCollectionPageUseCase.execute({ collectionId, callerDid, page: page ? parseInt(page as string) : undefined, limit: limit ? parseInt(limit as string) : undefined, sortBy: sortBy as CardSortField, sortOrder: sortOrder as SortOrder, }); if (result.isErr()) { return this.fail(res, result.error); } return this.ok(res, result.value); } catch (error: any) { return this.fail(res, error); } } }