2020-11-17 22:44:52 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-11-17 22:44:52 +00:00
|
|
|
|
|
|
|
package httpcache
|
|
|
|
|
|
|
|
import (
|
2023-05-13 14:04:57 +00:00
|
|
|
"io"
|
2020-11-17 22:44:52 +00:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
2021-04-12 14:49:26 +00:00
|
|
|
"strings"
|
2020-11-17 22:44:52 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
2023-03-08 20:40:04 +00:00
|
|
|
// SetCacheControlInHeader sets suitable cache-control headers in the response
|
|
|
|
func SetCacheControlInHeader(h http.Header, maxAge time.Duration, additionalDirectives ...string) {
|
2022-07-23 06:38:03 +00:00
|
|
|
directives := make([]string, 0, 2+len(additionalDirectives))
|
|
|
|
|
2023-02-02 17:39:38 +00:00
|
|
|
// "max-age=0 + must-revalidate" (aka "no-cache") is preferred instead of "no-store"
|
|
|
|
// because browsers may restore some input fields after navigate-back / reload a page.
|
2021-10-20 14:37:19 +00:00
|
|
|
if setting.IsProd {
|
2022-07-23 06:38:03 +00:00
|
|
|
if maxAge == 0 {
|
2023-02-01 21:28:06 +00:00
|
|
|
directives = append(directives, "max-age=0", "private", "must-revalidate")
|
2022-07-23 06:38:03 +00:00
|
|
|
} else {
|
|
|
|
directives = append(directives, "private", "max-age="+strconv.Itoa(int(maxAge.Seconds())))
|
|
|
|
}
|
Avatar refactor, move avatar code from `models` to `models.avatars`, remove duplicated code (#17123)
Why this refactor
The goal is to move most files from `models` package to `models.xxx` package. Many models depend on avatar model, so just move this first.
And the existing logic is not clear, there are too many function like `AvatarLink`, `RelAvatarLink`, `SizedRelAvatarLink`, `SizedAvatarLink`, `MakeFinalAvatarURL`, `HashedAvatarLink`, etc. This refactor make everything clear:
* user.AvatarLink()
* user.AvatarLinkWithSize(size)
* avatars.GenerateEmailAvatarFastLink(email, size)
* avatars.GenerateEmailAvatarFinalLink(email, size)
And many duplicated code are deleted in route handler, the handler and the model share the same avatar logic now.
2021-10-05 23:25:46 +00:00
|
|
|
} else {
|
2023-02-01 21:28:06 +00:00
|
|
|
directives = append(directives, "max-age=0", "private", "must-revalidate")
|
2022-07-23 06:38:03 +00:00
|
|
|
|
Avatar refactor, move avatar code from `models` to `models.avatars`, remove duplicated code (#17123)
Why this refactor
The goal is to move most files from `models` package to `models.xxx` package. Many models depend on avatar model, so just move this first.
And the existing logic is not clear, there are too many function like `AvatarLink`, `RelAvatarLink`, `SizedRelAvatarLink`, `SizedAvatarLink`, `MakeFinalAvatarURL`, `HashedAvatarLink`, etc. This refactor make everything clear:
* user.AvatarLink()
* user.AvatarLinkWithSize(size)
* avatars.GenerateEmailAvatarFastLink(email, size)
* avatars.GenerateEmailAvatarFinalLink(email, size)
And many duplicated code are deleted in route handler, the handler and the model share the same avatar logic now.
2021-10-05 23:25:46 +00:00
|
|
|
// to remind users they are using non-prod setting.
|
2023-03-08 20:40:04 +00:00
|
|
|
h.Set("X-Gitea-Debug", "RUN_MODE="+setting.RunMode)
|
2020-11-17 22:44:52 +00:00
|
|
|
}
|
2022-07-23 06:38:03 +00:00
|
|
|
|
|
|
|
h.Set("Cache-Control", strings.Join(append(directives, additionalDirectives...), ", "))
|
2020-11-17 22:44:52 +00:00
|
|
|
}
|
|
|
|
|
2023-05-13 14:04:57 +00:00
|
|
|
func ServeContentWithCacheControl(w http.ResponseWriter, req *http.Request, name string, modTime time.Time, content io.ReadSeeker) {
|
2023-03-08 20:40:04 +00:00
|
|
|
SetCacheControlInHeader(w.Header(), setting.StaticCacheTime)
|
2023-05-13 14:04:57 +00:00
|
|
|
http.ServeContent(w, req, name, modTime, content)
|
2021-04-12 14:49:26 +00:00
|
|
|
}
|
2020-11-17 22:44:52 +00:00
|
|
|
|
2021-04-12 14:49:26 +00:00
|
|
|
// HandleGenericETagCache handles ETag-based caching for a HTTP request.
|
|
|
|
// It returns true if the request was handled.
|
|
|
|
func HandleGenericETagCache(req *http.Request, w http.ResponseWriter, etag string) (handled bool) {
|
|
|
|
if len(etag) > 0 {
|
|
|
|
w.Header().Set("Etag", etag)
|
|
|
|
if checkIfNoneMatchIsValid(req, etag) {
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2023-03-08 20:40:04 +00:00
|
|
|
SetCacheControlInHeader(w.Header(), setting.StaticCacheTime)
|
2021-04-12 14:49:26 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkIfNoneMatchIsValid tests if the header If-None-Match matches the ETag
|
|
|
|
func checkIfNoneMatchIsValid(req *http.Request, etag string) bool {
|
|
|
|
ifNoneMatch := req.Header.Get("If-None-Match")
|
|
|
|
if len(ifNoneMatch) > 0 {
|
|
|
|
for _, item := range strings.Split(ifNoneMatch, ",") {
|
2024-01-29 16:18:40 +00:00
|
|
|
item = strings.TrimPrefix(strings.TrimSpace(item), "W/") // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag#directives
|
2021-04-12 14:49:26 +00:00
|
|
|
if item == etag {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-17 22:44:52 +00:00
|
|
|
return false
|
|
|
|
}
|
2022-05-09 15:54:51 +00:00
|
|
|
|
|
|
|
// HandleGenericETagTimeCache handles ETag-based caching with Last-Modified caching for a HTTP request.
|
|
|
|
// It returns true if the request was handled.
|
2023-07-07 05:31:56 +00:00
|
|
|
func HandleGenericETagTimeCache(req *http.Request, w http.ResponseWriter, etag string, lastModified *time.Time) (handled bool) {
|
2022-05-09 15:54:51 +00:00
|
|
|
if len(etag) > 0 {
|
|
|
|
w.Header().Set("Etag", etag)
|
|
|
|
}
|
2023-07-07 05:31:56 +00:00
|
|
|
if lastModified != nil && !lastModified.IsZero() {
|
2022-05-09 15:54:51 +00:00
|
|
|
w.Header().Set("Last-Modified", lastModified.Format(http.TimeFormat))
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(etag) > 0 {
|
|
|
|
if checkIfNoneMatchIsValid(req, etag) {
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2023-07-07 05:31:56 +00:00
|
|
|
if lastModified != nil && !lastModified.IsZero() {
|
2022-05-09 15:54:51 +00:00
|
|
|
ifModifiedSince := req.Header.Get("If-Modified-Since")
|
|
|
|
if ifModifiedSince != "" {
|
|
|
|
t, err := time.Parse(http.TimeFormat, ifModifiedSince)
|
|
|
|
if err == nil && lastModified.Unix() <= t.Unix() {
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-08 20:40:04 +00:00
|
|
|
SetCacheControlInHeader(w.Header(), setting.StaticCacheTime)
|
2022-05-09 15:54:51 +00:00
|
|
|
return false
|
|
|
|
}
|