47 lines
1.8 KiB
TypeScript
47 lines
1.8 KiB
TypeScript
import { verifyMinglarAdminHostToken } from '../../../../../common/middlewares/jwt/authForMinglarAdminHost';
|
|
import { APIGatewayProxyEvent, APIGatewayProxyResult, Context } from 'aws-lambda';
|
|
import { prismaClient } from '../../../../../common/database/prisma.lambda.service';
|
|
import { safeHandler } from '../../../../../common/utils/handlers/safeHandler';
|
|
import ApiError from '../../../../../common/utils/helper/ApiError';
|
|
import { HostService } from '../../../services/host.service';
|
|
|
|
const hostService = new HostService(prismaClient);
|
|
export const handler = safeHandler(async (
|
|
event: APIGatewayProxyEvent,
|
|
context?: Context
|
|
): Promise<APIGatewayProxyResult> => {
|
|
// Extract token from headers
|
|
const token = event.headers['x-auth-token'] || event.headers['X-Auth-Token'];
|
|
if (!token) {
|
|
throw new ApiError(400, 'This is a protected route. Please provide a valid token.');
|
|
}
|
|
|
|
// Verify token and get user info
|
|
const userInfo = await verifyMinglarAdminHostToken(token);
|
|
const userId = Number(userInfo.id);
|
|
|
|
const question_xid = Number(event.queryStringParameters?.question_xid);
|
|
const activity_xid = Number(event.queryStringParameters?.activity_xid);
|
|
|
|
if (!question_xid || !activity_xid) {
|
|
throw new ApiError(400, "Question and activity xid are required.")
|
|
}
|
|
|
|
// Fetch user with their HostHeader stepper info
|
|
const pqqQuestionDetails = await hostService.getPQQQuestionDetail(question_xid, activity_xid);
|
|
|
|
return {
|
|
statusCode: 200,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Access-Control-Allow-Origin': '*',
|
|
},
|
|
body: JSON.stringify({
|
|
success: true,
|
|
message: 'Stepper information retrieved successfully',
|
|
data: pqqQuestionDetails,
|
|
}),
|
|
};
|
|
});
|
|
|