2016-11-29 09:26:36 -07:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package public
|
|
|
|
|
2017-01-28 15:14:56 -07:00
|
|
|
import (
|
2018-02-03 15:37:05 -07:00
|
|
|
"encoding/base64"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
2017-01-28 15:14:56 -07:00
|
|
|
"path"
|
2018-02-03 15:37:05 -07:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"time"
|
2017-01-28 15:14:56 -07:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-23 10:40:30 -06:00
|
|
|
|
|
|
|
"gitea.com/macaron/macaron"
|
2017-01-28 15:14:56 -07:00
|
|
|
)
|
|
|
|
|
2016-11-29 09:26:36 -07:00
|
|
|
// Options represents the available options to configure the macaron handler.
|
|
|
|
type Options struct {
|
|
|
|
Directory string
|
2018-02-03 15:37:05 -07:00
|
|
|
IndexFile string
|
2016-11-29 09:26:36 -07:00
|
|
|
SkipLogging bool
|
2018-02-03 15:37:05 -07:00
|
|
|
// if set to true, will enable caching. Expires header will also be set to
|
|
|
|
// expire after the defined time.
|
|
|
|
ExpiresAfter time.Duration
|
|
|
|
FileSystem http.FileSystem
|
|
|
|
Prefix string
|
2016-11-29 09:26:36 -07:00
|
|
|
}
|
2017-01-28 15:14:56 -07:00
|
|
|
|
2020-04-18 15:01:06 -06:00
|
|
|
// List of known entries inside the `public` directory
|
|
|
|
var knownEntries = []string{
|
|
|
|
"css",
|
|
|
|
"fomantic",
|
|
|
|
"img",
|
|
|
|
"js",
|
|
|
|
"vendor",
|
|
|
|
}
|
|
|
|
|
2017-01-28 15:14:56 -07:00
|
|
|
// Custom implements the macaron static handler for serving custom assets.
|
|
|
|
func Custom(opts *Options) macaron.Handler {
|
2018-02-03 15:37:05 -07:00
|
|
|
return opts.staticHandler(path.Join(setting.CustomPath, "public"))
|
|
|
|
}
|
|
|
|
|
|
|
|
// staticFileSystem implements http.FileSystem interface.
|
|
|
|
type staticFileSystem struct {
|
|
|
|
dir *http.Dir
|
|
|
|
}
|
|
|
|
|
|
|
|
func newStaticFileSystem(directory string) staticFileSystem {
|
|
|
|
if !filepath.IsAbs(directory) {
|
|
|
|
directory = filepath.Join(macaron.Root, directory)
|
|
|
|
}
|
|
|
|
dir := http.Dir(directory)
|
|
|
|
return staticFileSystem{&dir}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs staticFileSystem) Open(name string) (http.File, error) {
|
|
|
|
return fs.dir.Open(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// StaticHandler sets up a new middleware for serving static files in the
|
|
|
|
func StaticHandler(dir string, opts *Options) macaron.Handler {
|
|
|
|
return opts.staticHandler(dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (opts *Options) staticHandler(dir string) macaron.Handler {
|
|
|
|
// Defaults
|
|
|
|
if len(opts.IndexFile) == 0 {
|
|
|
|
opts.IndexFile = "index.html"
|
|
|
|
}
|
|
|
|
// Normalize the prefix if provided
|
|
|
|
if opts.Prefix != "" {
|
|
|
|
// Ensure we have a leading '/'
|
|
|
|
if opts.Prefix[0] != '/' {
|
|
|
|
opts.Prefix = "/" + opts.Prefix
|
|
|
|
}
|
|
|
|
// Remove any trailing '/'
|
|
|
|
opts.Prefix = strings.TrimRight(opts.Prefix, "/")
|
|
|
|
}
|
|
|
|
if opts.FileSystem == nil {
|
|
|
|
opts.FileSystem = newStaticFileSystem(dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
return func(ctx *macaron.Context, log *log.Logger) {
|
|
|
|
opts.handle(ctx, log, opts)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (opts *Options) handle(ctx *macaron.Context, log *log.Logger, opt *Options) bool {
|
|
|
|
if ctx.Req.Method != "GET" && ctx.Req.Method != "HEAD" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
file := ctx.Req.URL.Path
|
|
|
|
// if we have a prefix, filter requests by stripping the prefix
|
|
|
|
if opt.Prefix != "" {
|
|
|
|
if !strings.HasPrefix(file, opt.Prefix) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
file = file[len(opt.Prefix):]
|
|
|
|
if file != "" && file[0] != '/' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := opt.FileSystem.Open(file)
|
|
|
|
if err != nil {
|
2020-04-18 15:01:06 -06:00
|
|
|
// 404 requests to any known entries in `public`
|
|
|
|
if path.Base(opts.Directory) == "public" {
|
|
|
|
parts := strings.Split(file, "/")
|
|
|
|
if len(parts) < 2 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, entry := range knownEntries {
|
|
|
|
if entry == parts[1] {
|
|
|
|
ctx.Resp.WriteHeader(404)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-03 15:37:05 -07:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
fi, err := f.Stat()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("[Static] %q exists, but fails to open: %v", file, err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to serve index file
|
|
|
|
if fi.IsDir() {
|
|
|
|
// Redirect if missing trailing slash.
|
|
|
|
if !strings.HasSuffix(ctx.Req.URL.Path, "/") {
|
2019-01-09 11:39:01 -07:00
|
|
|
http.Redirect(ctx.Resp, ctx.Req.Request, path.Clean(ctx.Req.URL.Path+"/"), http.StatusFound)
|
2018-02-03 15:37:05 -07:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err = opt.FileSystem.Open(file)
|
|
|
|
if err != nil {
|
|
|
|
return false // Discard error.
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
fi, err = f.Stat()
|
|
|
|
if err != nil || fi.IsDir() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !opt.SkipLogging {
|
|
|
|
log.Println("[Static] Serving " + file)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add an Expires header to the static content
|
|
|
|
if opt.ExpiresAfter > 0 {
|
|
|
|
ctx.Resp.Header().Set("Expires", time.Now().Add(opt.ExpiresAfter).UTC().Format(http.TimeFormat))
|
|
|
|
tag := GenerateETag(string(fi.Size()), fi.Name(), fi.ModTime().UTC().Format(http.TimeFormat))
|
|
|
|
ctx.Resp.Header().Set("ETag", tag)
|
|
|
|
if ctx.Req.Header.Get("If-None-Match") == tag {
|
|
|
|
ctx.Resp.WriteHeader(304)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
http.ServeContent(ctx.Resp, ctx.Req.Request, file, fi.ModTime(), f)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// GenerateETag generates an ETag based on size, filename and file modification time
|
|
|
|
func GenerateETag(fileSize, fileName, modTime string) string {
|
|
|
|
etag := fileSize + fileName + modTime
|
|
|
|
return base64.StdEncoding.EncodeToString([]byte(etag))
|
2017-01-28 15:14:56 -07:00
|
|
|
}
|