deno.land / x / opine@2.3.4 / src / response.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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
// deno-lint-ignore-file no-explicit-any no-this-aliasimport { contentDisposition } from "./utils/contentDisposition.ts";import { stringify } from "./utils/stringify.ts";import { normalizeType, normalizeTypes } from "./utils/normalizeType.ts";import { hasCookieNameProperty, hasCookieRequiredProperties,} from "./utils/cookies.ts";import { send, sendError } from "./utils/send.ts";import { contentType, Cookie, encodeUrl, escapeHtml, extname, fromFileUrl, isAbsolute, resolve, setCookie, Status, STATUS_TEXT, vary,} from "../deps.ts";import type { Application, CookieOptions, CookieWithOptionalValue, DenoResponseBody, NextFunction, OpineRequest, OpineResponse, ResponseBody,} from "../src/types.ts";
/** * OpineResponse class. * * @public */export class Response implements OpineResponse { status: Status = 200; headers: Headers = new Headers(); written = false; body!: DenoResponseBody; app!: Application; req!: OpineRequest; locals!: any;
#resources: number[] = [];
/** * Add a resource ID to the list of resources to be * closed after the .end() method has been called. * * @param {number} rid Resource ID * @public */ addResource(rid: number): void { this.#resources.push(rid); }
/** * Append additional header `field` with value `val`. * Value can be either a `string` or an array of `string`. * * Example: * * res.append('Set-Cookie', 'foo=bar; Path=/; HttpOnly'); * res.append('Warning', '199 Miscellaneous warning'); * res.append("cache-control", ["public", "max-age=604800", "immutable"]); * * @param {string} field * @param {string|string[]} value * @return {OpineResponse} for chaining * @public */ append(field: string, value: string | string[]): this { if (Array.isArray(value)) { for (let i = 0, len = value.length; i < len; i++) { this.headers.append(field, value[i]); } } else { this.headers.append(field, value); }
return this; }
/** * Set _Content-Disposition_ header to _attachment_ with optional `filename`. * * @param {string} filename * @return {OpineResponse} for chaining * @public */ attachment(filename: string): this { if (filename) { this.type(extname(filename)); }
this.set("Content-Disposition", contentDisposition("attachment", filename));
return this; }
/** * Set a cookie. Sets the cookie path to "/" if not defined. * * Examples: * * // "Remember Me" for 15 minutes * res.cookie({ name: "rememberme", value: "1", expires: new Date(Date.now() + 900000), httpOnly: true }); * * @param {Cookie} cookie * @return {OpineResponse} for chaining * @public */ cookie(name: string, value: string, options: CookieOptions): this; cookie(cookie: Cookie): this; cookie(nameOrCookie: unknown): this { let cookie: Cookie;
if (typeof nameOrCookie === "string") { cookie = { ...arguments[2], name: nameOrCookie, value: arguments[1] ?? "", }; } else if (hasCookieRequiredProperties(nameOrCookie)) { cookie = nameOrCookie; } else { throw new TypeError( "response.cookie, args provided do not match one of the supported signatures: " + Array.prototype.join.call(arguments, ", "), ); }
if (cookie.path == null) { cookie.path = "/"; }
setCookie(this.headers, cookie);
return this; }
/** * Clear a cookie. * * @param {string|CookieWithOptionalValue} cookie * @return {OpineResponse} for chaining * @public */ clearCookie(cookie: CookieWithOptionalValue): this; clearCookie(name: string, options?: CookieOptions): this; clearCookie(nameOrCookie: unknown): this { if (typeof nameOrCookie === "string") { setCookie( this.headers, { path: "/", ...arguments[1], value: "", expires: new Date(0), name: nameOrCookie, }, ); } else if (hasCookieNameProperty(nameOrCookie)) { setCookie(this.headers, { path: "/", ...nameOrCookie, value: "", expires: new Date(0), }); } else { throw new TypeError( "res.clearCookie, args provided do not match one of the supported signatures: " + Array.prototype.join.call(arguments, ", "), ); }
return this; }
/** * Transfer the file at the given `path` as an attachment. * * Optionally providing an alternate attachment `filename`. * * Optionally providing an `options` object to use with `res.sendFile()`. * * This function will set the `Content-Disposition` header, overriding * any existing `Content-Disposition` header in order to set the attachment * and filename. * * This method uses `res.sendFile()`. * * @param {string} path * @param {string} [filename] * @param {object} [options] * @return {Promise<OpineResponse>} * @public */ async download( path: string, filename?: string, options?: any, ): Promise<this | void> { const headers: { [key: string]: string } = { "Content-Disposition": contentDisposition("attachment", filename || path), };
// Merge user-provided headers if (options?.headers) { const keys = Object.keys(options.headers);
for (let i = 0; i < keys.length; i++) { const key = keys[i];
if (key.toLowerCase() !== "content-disposition") { headers[key] = options.headers[key]; } } }
// Merge user-provided options options = { ...options, headers, };
const fullPath = resolve( path.startsWith("file:") ? fromFileUrl(path) : path, );
// Send file return await this.sendFile(fullPath, options); }
/** * Ends the response process. * * @param {DenoResponseBody} body * @return {Promise<void>} * @public */ async end(body?: DenoResponseBody): Promise<void> { if (body) { this.body = body; }
this.written = true;
try { await this.req.respond(this); } catch (e) { // Connection might have been already closed if ( !(e instanceof Deno.errors.BadResource || e instanceof Deno.errors.BrokenPipe) ) { throw e; } }
for (const rid of this.#resources) { try { Deno.close(rid); } catch (e) { // Resource might have been already closed if (!(e instanceof Deno.errors.BadResource)) { throw e; } } }
this.#resources = []; }
/** * Sets an ETag header. * * @param {string|Uint8Array|Deno.FileInfo} chunk * @returns {OpineResponse} for chaining * @public */ etag(chunk: string | Uint8Array | Deno.FileInfo): this { const etagFn = this.app.get("etag fn");
if (typeof etagFn === "function" && typeof (chunk as any).length) { const etag = etagFn(chunk);
if (etag) { this.set("ETag", etag); } }
return this; }
/** * Respond to the Acceptable formats using an `obj` * of mime-type callbacks. * * This method uses `req.accepted`, an array of * acceptable types ordered by their quality values. * When "Accept" is not present the _first_ callback * is invoked, otherwise the first match is used. When * no match is performed the server responds with * 406 "Not Acceptable". * * Content-Type is set for you, however if you choose * you may alter this within the callback using `res.type()` * or `res.set('Content-Type', ...)`. * * res.format({ * 'text/plain': function(){ * res.send('hey'); * }, * * 'text/html': function(){ * res.send('<p>hey</p>'); * }, * * 'application/json': function(){ * res.send({ message: 'hey' }); * } * }); * * In addition to canonicalized MIME types you may * also use extnames mapped to these types: * * res.format({ * text: function(){ * res.send('hey'); * }, * * html: function(){ * res.send('<p>hey</p>'); * }, * * json: function(){ * res.send({ message: 'hey' }); * } * }); * * By default Express passes an `Error` * with a `.status` of 406 to `next(err)` * if a match is not made. If you provide * a `.default` callback it will be invoked * instead. * * @param {Object} obj * @return {OpineResponse} for chaining * @public */ format(obj: any): this { const req = this.req; const next = req.next as NextFunction;
const { default: fn, ...rest } = obj; const keys = Object.keys(rest); const accepts = keys.length > 0 ? req.accepts(keys) : false;
this.vary("Accept");
if (accepts) { const key = Array.isArray(accepts) ? accepts[0] : accepts; this.set("Content-Type", normalizeType(key).value); obj[key](req, this, next); } else if (fn) { fn(); } else { const err = new Error("Not Acceptable") as any; err.status = err.statusCode = 406; err.types = normalizeTypes(keys).map(function (o) { return o.value; });
next(err); }
return this; }
/** * Get value for header `field`. * * @param {string} field * @return {string} the header * @public */ get(field: string): string { return this.headers.get(field.toLowerCase()) || ""; }
/** * Send JSON response. * * Examples: * * res.json(null); * res.json({ user: 'deno' }); * * @param {ResponseBody} body * @return {OpineResponse} for chaining * @public */ json(body: ResponseBody): this { const app = this.app; const replacer = app.get("json replacer"); const spaces = app.get("json spaces"); const escape = app.get("json escape"); body = stringify(body, replacer, spaces, escape);
if (!this.get("Content-Type")) { this.type("application/json"); }
return this.send(body); }
/** * Send JSON response with JSONP callback support. * * Examples: * * res.jsonp(null); * res.jsonp({ user: 'deno' }); * * @param {ResponseBody} body * @return {OpineResponse} for chaining * @public */ jsonp(body: ResponseBody) { const app = this.app; const replacer = app.get("json replacer"); const spaces = app.get("json spaces"); const escape = app.get("json escape"); body = stringify(body, replacer, spaces, escape);
let callback = this.req.query[app.get("jsonp callback name")];
if (Array.isArray(callback)) { callback = callback[0]; }
if (typeof callback === "string" && callback.length !== 0) { this.set("X-Content-Type-Options", "nosniff"); this.type("text/javascript");
// restrict callback charset callback = callback.replace(/[^\[\]\w$.]/g, "");
// replace chars not allowed in JavaScript that are in JSON body = body .replace(/\u2028/g, "\\u2028") .replace(/\u2029/g, "\\u2029");
// the /**/ is a specific security mitigation for "Rosetta Flash JSONP abuse" // the typeof check is just to reduce client error noise body = `/**/ typeof ${callback} === 'function' && ${callback}(${body});`; } else if (!this.get("Content-Type")) { this.set("X-Content-Type-Options", "nosniff"); this.set("Content-Type", "application/json"); }
return this.send(body); }
/** * Set Link header field with the given `links`. * * Examples: * * res.links({ * next: 'http://api.example.com/users?page=2', * last: 'http://api.example.com/users?page=5' * }); * * @param {any} links * @return {OpineResponse} for chaining * @public */ links(links: any) { let currentLink = this.get("Link");
if (currentLink) { currentLink += ", "; }
const link = currentLink + Object.entries(links).map(([rel, field]) => `<${field}>; rel="${rel}"`) .join(", ");
return this.set("Link", link); }
/** * Set the location header to `url`. * * The given `url` can also be "back", which redirects * to the _Referrer_ or _Referer_ headers or "/". * * Examples: * * res.location('/foo/bar').; * res.location('http://example.com'); * res.location('../login'); * * @param {string} url * @return {OpineResponse} for chaining * @public */ location(url: string): this { const loc = url === "back" ? (this.req.get("Referrer") || "/") : url;
// set location return this.set("Location", encodeUrl(loc)); }
/** * Redirect to the given `url` with optional response `status` * defaulting to `302`. * * The resulting `url` is determined by `res.location()`. * * Examples: * * res.redirect('/foo/bar'); * res.redirect('http://example.com'); * res.redirect(301, 'http://example.com'); * res.redirect('../login'); // /blog/post/1 -> /blog/login * * @param {Status} statusCode * @param {string} url * @public */ redirect(url: string): void; redirect(statusCode: Status, url: string): void; redirect() { let address: string; let body = ""; let status: Status;
if (arguments.length === 0) { throw new TypeError("res.redirect: requires a location url"); } else if (arguments.length === 1) { address = arguments[0] + ""; status = 302; } else { if (typeof arguments[0] !== "number" || Number.isNaN(arguments[0])) { throw new TypeError( "res.redirect: expected status code to be a valid number", ); }
address = arguments[1] + ""; status = arguments[0]; }
// Set location header address = this.location(address).get("Location");
// Support text/{plain,html} by default this.format({ text: function _renderRedirectBody() { body = `${STATUS_TEXT[status]}. Redirecting to ${address}`; },
html: function _renderRedirectHtmlBody() { const u = escapeHtml(address); body = `<p>${ STATUS_TEXT[status] }. Redirecting to <a href="${u}">${u}</a></p>`; },
default: function _renderDefaultRedirectBody() { body = ""; }, });
// Respond this.status = status;
if (this.req.method === "HEAD") { this.end(); } else { this.end(body); } }
/** * Remove a header from the response * * Examples: * * res.removeHeader('Accept'); * @param {string} field * @return {OpineResponse} for chaining * @public */ removeHeader(field: string): this { this.headers.has(field) && this.headers.delete(field); return this; }
/** * Render `view` with the given `options` and optional callback `fn`. * When a callback function is given a response will _not_ be made * automatically, otherwise a response of _200_ and _text/html_ is given. * * Options: * * - `cache` boolean hinting to the engine it should cache * - `filename` filename of the view being rendered * * @public */ render(view: string, options: any = {}, callback?: any) { const app = this.req.app; const req = this.req; const self = this; let done = callback;
// support callback function as second arg if (typeof options === "function") { done = options; options = {}; }
// merge res.locals options._locals = self.locals;
// default callback to respond done = done || function (err: unknown, str: string) { if (err) { return req.next!(err); }
self.send(str); };
// render app.render(view, options, done); }
/** * Send a response. * * Examples: * * res.send({ some: 'json' }); * res.send('<p>some html</p>'); * * @param {ResponseBody} body * @return {OpineResponse} for chaining * @public */ send(body: ResponseBody): this { let chunk: DenoResponseBody; const isUndefined = body === undefined;
if (isUndefined || body === null) { body = ""; }
switch (typeof body) { case "string": chunk = body; break; case "boolean": case "number": return this.json(body); case "object": default: if ( body instanceof Uint8Array || typeof (body as Deno.Reader).read === "function" || typeof (body as ReadableStream).getReader === "function" ) { chunk = body as Uint8Array | Deno.Reader | ReadableStream;
if (!this.get("Content-Type")) { this.type("bin"); } } else { return this.json(body); } }
if (typeof chunk === "string" && !this.get("Content-Type")) { this.type("html"); }
if ( !this.get("ETag") && (typeof chunk === "string" || chunk instanceof Uint8Array) && !isUndefined ) { this.etag(chunk); }
if (this.req.fresh) { this.status = 304; }
if (this.status === 204 || this.status === 304) { this.unset("Content-Type"); this.unset("Content-Length"); this.unset("Transfer-Encoding");
chunk = ""; }
if (this.req.method === "HEAD") { this.end(); } else { this.end(chunk); }
return this; }
/** * Transfer the file at the given `path`. * * Automatically sets the _Content-Type_ response header field. * * @param {string} path * @param {object} [options] * @return {Promise<OpineResponse>} * @public */ async sendFile(path: string, options: any = {}): Promise<this | void> { if (!path) { throw new TypeError("path argument is required to res.sendFile"); } else if (typeof path !== "string") { throw new TypeError("path must be a string to res.sendFile"); }
path = path.startsWith("file:") ? fromFileUrl(path) : path;
if (!options.root && !isAbsolute(path)) { throw new TypeError( "path must be absolute or specify root to res.sendFile", ); }
const onDirectory = async () => { let stat: Deno.FileInfo;
try { stat = await Deno.stat(path); } catch (err) { return sendError(this, err); }
if (stat.isDirectory) { return sendError(this); } };
options.onDirectory = onDirectory;
if (options.headers) { const obj = options.headers; const keys = Object.keys(obj);
for (let i = 0; i < keys.length; i++) { const k = keys[i]; this.set(k, obj[k]); } }
return await send(this.req as OpineRequest, this, path, options); }
/** * Send given HTTP status code. * * Sets the response status to `code` and the body of the * response to the standard description from deno's http_status.STATUS_TEXT * or the code number if no description. * * Examples: * * res.sendStatus(200); * * @param {Status} code * @return {OpineResponse} for chaining * @public */ sendStatus(code: Status): this { const body: string = STATUS_TEXT[code] || String(code);
this.setStatus(code); this.type("txt");
return this.send(body); }
/** * Set header `field` to `value`, or pass * an object of header fields. * * Examples: * * res.set('Accept', 'application/json'); * res.set({ * 'Accept-Language': 'en-US, en;q=0.5', * 'Accept': 'text/html', * }); * @param {string} field * @param {string} value * @return {OpineResponse} for chaining * @public */ set(field: string, value: string): this; set(obj: Record<string, string>): this; set(field: unknown, value?: unknown): this { if (arguments.length === 2) { const lowerCaseField = (field + "").toLowerCase(); const coercedVal = value + "";
if (lowerCaseField === "content-type") { this.type(coercedVal); } else { this.headers.set(lowerCaseField, coercedVal); } } else if (typeof field === "object" && field) { const entries = Object.entries(field);
for (const [key, val] of entries) { this.set(key, val); } }
return this; }
/** * Set header `field` to `value`, or pass * an object of header fields. * * alias for res.set() * * Examples: * * res.setHeader('Accept', 'application/json'); * res.setHeader({ * 'Accept-Language': "en-US, en;q=0.5", * 'Accept': 'text/html', * }); * @param {string} field * @param {string} value * @return {OpineResponse} for chaining * @public */ setHeader(field: string, value: string): this; setHeader(obj: Record<string, string>): this; setHeader(field: unknown, value?: unknown): this { return this.set(field as any, value as any); }
/** * Set status `code`. * * This method deviates from Express due to the naming clash * with Deno.OpineResponse `status` property. * * @param {Status} code * @return {OpineResponse} for chaining * @public */ setStatus(code: Status): this { this.status = code;
return this; }
/** * Set _Content-Type_ response header with `type`. * * Examples: * * res.type('.html'); * res.type('html'); * res.type('json'); * res.type('application/json'); * res.type('png'); * * @param {string} type * @return {OpineResponse} for chaining * @public */ type(type: string): this { const ct = contentType(type) || "application/octet-stream"; this.headers.set("content-type", ct);
return this; }
/** * Deletes a header. * * @param {string} field * @return {OpineResponse} for chaining * @public */ unset(field: string): this { this.headers.delete(field);
return this; }
/** * Add `field` to Vary. If already present in the Vary set, then * this call is simply ignored. * * @param {Array|String} field * @return {OpineResponse} for chaining * @public */ vary(field: string | string[]): this { vary(this.headers, field);
return this; }}
opine

Version Info

Tagged at
a year ago