-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhandler.ts
28 lines (23 loc) · 821 Bytes
/
handler.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
import { defineHandler, UttpResponse } from 'uttp'
import { User, userSchema } from './index.js'
type MaybePromise<T> = T | Promise<T>
export interface HandlerOptions {
handleUser(user: User): MaybePromise<UttpResponse['body']>
}
export const handler = defineHandler((helpers, options: HandlerOptions) => {
return {
async handleRequest(request) {
const body = await helpers.parseBodyAsString(request.rawRequest)
if (!body) return { status: 400, body: 'must have body' }
try {
const user = userSchema.parse(JSON.parse(body))
const responseBody = await options.handleUser(user)
return { status: 200, body: responseBody }
} catch (error) {
const message = error instanceof Error ? error.message : undefined
return { status: 400, body: message }
}
},
adapterOptions: {},
}
})