-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathres.go
More file actions
1153 lines (991 loc) · 33.4 KB
/
res.go
File metadata and controls
1153 lines (991 loc) · 33.4 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
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
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package fiber
import (
"bufio"
"bytes"
"fmt"
"html/template"
"io"
"io/fs"
"net/http"
"net/url"
"os"
pathpkg "path"
"path/filepath"
"strconv"
"strings"
"time"
"unicode"
"unicode/utf8"
"github.com/gofiber/utils/v2"
"github.com/valyala/bytebufferpool"
"github.com/valyala/fasthttp"
)
// SendFile defines configuration options when to transfer file with SendFile.
type SendFile struct {
// FS is the file system to serve the static files from.
// You can use interfaces compatible with fs.FS like embed.FS, os.DirFS etc.
//
// Optional. Default: nil
FS fs.FS
// When set to true, the server tries minimizing CPU usage by caching compressed files.
// This works differently than the github.com/gofiber/compression middleware.
// You have to set Content-Encoding header to compress the file.
// Available compression methods are gzip, br, and zstd.
//
// Optional. Default: false
Compress bool `json:"compress"`
// When set to true, enables byte range requests.
//
// Optional. Default: false
ByteRange bool `json:"byte_range"`
// When set to true, enables direct download.
//
// Optional. Default: false
Download bool `json:"download"`
// Expiration duration for inactive file handlers.
// Use a negative time.Duration to disable it.
//
// Optional. Default: 10 * time.Second
CacheDuration time.Duration `json:"cache_duration"`
// The value for the Cache-Control HTTP-header
// that is set on the file response. MaxAge is defined in seconds.
//
// Optional. Default: 0
MaxAge int `json:"max_age"`
}
// sendFileStore is used to keep the SendFile configuration and the handler.
type sendFileStore struct {
handler fasthttp.RequestHandler
cacheControlValue string
config SendFile
}
// configEqual compares the current SendFile config with the new one
// and returns true if they are equal.
//
// Here we don't use reflect.DeepEqual because it is quite slow compared to manual comparison.
func (sf *sendFileStore) configEqual(cfg SendFile) bool {
if sf.config.FS != cfg.FS {
return false
}
if sf.config.Compress != cfg.Compress {
return false
}
if sf.config.ByteRange != cfg.ByteRange {
return false
}
if sf.config.Download != cfg.Download {
return false
}
if sf.config.CacheDuration != cfg.CacheDuration {
return false
}
if sf.config.MaxAge != cfg.MaxAge {
return false
}
return true
}
// Cookie defines the values used when configuring cookies emitted by
// DefaultRes.Cookie.
type Cookie struct {
Expires time.Time `json:"expires"` // The expiration date of the cookie
Name string `json:"name"` // The name of the cookie
Value string `json:"value"` // The value of the cookie
Path string `json:"path"` // Specifies a URL path which is allowed to receive the cookie
Domain string `json:"domain"` // Specifies the domain which is allowed to receive the cookie
SameSite string `json:"same_site"` // Controls whether or not a cookie is sent with cross-site requests
MaxAge int `json:"max_age"` // The maximum age (in seconds) of the cookie
Secure bool `json:"secure"` // Indicates that the cookie should only be transmitted over a secure HTTPS connection
HTTPOnly bool `json:"http_only"` // Indicates that the cookie is accessible only through the HTTP protocol
Partitioned bool `json:"partitioned"` // Indicates if the cookie is stored in a partitioned cookie jar
SessionOnly bool `json:"session_only"` // Indicates if the cookie is a session-only cookie
}
// ResFmt associates a Content Type to a fiber.Handler for c.Format
type ResFmt struct {
Handler func(Ctx) error
MediaType string
}
// DefaultRes is the default implementation of Res used by DefaultCtx.
//
//go:generate ifacemaker --file res.go --struct DefaultRes --iface Res --pkg fiber --output res_interface_gen.go --not-exported true --iface-comment "Res is an interface for response-related Ctx methods."
type DefaultRes struct {
c *DefaultCtx
}
// App returns the *App reference to the instance of the Fiber application
func (r *DefaultRes) App() *App {
return r.c.app
}
// Append the specified value to the HTTP response header field.
// If the header is not already set, it creates the header with the specified value.
func (r *DefaultRes) Append(field string, values ...string) {
if len(values) == 0 {
return
}
h := r.c.app.toString(r.c.fasthttp.Response.Header.Peek(field))
originalH := h
for _, value := range values {
if h == "" {
h = value
} else if !headerContainsValue(h, value) {
h += ", " + value
}
}
if originalH != h {
r.Set(field, h)
}
}
// headerContainsValue checks if a header value already contains the given value
// as a comma-separated element. Per RFC 9110, list elements are separated by commas
// with optional whitespace (OWS) around them.
func headerContainsValue(header, value string) bool {
// Empty value should never match
if value == "" {
return false
}
// Exact match (single value header)
if header == value {
return true
}
// Check each comma-separated element, handling optional whitespace (OWS)
for part := range strings.SplitSeq(header, ",") {
if utils.TrimSpace(part) == value {
return true
}
}
return false
}
func sanitizeFilename(filename string) string {
for _, r := range filename {
if unicode.IsControl(r) {
b := make([]byte, 0, len(filename))
for _, rr := range filename {
if !unicode.IsControl(rr) {
b = utf8.AppendRune(b, rr)
}
}
return utils.TrimSpace(string(b))
}
}
return utils.TrimSpace(filename)
}
func fallbackFilenameIfInvalid(filename string) string {
if filename == "" || filename == "." {
return "download"
}
return filename
}
// Attachment sets the HTTP response Content-Disposition header field to attachment.
func (r *DefaultRes) Attachment(filename ...string) {
if len(filename) > 0 {
fname := filepath.Base(filename[0])
fname = sanitizeFilename(fname)
fname = fallbackFilenameIfInvalid(fname)
r.Type(filepath.Ext(fname))
app := r.c.app
var quoted string
if app.isASCII(fname) {
quoted = app.quoteString(fname)
} else {
quoted = app.quoteRawString(fname)
}
disp := `attachment; filename="` + quoted + `"`
if !app.isASCII(fname) {
disp += `; filename*=UTF-8''` + url.PathEscape(fname)
}
r.setCanonical(HeaderContentDisposition, disp)
return
}
r.setCanonical(HeaderContentDisposition, "attachment")
}
// ClearCookie expires a specific cookie by key on the client side.
// If no key is provided it expires all cookies that came with the request.
func (r *DefaultRes) ClearCookie(key ...string) {
request := &r.c.fasthttp.Request
response := &r.c.fasthttp.Response
if len(key) > 0 {
for i := range key {
response.Header.DelClientCookie(key[i])
}
return
}
for k := range request.Header.Cookies() {
response.Header.DelClientCookieBytes(k)
}
}
// RequestCtx returns *fasthttp.RequestCtx that carries a deadline
// a cancellation signal, and other values across API boundaries.
func (r *DefaultRes) RequestCtx() *fasthttp.RequestCtx {
return r.c.fasthttp
}
// Cookie sets a cookie by passing a cookie struct.
func (r *DefaultRes) Cookie(cookie *Cookie) {
if cookie.Path == "" {
cookie.Path = "/"
}
if cookie.SessionOnly {
cookie.MaxAge = 0
cookie.Expires = time.Time{}
}
var sameSite http.SameSite
switch {
case utils.EqualFold(cookie.SameSite, CookieSameSiteStrictMode):
sameSite = http.SameSiteStrictMode
case utils.EqualFold(cookie.SameSite, CookieSameSiteNoneMode):
sameSite = http.SameSiteNoneMode
// SameSite=None requires Secure=true per RFC and browser requirements
cookie.Secure = true
case utils.EqualFold(cookie.SameSite, CookieSameSiteDisabled):
sameSite = 0
case utils.EqualFold(cookie.SameSite, CookieSameSiteLaxMode):
sameSite = http.SameSiteLaxMode
default:
sameSite = http.SameSiteLaxMode
}
// Partitioned requires Secure=true per CHIPS spec
if cookie.Partitioned {
cookie.Secure = true
}
// create/validate cookie using net/http
hc := &http.Cookie{
Name: cookie.Name,
Value: cookie.Value,
Path: cookie.Path,
Domain: cookie.Domain,
Expires: cookie.Expires,
MaxAge: cookie.MaxAge,
Secure: cookie.Secure,
HttpOnly: cookie.HTTPOnly,
SameSite: sameSite,
Partitioned: cookie.Partitioned,
}
if err := hc.Valid(); err != nil {
// invalid cookies are ignored, same approach as net/http
return
}
// create fasthttp cookie
fcookie := fasthttp.AcquireCookie()
fcookie.SetKey(hc.Name)
fcookie.SetValue(hc.Value)
fcookie.SetPath(hc.Path)
fcookie.SetDomain(hc.Domain)
if !cookie.SessionOnly {
fcookie.SetMaxAge(hc.MaxAge)
fcookie.SetExpire(hc.Expires)
}
fcookie.SetSecure(hc.Secure)
fcookie.SetHTTPOnly(hc.HttpOnly)
switch sameSite {
case http.SameSiteLaxMode:
fcookie.SetSameSite(fasthttp.CookieSameSiteLaxMode)
case http.SameSiteStrictMode:
fcookie.SetSameSite(fasthttp.CookieSameSiteStrictMode)
case http.SameSiteNoneMode:
fcookie.SetSameSite(fasthttp.CookieSameSiteNoneMode)
case http.SameSiteDefaultMode:
fcookie.SetSameSite(fasthttp.CookieSameSiteDefaultMode)
default:
fcookie.SetSameSite(fasthttp.CookieSameSiteDisabled)
}
fcookie.SetPartitioned(hc.Partitioned)
// Set resp header
r.c.fasthttp.Response.Header.SetCookie(fcookie)
fasthttp.ReleaseCookie(fcookie)
}
// Download transfers the file from path as an attachment.
// Typically, browsers will prompt the user for download.
// By default, the Content-Disposition header filename= parameter is the filepath (this typically appears in the browser dialog).
// Override this default with the filename parameter.
func (r *DefaultRes) Download(file string, filename ...string) error {
var fname string
if len(filename) > 0 {
fname = filepath.Base(filename[0])
} else {
fname = filepath.Base(file)
}
fname = sanitizeFilename(fname)
fname = fallbackFilenameIfInvalid(fname)
app := r.c.app
var quoted string
if app.isASCII(fname) {
quoted = app.quoteString(fname)
} else {
quoted = app.quoteRawString(fname)
}
disp := `attachment; filename="` + quoted + `"`
if !app.isASCII(fname) {
disp += `; filename*=UTF-8''` + url.PathEscape(fname)
}
r.setCanonical(HeaderContentDisposition, disp)
return r.SendFile(file)
}
// Response return the *fasthttp.Response object
// This allows you to use all fasthttp response methods
// https://godoc.org/github.com/valyala/fasthttp#Response
func (r *DefaultRes) Response() *fasthttp.Response {
return &r.c.fasthttp.Response
}
// Format performs content-negotiation on the Accept HTTP header.
// It uses Accepts to select a proper format and calls the matching
// user-provided handler function.
// If no accepted format is found, and a format with MediaType "default" is given,
// that default handler is called. If no format is found and no default is given,
// StatusNotAcceptable is sent.
func (r *DefaultRes) Format(handlers ...ResFmt) error {
if len(handlers) == 0 {
return ErrNoHandlers
}
for i, h := range handlers {
if h.Handler == nil {
return fmt.Errorf("format handler is nil for media type %q at index %d", h.MediaType, i)
}
}
r.Vary(HeaderAccept)
if r.c.DefaultReq.Get(HeaderAccept) == "" {
r.c.fasthttp.Response.Header.SetContentType(handlers[0].MediaType)
return handlers[0].Handler(r.c)
}
// Using an int literal as the slice capacity allows for the slice to be
// allocated on the stack. The number was chosen arbitrarily as an
// approximation of the maximum number of content types a user might handle.
// If the user goes over, it just causes allocations, so it's not a problem.
types := make([]string, 0, 8)
var defaultHandler Handler
for _, h := range handlers {
if h.MediaType == "default" {
defaultHandler = h.Handler
continue
}
types = append(types, h.MediaType)
}
accept := r.c.DefaultReq.Accepts(types...) //nolint:staticcheck // It is fine to ignore the static check
if accept == "" {
if defaultHandler == nil {
return r.SendStatus(StatusNotAcceptable)
}
return defaultHandler(r.c)
}
for _, h := range handlers {
if h.MediaType == accept {
r.c.fasthttp.Response.Header.SetContentType(h.MediaType)
return h.Handler(r.c)
}
}
return fmt.Errorf("%w: format: an Accept was found but no handler was called", errUnreachable)
}
// AutoFormat performs content-negotiation on the Accept HTTP header.
// It uses Accepts to select a proper format.
// The supported content types are text/html, text/plain, application/json, application/xml, application/vnd.msgpack, and application/cbor.
// For more flexible content negotiation, use Format.
// If the header is not specified or there is no proper format, text/plain is used.
func (r *DefaultRes) AutoFormat(body any) error {
// Get accepted content type
accept := r.c.DefaultReq.Accepts("html", "json", "txt", "xml", "msgpack", "cbor") //nolint:staticcheck // It is fine to ignore the static check
// Set accepted content type
r.Type(accept)
// Type convert provided body
var b string
switch val := body.(type) {
case string:
b = val
case []byte:
b = r.c.app.toString(val)
default:
b = fmt.Sprintf("%v", val)
}
// Format based on the accept content type
switch accept {
case "txt":
return r.SendString(b)
case "json":
return r.JSON(body)
case "xml":
return r.XML(body)
case "html":
return r.SendString("<p>" + b + "</p>")
case "msgpack":
return r.MsgPack(body)
case "cbor":
return r.CBOR(body)
}
// Default case
return r.SendString(b)
}
// Get (a.k.a. GetRespHeader) returns the HTTP response header specified by field.
// Field names are case-insensitive
// Returned value is only valid within the handler. Do not store any references.
// Make copies or use the Immutable setting instead.
func (r *DefaultRes) Get(key string, defaultValue ...string) string {
return defaultString(r.c.app.toString(r.c.fasthttp.Response.Header.Peek(key)), defaultValue)
}
// GetHeaders (a.k.a GetRespHeaders) returns the HTTP response headers.
// Returned value is only valid within the handler. Do not store any references.
// Make copies or use the Immutable setting instead.
func (r *DefaultRes) GetHeaders() map[string][]string {
app := r.c.app
respHeader := &r.c.fasthttp.Response.Header
// Pre-allocate map with known header count to avoid reallocations
headers := make(map[string][]string, respHeader.Len())
for k, v := range respHeader.All() {
key := app.toString(k)
headers[key] = append(headers[key], app.toString(v))
}
return headers
}
// JSON converts any interface or string to JSON.
// Array and slice values encode as JSON arrays,
// except that []byte encodes as a base64-encoded string,
// and a nil slice encodes as the null JSON value.
// If the ctype parameter is given, this method will set the
// Content-Type header equal to ctype. If ctype is not given,
// The Content-Type header will be set to application/json; charset=utf-8.
func (r *DefaultRes) JSON(data any, ctype ...string) error {
raw, err := r.c.app.config.JSONEncoder(data)
if err != nil {
return err
}
response := &r.c.fasthttp.Response
response.SetBodyRaw(raw)
if len(ctype) > 0 {
response.Header.SetContentType(ctype[0])
} else {
response.Header.SetContentType(MIMEApplicationJSONCharsetUTF8)
}
return nil
}
// MsgPack converts any interface or string to MessagePack encoded bytes.
// If the ctype parameter is given, this method will set the
// Content-Type header equal to ctype. If ctype is not given,
// The Content-Type header will be set to application/vnd.msgpack.
func (r *DefaultRes) MsgPack(data any, ctype ...string) error {
raw, err := r.c.app.config.MsgPackEncoder(data)
if err != nil {
return err
}
response := &r.c.fasthttp.Response
response.SetBodyRaw(raw)
if len(ctype) > 0 {
response.Header.SetContentType(ctype[0])
} else {
response.Header.SetContentType(MIMEApplicationMsgPack)
}
return nil
}
// CBOR converts any interface or string to CBOR encoded bytes.
// If the ctype parameter is given, this method will set the
// Content-Type header equal to ctype. If ctype is not given,
// The Content-Type header will be set to application/cbor.
func (r *DefaultRes) CBOR(data any, ctype ...string) error {
raw, err := r.c.app.config.CBOREncoder(data)
if err != nil {
return err
}
response := &r.c.fasthttp.Response
response.SetBodyRaw(raw)
if len(ctype) > 0 {
response.Header.SetContentType(ctype[0])
} else {
response.Header.SetContentType(MIMEApplicationCBOR)
}
return nil
}
// JSONP sends a JSON response with JSONP support.
// This method is identical to JSON, except that it opts-in to JSONP callback support.
// By default, the callback name is simply callback.
func (r *DefaultRes) JSONP(data any, callback ...string) error {
raw, err := r.c.app.config.JSONEncoder(data)
if err != nil {
return err
}
cb := "callback"
if len(callback) > 0 {
cb = callback[0]
}
// Build JSONP response: callback(data);
// Use bytebufferpool to avoid string concatenation allocations
buf := bytebufferpool.Get()
buf.WriteString(cb)
buf.WriteByte('(')
buf.Write(raw)
buf.WriteString(");")
r.setCanonical(HeaderXContentTypeOptions, "nosniff")
r.c.fasthttp.Response.Header.SetContentType(MIMETextJavaScriptCharsetUTF8)
// Use SetBody (not SetBodyRaw) to copy the bytes before returning buffer to pool
r.c.fasthttp.Response.SetBody(buf.Bytes())
bytebufferpool.Put(buf)
return nil
}
// XML converts any interface or string to XML.
// This method also sets the content header to application/xml; charset=utf-8.
func (r *DefaultRes) XML(data any) error {
raw, err := r.c.app.config.XMLEncoder(data)
if err != nil {
return err
}
response := &r.c.fasthttp.Response
response.SetBodyRaw(raw)
response.Header.SetContentType(MIMEApplicationXMLCharsetUTF8)
return nil
}
// Links joins the links followed by the property to populate the response's Link HTTP header field.
func (r *DefaultRes) Links(link ...string) {
if len(link) == 0 {
return
}
bb := bytebufferpool.Get()
for i := range link {
if i%2 == 0 {
bb.WriteByte('<')
bb.WriteString(link[i])
bb.WriteByte('>')
} else {
bb.WriteString(`; rel="`)
bb.WriteString(link[i])
bb.WriteString(`",`)
}
}
r.setCanonical(HeaderLink, utils.TrimRight(r.c.app.toString(bb.Bytes()), ','))
bytebufferpool.Put(bb)
}
// Location sets the response Location HTTP header to the specified path parameter.
func (r *DefaultRes) Location(path string) {
r.setCanonical(HeaderLocation, path)
}
// OriginalURL contains the original request URL.
// Returned value is only valid within the handler. Do not store any references.
// Make copies or use the Immutable setting to use the value outside the Handler.
func (r *DefaultRes) OriginalURL() string {
return r.c.OriginalURL()
}
// Redirect returns the Redirect reference.
// Use Redirect().Status() to set custom redirection status code.
// If status is not specified, status defaults to 303 See Other.
// You can use Redirect().To(), Redirect().Route() and Redirect().Back() for redirection.
func (r *DefaultRes) Redirect() *Redirect {
return r.c.Redirect()
}
// ViewBind Add vars to default view var map binding to template engine.
// Variables are read by the Render method and may be overwritten.
func (r *DefaultRes) ViewBind(vars Map) error {
return r.c.ViewBind(vars)
}
// getLocationFromRoute get URL location from route using parameters
func (r *DefaultRes) getLocationFromRoute(route *Route, params Map) (string, error) {
if route == nil || route.Path == "" {
return "", ErrNotFound
}
app := r.c.app
buf := bytebufferpool.Get()
for _, segment := range route.routeParser.segs {
if !segment.IsParam {
_, err := buf.WriteString(segment.Const)
if err != nil {
return "", fmt.Errorf("failed to write string: %w", err)
}
continue
}
for key, val := range params {
isSame := key == segment.ParamName || (!app.config.CaseSensitive && utils.EqualFold(key, segment.ParamName))
isGreedy := segment.IsGreedy && len(key) == 1 && bytes.IndexByte(greedyParameters, key[0]) >= 0
if isSame || isGreedy {
_, err := buf.WriteString(utils.ToString(val))
if err != nil {
return "", fmt.Errorf("failed to write string: %w", err)
}
}
}
}
location := buf.String()
// release buffer
bytebufferpool.Put(buf)
return location, nil
}
// GetRouteURL generates URLs to named routes, with parameters. URLs are relative, for example: "/user/1831"
func (r *DefaultRes) GetRouteURL(routeName string, params Map) (string, error) {
route := r.c.app.GetRoute(routeName)
return r.getLocationFromRoute(&route, params)
}
// Render a template with data and sends a text/html response.
// We support the following engines: https://github.com/gofiber/template
func (r *DefaultRes) Render(name string, bind any, layouts ...string) error {
// Get new buffer from pool
buf := bytebufferpool.Get()
defer bytebufferpool.Put(buf)
// Initialize empty bind map if bind is nil
if bind == nil {
bind = make(Map)
}
// Pass-locals-to-views, bind, appListKeys
r.c.renderExtensions(bind)
rootApp := r.c.app
var rendered bool
for i := len(rootApp.mountFields.appListKeys) - 1; i >= 0; i-- {
prefix := rootApp.mountFields.appListKeys[i]
app := rootApp.mountFields.appList[prefix]
if prefix == "" || strings.Contains(r.c.OriginalURL(), prefix) {
if len(layouts) == 0 && app.config.ViewsLayout != "" {
layouts = []string{
app.config.ViewsLayout,
}
}
// Render template from Views
if app.config.Views != nil {
if err := app.config.Views.Render(buf, name, bind, layouts...); err != nil {
return fmt.Errorf("failed to render: %w", err)
}
rendered = true
break
}
}
}
if !rendered {
// Render raw template using 'name' as filepath if no engine is set
var tmpl *template.Template
if _, err := readContent(buf, name); err != nil {
return err
}
// Parse template
tmpl, err := template.New("").Parse(rootApp.toString(buf.Bytes()))
if err != nil {
return fmt.Errorf("failed to parse: %w", err)
}
buf.Reset()
// Render template
if err := tmpl.Execute(buf, bind); err != nil {
return fmt.Errorf("failed to execute: %w", err)
}
}
response := &r.c.fasthttp.Response
// Set Content-Type to text/html
response.Header.SetContentType(MIMETextHTMLCharsetUTF8)
// Set rendered template to body
response.SetBody(buf.Bytes())
return nil
}
func (r *DefaultRes) renderExtensions(bind any) {
r.c.renderExtensions(bind)
}
// Send sets the HTTP response body without copying it.
// From this point onward the body argument must not be changed.
func (r *DefaultRes) Send(body []byte) error {
// Write response body
r.c.fasthttp.Response.SetBodyRaw(body)
return nil
}
// SendEarlyHints allows the server to hint to the browser what resources a page would need
// so the browser can preload them while waiting for the server's full response. Only Link
// headers already written to the response will be transmitted as Early Hints.
//
// This is a HTTP/2+ feature but all browsers will either understand it or safely ignore it.
//
// NOTE: Older HTTP/1.1 non-browser clients may face compatibility issues.
//
// See: https://developer.chrome.com/docs/web-platform/early-hints and
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Link#syntax
func (r *DefaultRes) SendEarlyHints(hints []string) error {
if len(hints) == 0 {
return nil
}
for _, h := range hints {
r.c.fasthttp.Response.Header.Add("Link", h)
}
return r.c.fasthttp.EarlyHints()
}
// SendFile transfers the file from the specified path.
// By default, the file is not compressed. To enable compression, set SendFile.Compress to true.
// The Content-Type response HTTP header field is set based on the file's extension.
// If the file extension is missing or invalid, the Content-Type is detected from the file's format.
func (r *DefaultRes) SendFile(file string, config ...SendFile) error {
// Save the filename, we will need it in the error message if the file isn't found
filename := file
var cfg SendFile
if len(config) > 0 {
cfg = config[0]
}
if cfg.CacheDuration == 0 {
cfg.CacheDuration = 10 * time.Second
}
var fsHandler fasthttp.RequestHandler
var cacheControlValue string
app := r.c.app
app.sendfilesMutex.RLock()
for _, sf := range app.sendfiles {
if sf.configEqual(cfg) {
fsHandler = sf.handler
cacheControlValue = sf.cacheControlValue
break
}
}
app.sendfilesMutex.RUnlock()
if fsHandler == nil {
fasthttpFS := &fasthttp.FS{
Root: "",
FS: cfg.FS,
AllowEmptyRoot: true,
GenerateIndexPages: false,
AcceptByteRange: cfg.ByteRange,
Compress: cfg.Compress,
CompressBrotli: cfg.Compress,
CompressZstd: cfg.Compress,
CompressedFileSuffixes: app.config.CompressedFileSuffixes,
CacheDuration: cfg.CacheDuration,
SkipCache: cfg.CacheDuration < 0,
IndexNames: []string{"index.html"},
PathNotFound: func(ctx *fasthttp.RequestCtx) {
ctx.Response.SetStatusCode(StatusNotFound)
},
}
if cfg.FS != nil {
fasthttpFS.Root = "."
}
sf := &sendFileStore{
config: cfg,
handler: fasthttpFS.NewRequestHandler(),
}
maxAge := cfg.MaxAge
if maxAge > 0 {
sf.cacheControlValue = "public, max-age=" + strconv.Itoa(maxAge)
}
// set vars
fsHandler = sf.handler
cacheControlValue = sf.cacheControlValue
app.sendfilesMutex.Lock()
app.sendfiles = append(app.sendfiles, sf)
app.sendfilesMutex.Unlock()
}
// Keep original path for mutable params
r.c.pathOriginal = utils.CopyString(r.c.pathOriginal)
request := &r.c.fasthttp.Request
// Delete the Accept-Encoding header if compression is disabled
if !cfg.Compress {
// https://github.com/valyala/fasthttp/blob/7cc6f4c513f9e0d3686142e0a1a5aa2f76b3194a/fs.go#L55
request.Header.Del(HeaderAcceptEncoding)
}
// copy of https://github.com/valyala/fasthttp/blob/7cc6f4c513f9e0d3686142e0a1a5aa2f76b3194a/fs.go#L103-L121 with small adjustments
if file == "" || (!filepath.IsAbs(file) && cfg.FS == nil) {
// extend relative path to absolute path
hasTrailingSlash := file != "" && (file[len(file)-1] == '/' || file[len(file)-1] == '\\')
var err error
file = filepath.FromSlash(file)
if file, err = filepath.Abs(file); err != nil {
return fmt.Errorf("failed to determine abs file path: %w", err)
}
if hasTrailingSlash {
file += "/"
}
}
// convert the path to forward slashes regardless the OS in order to set the URI properly
// the handler will convert back to OS path separator before opening the file
file = filepath.ToSlash(file)
// Restore the original requested URL
originalURL := utils.CopyString(r.c.OriginalURL())
defer request.SetRequestURI(originalURL)
// Set new URI for fileHandler
request.SetRequestURI(file)
var (
sendFileSize int64
hasSendFileSize bool
)
if cfg.ByteRange && len(request.Header.Peek(HeaderRange)) > 0 {
sizePath := file
if cfg.FS != nil {
sizePath = filepath.ToSlash(filename)
}
if size, err := sendFileContentLength(sizePath, cfg); err == nil {
sendFileSize = size
hasSendFileSize = true
}
}
// Save status code
response := &r.c.fasthttp.Response
status := response.StatusCode()
// Serve file
fsHandler(r.c.fasthttp)
// Sets the response Content-Disposition header to attachment if the Download option is true
if cfg.Download {
r.Attachment()
}
// Get the status code which is set by fasthttp
fsStatus := response.StatusCode()
// Check for error
if status != StatusNotFound && fsStatus == StatusNotFound {
return NewError(StatusNotFound, fmt.Sprintf("sendfile: file %s not found", filename))
}
// Set the status code set by the user if it is different from the fasthttp status code and 200
if status != fsStatus && status != StatusOK {
r.Status(status)
}
// Apply cache control header
if status != StatusNotFound && status != StatusForbidden {
if cfg.ByteRange && hasSendFileSize && response.StatusCode() == StatusRequestedRangeNotSatisfiable && len(response.Header.Peek(HeaderContentRange)) == 0 {
response.Header.Set(HeaderContentRange, "bytes */"+strconv.FormatInt(sendFileSize, 10))
}
if cacheControlValue != "" {
response.Header.Set(HeaderCacheControl, cacheControlValue)
}
return nil
}
return nil
}
func sendFileContentLength(path string, cfg SendFile) (int64, error) {
if cfg.FS != nil {
cleanPath := pathpkg.Clean(utils.TrimLeft(path, '/'))
if cleanPath == "." {
cleanPath = ""
}
info, err := fs.Stat(cfg.FS, cleanPath)
if err != nil {
return 0, fmt.Errorf("stat %q: %w", cleanPath, err)
}
return info.Size(), nil
}
info, err := os.Stat(filepath.FromSlash(path))
if err != nil {
return 0, fmt.Errorf("stat %q: %w", path, err)
}
return info.Size(), nil
}
// SendStatus sets the HTTP status code and if the response body is empty,
// it sets the correct status message in the body.
func (r *DefaultRes) SendStatus(status int) error {
r.Status(status)
if statusDisallowsBody(status) {
r.c.fasthttp.Response.ResetBody()
return nil
}
// Only set status body when there is no response body
if len(r.c.fasthttp.Response.Body()) == 0 {
return r.SendString(utils.StatusMessage(status))
}
return nil
}
// SendString sets the HTTP response body for string types.
// This means no type assertion, recommended for faster performance
func (r *DefaultRes) SendString(body string) error {
r.c.fasthttp.Response.SetBodyString(body)
return nil