0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 11:51:01 +01:00
hono/deno_dist/request.ts

185 lines
4.2 KiB
TypeScript
Raw Normal View History

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'
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'
import type { UnionToIntersection } from './utils/types.ts'
import { getQueryStringFromURL, getQueryParam, getQueryParams } from './utils/url.ts'
2022-07-10 17:17:29 +02:00
export class HonoRequest<P extends string = '/', I extends Input = {}> {
raw: Request
2022-07-02 08:09:45 +02:00
private paramData: Record<string, string> | undefined
private validatedData: { [K in keyof ValidationTypes]?: {} }
private queryIndex: number
2023-01-10 13:24:21 +01:00
constructor(
request: Request,
paramData?: Record<string, string> | undefined,
queryIndex: number = -1
2023-01-10 13:24:21 +01:00
) {
this.raw = request
this.paramData = paramData
2023-01-10 13:24:21 +01:00
this.queryIndex = queryIndex
this.validatedData = {}
2022-07-02 08:09:45 +02: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) {
const param = this.paramData[key]
return param ? (/\%/.test(param) ? decodeURIComponent(param) : param) : undefined
2022-07-02 08:09:45 +02:00
} else {
const decoded: Record<string, string> = {}
for (const [key, value] of Object.entries(this.paramData)) {
if (value && typeof value === 'string') {
decoded[key] = /\%/.test(value) ? decodeURIComponent(value) : value
}
}
return decoded
2022-07-02 08:09:45 +02:00
}
}
return null
}
2022-07-02 08:09:45 +02: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)
return getQueryParam(queryString, key)
}
2022-07-02 08:09:45 +02: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)
return getQueryParams(queryString, key)
}
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
})
if (name) {
2023-02-01 16:25:58 +01:00
return headerData[name.toLowerCase()]
} else {
2023-02-01 16:25:58 +01:00
return headerData
}
}
2022-07-10 17:17:29 +02: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-07-12 16:25:47 +02:00
async parseBody(): Promise<BodyData> {
2023-02-01 16:25:58 +01:00
return await parseBody(this.raw)
}
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
}
async text() {
return this.raw.text()
}
async arrayBuffer() {
return this.raw.arrayBuffer()
}
async blob() {
return this.raw.blob()
}
async formData() {
return this.raw.formData()
}
addValidatedData(type: keyof ValidationTypes, data: {}) {
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>
valid(): never
valid(type?: keyof ValidationTypes) {
if (type) {
return this.validatedData[type] as unknown
}
}
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
}