60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
|
|
import { APIGatewayProxyEvent, APIGatewayProxyResult, Context } from 'aws-lambda';
|
||
|
|
import { safeHandler } from '../../../../common/utils/handlers/safeHandler';
|
||
|
|
import { prismaClient } from '../../../../common/database/prisma.lambda.service';
|
||
|
|
import ApiError from '../../../../common/utils/helper/ApiError';
|
||
|
|
import { UserService } from '../../services/user.service';
|
||
|
|
import { verifyUserToken } from '../../../../common/middlewares/jwt/authForUser';
|
||
|
|
|
||
|
|
const userService = new UserService(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 verifyUserToken(token);
|
||
|
|
const userId = Number(userInfo.id);
|
||
|
|
|
||
|
|
if (!userId || Number.isNaN(userId)) {
|
||
|
|
throw new ApiError(400, 'Invalid user ID');
|
||
|
|
}
|
||
|
|
|
||
|
|
// Fetch 50 random active activities
|
||
|
|
const result = await userService.getRandomActiveActivity();
|
||
|
|
|
||
|
|
if (!result || result.length === 0) {
|
||
|
|
return {
|
||
|
|
statusCode: 404,
|
||
|
|
headers: {
|
||
|
|
'Content-Type': 'application/json',
|
||
|
|
'Access-Control-Allow-Origin': '*',
|
||
|
|
},
|
||
|
|
body: JSON.stringify({
|
||
|
|
success: false,
|
||
|
|
message: 'No active activities found',
|
||
|
|
data: [],
|
||
|
|
}),
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
return {
|
||
|
|
statusCode: 200,
|
||
|
|
headers: {
|
||
|
|
'Content-Type': 'application/json',
|
||
|
|
'Access-Control-Allow-Origin': '*',
|
||
|
|
},
|
||
|
|
body: JSON.stringify({
|
||
|
|
success: true,
|
||
|
|
message: 'Random active activities retrieved successfully',
|
||
|
|
data: result,
|
||
|
|
count: result.length,
|
||
|
|
}),
|
||
|
|
};
|
||
|
|
});
|