Files
Atay-Makhzan/modules/public/public.go
T

125 lines
3.9 KiB
Go
Raw Normal View History

// Copyright 2016 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package public
2017-01-28 23:14:56 +01:00
import (
"bytes"
"io"
"net/http"
2021-05-30 18:25:11 +08:00
"os"
"path"
"strings"
"time"
2017-01-28 23:14:56 +01:00
"code.gitea.io/gitea/modules/assetfs"
2022-10-12 07:18:26 +02:00
"code.gitea.io/gitea/modules/container"
"code.gitea.io/gitea/modules/httpcache"
2021-05-30 18:25:11 +08:00
"code.gitea.io/gitea/modules/log"
2017-01-28 23:14:56 +01:00
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/util"
"github.com/go-chi/cors"
2017-01-28 23:14:56 +01:00
)
func CustomAssets() *assetfs.Layer {
return assetfs.Local("custom", setting.CustomPath, "public")
}
2017-01-28 23:14:56 +01:00
func AssetFS() *assetfs.LayeredFS {
return assetfs.Layered(CustomAssets(), BuiltinAssets())
}
2022-01-20 19:41:25 +08:00
func AssetsCors() func(next http.Handler) http.Handler {
// static assets need to be served for external renders (sandboxed)
return cors.Handler(cors.Options{
AllowedOrigins: []string{"*"},
AllowedMethods: []string{"HEAD", "GET"},
MaxAge: 3600 * 24,
})
}
// FileHandlerFunc implements the static handler for serving files in "public" assets
func FileHandlerFunc() http.HandlerFunc {
assetFS := AssetFS()
2022-01-20 19:41:25 +08:00
return func(resp http.ResponseWriter, req *http.Request) {
if req.Method != "GET" && req.Method != "HEAD" {
2023-12-25 20:13:18 +08:00
resp.WriteHeader(http.StatusMethodNotAllowed)
2022-01-20 19:41:25 +08:00
return
}
2026-01-24 13:11:49 +08:00
handleRequest(resp, req, http.FS(assetFS), req.URL.Path)
}
}
// parseAcceptEncoding parse Accept-Encoding: deflate, gzip;q=1.0, *;q=0.5 as compress methods
2022-10-12 07:18:26 +02:00
func parseAcceptEncoding(val string) container.Set[string] {
parts := strings.Split(val, ";")
2022-10-12 07:18:26 +02:00
types := make(container.Set[string])
2025-06-18 03:48:09 +02:00
for v := range strings.SplitSeq(parts[0], ",") {
2022-10-12 07:18:26 +02:00
types.Add(strings.TrimSpace(v))
}
return types
}
// setWellKnownContentType will set the Content-Type if the file is a well-known type.
// See the comments of DetectWellKnownMimeType
func setWellKnownContentType(w http.ResponseWriter, file string) {
mimeType := DetectWellKnownMimeType(path.Ext(file))
if mimeType != "" {
w.Header().Set("Content-Type", mimeType)
}
}
func handleRequest(w http.ResponseWriter, req *http.Request, fs http.FileSystem, file string) {
// actually, fs (http.FileSystem) is designed to be a safe interface, relative paths won't bypass its parent directory, it's also fine to do a clean here
f, err := fs.Open(util.PathJoinRelX(file))
if err != nil {
2021-05-30 18:25:11 +08:00
if os.IsNotExist(err) {
w.WriteHeader(http.StatusNotFound)
return
}
2021-05-30 18:25:11 +08:00
w.WriteHeader(http.StatusInternalServerError)
log.Error("[Static] Open %q failed: %v", file, err)
return
}
defer f.Close()
fi, err := f.Stat()
if err != nil {
2021-05-30 18:25:11 +08:00
w.WriteHeader(http.StatusInternalServerError)
log.Error("[Static] %q exists, but fails to open: %v", file, err)
return
}
// need to serve index file? (no at the moment)
if fi.IsDir() {
2021-05-30 18:25:11 +08:00
w.WriteHeader(http.StatusNotFound)
return
}
2025-03-13 07:04:50 +08:00
servePublicAsset(w, req, fi, fi.ModTime(), f)
}
2025-03-13 07:04:50 +08:00
// servePublicAsset serve http content
func servePublicAsset(w http.ResponseWriter, req *http.Request, fi os.FileInfo, modtime time.Time, content io.ReadSeeker) {
setWellKnownContentType(w, fi.Name())
2025-03-13 07:04:50 +08:00
httpcache.SetCacheControlInHeader(w.Header(), httpcache.CacheControlForPublicStatic())
encodings := parseAcceptEncoding(req.Header.Get("Accept-Encoding"))
fiEmbedded, _ := fi.(assetfs.EmbeddedFileInfo)
if encodings.Contains("gzip") && fiEmbedded != nil {
// try to provide gzip content directly from bindata
if gzipBytes, ok := fiEmbedded.GetGzipContent(); ok {
rdGzip := bytes.NewReader(gzipBytes)
// all gzipped static files (from bindata) are managed by Gitea, so we can make sure every file has the correct ext name
// then we can get the correct Content-Type, we do not need to do http.DetectContentType on the decompressed data
if w.Header().Get("Content-Type") == "" {
w.Header().Set("Content-Type", "application/octet-stream")
}
w.Header().Set("Content-Encoding", "gzip")
2025-03-13 07:04:50 +08:00
http.ServeContent(w, req, fi.Name(), modtime, rdGzip)
return
}
}
2025-03-13 07:04:50 +08:00
http.ServeContent(w, req, fi.Name(), modtime, content)
}