forked from denoland/fresh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.ts
More file actions
370 lines (328 loc) · 10.1 KB
/
context.ts
File metadata and controls
370 lines (328 loc) · 10.1 KB
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
import {
type AnyComponent,
type ComponentType,
Fragment,
type FunctionComponent,
h,
isValidElement,
type VNode,
} from "preact";
import { jsxTemplate } from "preact/jsx-runtime";
import { SpanStatusCode } from "@opentelemetry/api";
import type { ResolvedFreshConfig } from "./config.ts";
import type { BuildCache } from "./build_cache.ts";
import type { LayoutConfig } from "./types.ts";
import {
FreshScripts,
RenderState,
setRenderState,
} from "./runtime/server/preact_hooks.ts";
import { DEV_ERROR_OVERLAY_URL, PARTIAL_SEARCH_PARAM } from "./constants.ts";
import { tracer } from "./otel.ts";
import {
type ComponentDef,
isAsyncAnyComponent,
type PageProps,
renderAsyncAnyComponent,
renderRouteComponent,
} from "./render.ts";
import { renderToString } from "preact-render-to-string";
export interface Island {
file: string;
name: string;
exportName: string;
fn: ComponentType;
css: string[];
}
export type ServerIslandRegistry = Map<ComponentType, Island>;
export const internals: unique symbol = Symbol("fresh_internal");
export interface UiTree<Data, State> {
app: AnyComponent<PageProps<Data, State>> | null;
layouts: ComponentDef<Data, State>[];
}
/**
* @deprecated Use {@linkcode Context} instead.
*/
export type FreshContext<State = unknown> = Context<State>;
export let getBuildCache: <T>(ctx: Context<T>) => BuildCache<T>;
export let getInternals: <T>(ctx: Context<T>) => UiTree<unknown, T>;
/**
* The context passed to every middleware. It is unique for every request.
*/
export class Context<State> {
#internal: UiTree<unknown, State> = {
app: null,
layouts: [],
};
/** Reference to the resolved Fresh configuration */
readonly config: ResolvedFreshConfig;
/**
* The request url parsed into an `URL` instance. This is typically used
* to apply logic based on the pathname of the incoming url or when
* certain search parameters are set.
*/
readonly url: URL;
/** The original incoming `Request` object` */
readonly request: Request;
/** @deprecated This is an alias for internal use only. Use {@linkcode FreshContext[request]} instead. */
readonly req: Request;
/** The matched route pattern. */
readonly route: string | null;
/** The url parameters of the matched route pattern. */
readonly params: Record<string, string>;
/** State object that is shared with all middlewares. */
readonly state: State = {} as State;
data: unknown = undefined;
/** Error value if an error was caught (Default: null) */
error: unknown | null = null;
readonly info: Deno.ServeHandlerInfo | Deno.ServeHandlerInfo;
/**
* Whether the current Request is a partial request.
*
* Partials in Fresh will append the query parameter
* {@linkcode PARTIAL_SEARCH_PARAM} to the URL. This property can
* be used to determine if only `<Partial>`'s need to be rendered.
*/
readonly isPartial: boolean;
/**
* Call the next middleware.
* ```ts
* const myMiddleware: Middleware = (ctx) => {
* // do something
*
* // Call the next middleware
* return ctx.next();
* }
*
* const myMiddleware2: Middleware = async (ctx) => {
* // do something before the next middleware
* doSomething()
*
* const res = await ctx.next();
*
* // do something after the middleware
* doSomethingAfter()
*
* // Return the `Response`
* return res
* }
*/
next: () => Promise<Response>;
#buildCache: BuildCache<State>;
Component!: FunctionComponent;
static {
// deno-lint-ignore no-explicit-any
getInternals = <T>(ctx: Context<T>) => ctx.#internal as any;
getBuildCache = <T>(ctx: Context<T>) => ctx.#buildCache;
}
constructor(
request: Request,
url: URL,
info: Deno.ServeHandlerInfo,
route: string | null,
params: Record<string, string>,
config: ResolvedFreshConfig,
next: () => Promise<Response>,
buildCache: BuildCache<State>,
) {
this.url = url;
this.request = request;
this.req = request;
this.info = info;
this.params = params;
this.route = route;
this.config = config;
this.isPartial = url.searchParams.has(PARTIAL_SEARCH_PARAM);
this.next = next;
this.#buildCache = buildCache;
}
/**
* Return a redirect response to the specified path. This is the
* preferred way to do redirects in Fresh.
*
* ```ts
* ctx.redirect("/foo/bar") // redirect user to "<yoursite>/foo/bar"
*
* // Disallows protocol relative URLs for improved security. This
* // redirects the user to `<yoursite>/evil.com` which is safe,
* // instead of redirecting to `http://evil.com`.
* ctx.redirect("//evil.com/");
* ```
*/
redirect(pathOrUrl: string, status = 302): Response {
let location = pathOrUrl;
// Disallow protocol relative URLs
if (pathOrUrl !== "/" && pathOrUrl.startsWith("/")) {
let idx = pathOrUrl.indexOf("?");
if (idx === -1) {
idx = pathOrUrl.indexOf("#");
}
const pathname = idx > -1 ? pathOrUrl.slice(0, idx) : pathOrUrl;
const search = idx > -1 ? pathOrUrl.slice(idx) : "";
// Remove double slashes to prevent open redirect vulnerability.
location = `${pathname.replaceAll(/\/+/g, "/")}${search}`;
}
return new Response(null, {
status,
headers: {
location,
},
});
}
/**
* Render JSX and return an HTML `Response` instance.
* ```tsx
* ctx.render(<h1>hello world</h1>);
* ```
*/
async render(
// deno-lint-ignore no-explicit-any
vnode: VNode<any> | null,
init: ResponseInit | undefined = {},
config: LayoutConfig = {},
): Promise<Response> {
if (arguments.length === 0) {
throw new Error(`No arguments passed to: ctx.render()`);
} else if (vnode !== null && !isValidElement(vnode)) {
throw new Error(`Non-JSX element passed to: ctx.render()`);
}
const defs = config.skipInheritedLayouts ? [] : this.#internal.layouts;
const appDef = config.skipAppWrapper ? null : this.#internal.app;
const props = this as Context<State>;
// Compose final vnode tree
for (let i = defs.length - 1; i >= 0; i--) {
const child = vnode;
props.Component = () => child;
const def = defs[i];
const result = await renderRouteComponent(this, def, () => child);
if (result instanceof Response) {
return result;
}
vnode = result;
}
let appChild = vnode;
// deno-lint-ignore no-explicit-any
let appVNode: VNode<any>;
let hasApp = true;
if (isAsyncAnyComponent(appDef)) {
props.Component = () => appChild;
const result = await renderAsyncAnyComponent(appDef, props);
if (result instanceof Response) {
return result;
}
appVNode = result;
} else if (appDef !== null) {
appVNode = h(appDef, {
Component: () => appChild,
config: this.config,
data: null,
error: this.error,
info: this.info,
isPartial: this.isPartial,
params: this.params,
req: this.req,
state: this.state,
url: this.url,
});
} else {
hasApp = false;
appVNode = appChild ?? h(Fragment, null);
}
const headers = init.headers !== undefined
? init.headers instanceof Headers
? init.headers
: new Headers(init.headers)
: new Headers();
headers.set("Content-Type", "text/html; charset=utf-8");
const responseInit: ResponseInit = {
status: init.status ?? 200,
headers,
statusText: init.statusText,
};
let partialId = "";
if (this.url.searchParams.has(PARTIAL_SEARCH_PARAM)) {
partialId = crypto.randomUUID();
headers.set("X-Fresh-Id", partialId);
}
const html = tracer.startActiveSpan("render", (span) => {
span.setAttribute("fresh.span_type", "render");
const state = new RenderState(
this,
this.#buildCache,
partialId,
);
try {
setRenderState(state);
let html = renderToString(
vnode ?? h(Fragment, null),
);
if (hasApp) {
appChild = jsxTemplate([html]);
html = renderToString(appVNode);
}
if (
!state.renderedHtmlBody || !state.renderedHtmlHead ||
!state.renderedHtmlTag
) {
let fallback: VNode = jsxTemplate([html]);
if (!state.renderedHtmlBody) {
let scripts: VNode | null = null;
if (
this.url.pathname !== this.config.basePath + DEV_ERROR_OVERLAY_URL
) {
scripts = h(FreshScripts, null) as VNode;
}
fallback = h("body", null, fallback, scripts);
}
if (!state.renderedHtmlHead) {
fallback = h(
Fragment,
null,
h("head", null, h("meta", { charset: "utf-8" })),
fallback,
);
}
if (!state.renderedHtmlTag) {
fallback = h("html", null, fallback);
}
html = renderToString(fallback);
}
return `<!DOCTYPE html>${html}`;
} catch (err) {
if (err instanceof Error) {
span.recordException(err);
} else {
span.setStatus({
code: SpanStatusCode.ERROR,
message: String(err),
});
}
throw err;
} finally {
// Add preload headers
const basePath = this.config.basePath;
const runtimeUrl = state.buildCache.clientEntry.startsWith(".")
? state.buildCache.clientEntry.slice(1)
: state.buildCache.clientEntry;
let link = `<${
encodeURI(`${basePath}${runtimeUrl}`)
}>; rel="modulepreload"; as="script"`;
state.islands.forEach((island) => {
const specifier = `${basePath}${
island.file.startsWith(".") ? island.file.slice(1) : island.file
}`;
link += `, <${
encodeURI(specifier)
}>; rel="modulepreload"; as="script"`;
});
if (link !== "") {
headers.append("Link", link);
}
state.clear();
setRenderState(null);
span.end();
}
});
return new Response(html, responseInit);
}
}