2023-01-31 22:36:48 +01:00
|
|
|
import type {
|
|
|
|
Input,
|
|
|
|
InputToDataByType,
|
|
|
|
ParamKeys,
|
|
|
|
ParamKeyToRecord,
|
|
|
|
RemoveQuestion,
|
|
|
|
UndefinedIfHavingQuestion,
|
|
|
|
ValidationTypes,
|
|
|
|
} from './types.ts'
|
2022-07-12 16:25:47 +02:00
|
|
|
import { parseBody } from './utils/body.ts'
|
2022-09-20 15:01:03 +02:00
|
|
|
import type { BodyData } from './utils/body.ts'
|
2022-07-10 17:17:29 +02:00
|
|
|
import type { Cookie } from './utils/cookie.ts'
|
|
|
|
import { parse } from './utils/cookie.ts'
|
2023-01-22 05:32:33 +01:00
|
|
|
import type { UnionToIntersection } from './utils/types.ts'
|
2023-01-17 10:30:02 +01:00
|
|
|
import { getQueryStringFromURL, getQueryParam, getQueryParams } from './utils/url.ts'
|
2022-07-10 17:17:29 +02:00
|
|
|
|
2023-01-31 22:36:48 +01:00
|
|
|
export class HonoRequest<P extends string = '/', I extends Input = {}> {
|
2022-12-20 23:05:00 +01:00
|
|
|
raw: Request
|
2022-07-02 08:09:45 +02:00
|
|
|
|
2022-12-20 23:05:00 +01:00
|
|
|
private paramData: Record<string, string> | undefined
|
2023-01-22 23:47:29 +01:00
|
|
|
private validatedData: { [K in keyof ValidationTypes]?: {} }
|
2023-01-17 10:30:02 +01:00
|
|
|
private queryIndex: number
|
2022-12-20 23:05:00 +01:00
|
|
|
|
2023-01-10 13:24:21 +01:00
|
|
|
constructor(
|
|
|
|
request: Request,
|
|
|
|
paramData?: Record<string, string> | undefined,
|
2023-01-17 10:30:02 +01:00
|
|
|
queryIndex: number = -1
|
2023-01-10 13:24:21 +01:00
|
|
|
) {
|
2022-12-20 23:05:00 +01:00
|
|
|
this.raw = request
|
|
|
|
this.paramData = paramData
|
2023-01-10 13:24:21 +01:00
|
|
|
this.queryIndex = queryIndex
|
2023-01-22 23:47:29 +01:00
|
|
|
this.validatedData = {}
|
2022-07-02 08:09:45 +02:00
|
|
|
}
|
|
|
|
|
2023-01-31 22:36:48 +01:00
|
|
|
param(key: RemoveQuestion<ParamKeys<P>>): UndefinedIfHavingQuestion<ParamKeys<P>>
|
|
|
|
param(): UnionToIntersection<ParamKeyToRecord<ParamKeys<P>>>
|
2023-01-22 06:28:13 +01:00
|
|
|
param(key?: string): unknown {
|
2022-07-02 08:09:45 +02:00
|
|
|
if (this.paramData) {
|
|
|
|
if (key) {
|
2022-12-13 17:07:07 +01:00
|
|
|
const param = this.paramData[key]
|
2023-01-22 05:59:31 +01:00
|
|
|
return param ? (/\%/.test(param) ? decodeURIComponent(param) : param) : undefined
|
2022-07-02 08:09:45 +02:00
|
|
|
} else {
|
2022-11-14 01:10:03 +01:00
|
|
|
const decoded: Record<string, string> = {}
|
|
|
|
|
|
|
|
for (const [key, value] of Object.entries(this.paramData)) {
|
2022-12-20 23:05:00 +01:00
|
|
|
if (value && typeof value === 'string') {
|
2023-01-22 05:59:31 +01:00
|
|
|
decoded[key] = /\%/.test(value) ? decodeURIComponent(value) : value
|
2022-12-13 17:07:07 +01:00
|
|
|
}
|
2022-11-14 01:10:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return decoded
|
2022-07-02 08:09:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null
|
2022-12-20 23:05:00 +01:00
|
|
|
}
|
2022-07-02 08:09:45 +02:00
|
|
|
|
2022-12-20 23:05:00 +01:00
|
|
|
query(key: string): string
|
|
|
|
query(): Record<string, string>
|
|
|
|
query(key?: string) {
|
2023-01-10 13:24:21 +01:00
|
|
|
const queryString = getQueryStringFromURL(this.url, this.queryIndex)
|
2023-01-17 10:30:02 +01:00
|
|
|
return getQueryParam(queryString, key)
|
2022-12-20 23:05:00 +01:00
|
|
|
}
|
2022-07-02 08:09:45 +02:00
|
|
|
|
2022-12-20 23:05:00 +01:00
|
|
|
queries(key: string): string[]
|
|
|
|
queries(): Record<string, string[]>
|
|
|
|
queries(key?: string) {
|
2023-01-10 13:24:21 +01:00
|
|
|
const queryString = getQueryStringFromURL(this.url, this.queryIndex)
|
2023-01-17 10:30:02 +01:00
|
|
|
return getQueryParams(queryString, key)
|
2022-12-20 23:05:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
header(name: string): string
|
|
|
|
header(): Record<string, string>
|
|
|
|
header(name?: string) {
|
2023-02-01 16:25:58 +01:00
|
|
|
const headerData: Record<string, string> = {}
|
|
|
|
this.raw.headers.forEach((value, key) => {
|
|
|
|
headerData[key] = value
|
|
|
|
})
|
2022-12-20 23:05:00 +01:00
|
|
|
if (name) {
|
2023-02-01 16:25:58 +01:00
|
|
|
return headerData[name.toLowerCase()]
|
2022-12-20 23:05:00 +01:00
|
|
|
} else {
|
2023-02-01 16:25:58 +01:00
|
|
|
return headerData
|
2022-12-20 23:05:00 +01:00
|
|
|
}
|
|
|
|
}
|
2022-07-10 17:17:29 +02:00
|
|
|
|
2022-12-20 23:05:00 +01:00
|
|
|
cookie(key: string): string | undefined
|
|
|
|
cookie(): Cookie
|
|
|
|
cookie(key?: string) {
|
|
|
|
const cookie = this.raw.headers.get('Cookie')
|
|
|
|
if (!cookie) return
|
2022-07-10 17:17:29 +02:00
|
|
|
const obj = parse(cookie)
|
|
|
|
if (key) {
|
|
|
|
const value = obj[key]
|
|
|
|
return value
|
|
|
|
} else {
|
|
|
|
return obj
|
|
|
|
}
|
2022-12-20 23:05:00 +01:00
|
|
|
}
|
2022-07-12 16:25:47 +02:00
|
|
|
|
2023-01-03 00:25:21 +01:00
|
|
|
async parseBody(): Promise<BodyData> {
|
2023-02-01 16:25:58 +01:00
|
|
|
return await parseBody(this.raw)
|
2022-12-20 23:05:00 +01:00
|
|
|
}
|
2022-09-13 00:54:06 +02:00
|
|
|
|
2023-02-01 16:25:58 +01:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
async json<T = any>(): Promise<T> {
|
|
|
|
return this.raw.json() as T
|
2022-12-20 23:05:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async text() {
|
|
|
|
return this.raw.text()
|
|
|
|
}
|
|
|
|
|
|
|
|
async arrayBuffer() {
|
|
|
|
return this.raw.arrayBuffer()
|
|
|
|
}
|
|
|
|
|
|
|
|
async blob() {
|
|
|
|
return this.raw.blob()
|
|
|
|
}
|
|
|
|
|
|
|
|
async formData() {
|
|
|
|
return this.raw.formData()
|
|
|
|
}
|
2022-09-20 03:11:34 +02:00
|
|
|
|
2023-01-22 23:47:29 +01:00
|
|
|
addValidatedData(type: keyof ValidationTypes, data: {}) {
|
2023-02-01 14:02:09 +01:00
|
|
|
this.validatedData[type] = data
|
|
|
|
}
|
|
|
|
|
|
|
|
valid<
|
|
|
|
T extends keyof ValidationTypes = I extends Record<infer R, unknown>
|
|
|
|
? R extends keyof ValidationTypes
|
|
|
|
? R
|
|
|
|
: never
|
|
|
|
: never
|
|
|
|
>(type: T): InputToDataByType<I, T>
|
2023-02-02 00:06:19 +01:00
|
|
|
valid(): never
|
|
|
|
valid(type?: keyof ValidationTypes) {
|
2023-01-22 23:47:29 +01:00
|
|
|
if (type) {
|
2023-02-01 14:02:09 +01:00
|
|
|
return this.validatedData[type] as unknown
|
2022-09-20 03:11:34 +02:00
|
|
|
}
|
2022-12-20 23:05:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
get url() {
|
|
|
|
return this.raw.url
|
|
|
|
}
|
|
|
|
get method() {
|
|
|
|
return this.raw.method
|
|
|
|
}
|
|
|
|
get headers() {
|
|
|
|
return this.raw.headers
|
|
|
|
}
|
|
|
|
get redirect() {
|
|
|
|
return this.raw.redirect
|
|
|
|
}
|
|
|
|
get body() {
|
|
|
|
return this.raw.body
|
|
|
|
}
|
|
|
|
get bodyUsed() {
|
|
|
|
return this.raw.bodyUsed
|
|
|
|
}
|
|
|
|
get cache() {
|
|
|
|
return this.raw.cache
|
|
|
|
}
|
|
|
|
get credentials() {
|
|
|
|
return this.raw.credentials
|
|
|
|
}
|
|
|
|
get integrity() {
|
|
|
|
return this.raw.integrity
|
|
|
|
}
|
|
|
|
get keepalive() {
|
|
|
|
return this.raw.keepalive
|
|
|
|
}
|
|
|
|
get mode() {
|
|
|
|
return this.raw.mode
|
|
|
|
}
|
|
|
|
get referrer() {
|
|
|
|
return this.raw.referrer
|
|
|
|
}
|
|
|
|
get refererPolicy() {
|
|
|
|
return this.raw.referrerPolicy
|
|
|
|
}
|
|
|
|
get signal() {
|
|
|
|
return this.raw.signal
|
|
|
|
}
|
2022-07-02 08:09:45 +02:00
|
|
|
}
|