forked from oakserver/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
request.ts
239 lines (222 loc) · 8.09 KB
/
request.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
// Copyright 2018-2021 the oak authors. All rights reserved. MIT license.
import type {
Body,
BodyBytes,
BodyForm,
BodyFormData,
BodyJson,
BodyOptions,
BodyReader,
BodyStream,
BodyText,
} from "./body.ts";
import { RequestBody } from "./body.ts";
import { NativeRequest } from "./http_server_native.ts";
import type { ServerRequest } from "./http_server_std.ts";
import type { HTTPMethods } from "./types.d.ts";
import { preferredCharsets } from "./negotiation/charset.ts";
import { preferredEncodings } from "./negotiation/encoding.ts";
import { preferredLanguages } from "./negotiation/language.ts";
import { preferredMediaTypes } from "./negotiation/mediaType.ts";
/** An interface which provides information about the current request. */
export class Request {
#body: RequestBody;
#proxy: boolean;
#secure: boolean;
#serverRequest: ServerRequest | NativeRequest;
#url?: URL;
#getRemoteAddr(): string {
return this.#serverRequest instanceof NativeRequest
? this.#serverRequest.remoteAddr ?? ""
: (this.#serverRequest.conn.remoteAddr as Deno.NetAddr).hostname;
}
/** Is `true` if the request has a body, otherwise `false`. */
get hasBody(): boolean {
return this.#body.has();
}
/** The `Headers` supplied in the request. */
get headers(): Headers {
return this.#serverRequest.headers;
}
/** Request remote address. When the application's `.proxy` is true, the
* `X-Forwarded-For` will be used to determine the requesting remote address.
*/
get ip(): string {
return this.#proxy ? this.ips[0] : this.#getRemoteAddr();
}
/** When the application's `.proxy` is `true`, this will be set to an array of
* IPs, ordered from upstream to downstream, based on the value of the header
* `X-Forwarded-For`. When `false` an empty array is returned. */
get ips(): string[] {
return this.#proxy
? (this.#serverRequest.headers.get("x-forwarded-for") ??
this.#getRemoteAddr()).split(/\s*,\s*/)
: [];
}
/** The HTTP Method used by the request. */
get method(): HTTPMethods {
return this.#serverRequest.method as HTTPMethods;
}
/** Shortcut to `request.url.protocol === "https:"`. */
get secure(): boolean {
return this.#secure;
}
/** Set to the value of the _original_ Deno server request. */
get originalRequest(): ServerRequest | NativeRequest {
return this.#serverRequest;
}
/** A parsed URL for the request which complies with the browser standards.
* When the application's `.proxy` is `true`, this value will be based off of
* the `X-Forwarded-Proto` and `X-Forwarded-Host` header values if present in
* the request. */
get url(): URL {
if (!this.#url) {
const serverRequest = this.#serverRequest;
if (serverRequest instanceof NativeRequest) {
// between 1.9.0 and 1.9.1 the request.url of the native HTTP started
// returning the full URL, where previously it only returned the path
// so we will try to use that URL here, but default back to old logic
// if the URL isn't valid.
try {
this.#url = new URL(serverRequest.rawUrl);
return this.#url;
} catch {
// we don't care about errors here
}
}
let proto: string;
let host: string;
if (this.#proxy) {
proto = serverRequest
.headers.get("x-forwarded-proto")?.split(/\s*,\s*/, 1)[0] ??
"http";
host = serverRequest.headers.get("x-forwarded-host") ??
serverRequest.headers.get("host") ?? "";
} else {
proto = this.#secure ? "https" : "http";
host = serverRequest.headers.get("host") ?? "";
}
try {
this.#url = new URL(`${proto}://${host}${serverRequest.url}`);
} catch {
throw new TypeError(
`The server request URL of "${proto}://${host}${serverRequest.url}" is invalid.`,
);
}
}
return this.#url;
}
constructor(
serverRequest: ServerRequest | NativeRequest,
proxy = false,
secure = false,
) {
this.#proxy = proxy;
this.#secure = secure;
this.#serverRequest = serverRequest;
this.#body = new RequestBody(
serverRequest instanceof NativeRequest
? serverRequest.request
: serverRequest,
);
}
/** Returns an array of media types, accepted by the requestor, in order of
* preference. If there are no encodings supplied by the requestor,
* `undefined` is returned.
*/
accepts(): string[] | undefined;
/** For a given set of media types, return the best match accepted by the
* requestor. If there are no encoding that match, then the method returns
* `undefined`.
*/
accepts(...types: string[]): string | undefined;
accepts(...types: string[]): string | string[] | undefined {
const acceptValue = this.#serverRequest.headers.get("Accept");
if (!acceptValue) {
return;
}
if (types.length) {
return preferredMediaTypes(acceptValue, types)[0];
}
return preferredMediaTypes(acceptValue);
}
/** Returns an array of charsets, accepted by the requestor, in order of
* preference. If there are no charsets supplied by the requestor,
* `undefined` is returned.
*/
acceptsCharsets(): string[] | undefined;
/** For a given set of charsets, return the best match accepted by the
* requestor. If there are no charsets that match, then the method returns
* `undefined`. */
acceptsCharsets(...charsets: string[]): string | undefined;
acceptsCharsets(...charsets: string[]): string[] | string | undefined {
const acceptCharsetValue = this.#serverRequest.headers.get(
"Accept-Charset",
);
if (!acceptCharsetValue) {
return;
}
if (charsets.length) {
return preferredCharsets(acceptCharsetValue, charsets)[0];
}
return preferredCharsets(acceptCharsetValue);
}
/** Returns an array of encodings, accepted by the requestor, in order of
* preference. If there are no encodings supplied by the requestor,
* `undefined` is returned.
*/
acceptsEncodings(): string[] | undefined;
/** For a given set of encodings, return the best match accepted by the
* requestor. If there are no encodings that match, then the method returns
* `undefined`.
*
* **NOTE:** You should always supply `identity` as one of the encodings
* to ensure that there is a match when the `Accept-Encoding` header is part
* of the request.
*/
acceptsEncodings(...encodings: string[]): string | undefined;
acceptsEncodings(...encodings: string[]): string[] | string | undefined {
const acceptEncodingValue = this.#serverRequest.headers.get(
"Accept-Encoding",
);
if (!acceptEncodingValue) {
return;
}
if (encodings.length) {
return preferredEncodings(acceptEncodingValue, encodings)[0];
}
return preferredEncodings(acceptEncodingValue);
}
/** Returns an array of languages, accepted by the requestor, in order of
* preference. If there are no languages supplied by the requestor,
* `undefined` is returned.
*/
acceptsLanguages(): string[] | undefined;
/** For a given set of languages, return the best match accepted by the
* requestor. If there are no languages that match, then the method returns
* `undefined`. */
acceptsLanguages(...langs: string[]): string | undefined;
acceptsLanguages(...langs: string[]): string[] | string | undefined {
const acceptLanguageValue = this.#serverRequest.headers.get(
"Accept-Language",
);
if (!acceptLanguageValue) {
return;
}
if (langs.length) {
return preferredLanguages(acceptLanguageValue, langs)[0];
}
return preferredLanguages(acceptLanguageValue);
}
body(options: BodyOptions<"bytes">): BodyBytes;
body(options: BodyOptions<"form">): BodyForm;
body(options: BodyOptions<"form-data">): BodyFormData;
body(options: BodyOptions<"json">): BodyJson;
body(options: BodyOptions<"reader">): BodyReader;
body(options: BodyOptions<"stream">): BodyStream;
body(options: BodyOptions<"text">): BodyText;
body(options?: BodyOptions): Body;
body(options: BodyOptions = {}): Body | BodyReader | BodyStream {
return this.#body.get(options);
}
}