-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvaildateDuplicate.ts
52 lines (46 loc) ยท 1.47 KB
/
vaildateDuplicate.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { Context, APIGatewayProxyResult, APIGatewayEvent } from 'aws-lambda';
import { validateDuplicate } from './mongo-modules';
interface QueryStringParam {
username: string;
}
interface ModifiedAPIGatewayEvent {
queryStringParameters: QueryStringParam;
}
export const handler = async (event: ModifiedAPIGatewayEvent, context: Context): Promise<APIGatewayProxyResult> => {
try {
const { username } = event.queryStringParameters || {};
if (typeof username === 'undefined' || username.length === 0) {
return {
statusCode : 400,
body : JSON.stringify({
message : 'Missing username.',
result : false,
}),
};
}
const data = await validateDuplicate(username);
if (data === null) {
return {
statusCode : 200,
body : JSON.stringify({
message : 'valid username',
result : true,
}),
};
} else {
return {
statusCode : 400,
body : JSON.stringify({
message : 'Invalid username',
result: false,
}),
};
}
} catch (err) {
console.error(err);
return {
statusCode : 500,
body : JSON.stringify({ message : err instanceof Error ? err.message : err }),
};
}
};