65 lines
2.0 KiB
TypeScript
65 lines
2.0 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 { HostService } from '../../../services/host.service';
|
|
import ApiError from '../../../../../common/utils/helper/ApiError';
|
|
import { verifyHostToken } from '../../../../../common/middlewares/jwt/authForHost';
|
|
|
|
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.');
|
|
}
|
|
|
|
// Authenticate user using the shared authForHost function
|
|
const userInfo = await verifyHostToken(token);
|
|
const user_xid = userInfo.id;
|
|
|
|
// Parse request body
|
|
let body: { password?: string; confirmPassword?: string };
|
|
|
|
try {
|
|
body = event.body ? JSON.parse(event.body) : {};
|
|
} catch (error) {
|
|
throw new ApiError(400, 'Invalid JSON in request body');
|
|
}
|
|
|
|
const { password, confirmPassword } = body;
|
|
|
|
if (!password || !confirmPassword) {
|
|
throw new ApiError(400, 'Password and confirm password are required');
|
|
}
|
|
|
|
// Validate password match
|
|
if (password !== confirmPassword) {
|
|
throw new ApiError(400, 'Password and confirm password do not match');
|
|
}
|
|
|
|
// Validate password length
|
|
if (password.length < 8) {
|
|
throw new ApiError(400, 'Password must be at least 8 characters long');
|
|
}
|
|
|
|
await hostService.createPassword(user_xid, password);
|
|
|
|
return {
|
|
statusCode: 200,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Access-Control-Allow-Origin': '*',
|
|
},
|
|
body: JSON.stringify({
|
|
success: true,
|
|
message: 'Password created successfully',
|
|
data: null,
|
|
}),
|
|
};
|
|
});
|
|
|