mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2024-11-18 10:29:43 +00:00
Clean up, fix bugs, implement caching & use API
This commit is contained in:
parent
0756993f7e
commit
1a80684e79
3 changed files with 138 additions and 93 deletions
5
go.mod
5
go.mod
|
@ -2,4 +2,7 @@ module codeberg.org/codeberg/pages
|
||||||
|
|
||||||
go 1.16
|
go 1.16
|
||||||
|
|
||||||
require github.com/valyala/fasthttp v1.22.0
|
require (
|
||||||
|
github.com/valyala/fasthttp v1.22.0
|
||||||
|
github.com/valyala/fastjson v1.6.3
|
||||||
|
)
|
||||||
|
|
2
go.sum
2
go.sum
|
@ -6,6 +6,8 @@ github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6Kllzaw
|
||||||
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
|
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
|
||||||
github.com/valyala/fasthttp v1.22.0 h1:OpwH5KDOJ9cS2bq8fD+KfT4IrksK0llvkHf4MZx42jQ=
|
github.com/valyala/fasthttp v1.22.0 h1:OpwH5KDOJ9cS2bq8fD+KfT4IrksK0llvkHf4MZx42jQ=
|
||||||
github.com/valyala/fasthttp v1.22.0/go.mod h1:0mw2RjXGOzxf4NL2jni3gUQ7LfjjUSiG5sskOUUSEpU=
|
github.com/valyala/fasthttp v1.22.0/go.mod h1:0mw2RjXGOzxf4NL2jni3gUQ7LfjjUSiG5sskOUUSEpU=
|
||||||
|
github.com/valyala/fastjson v1.6.3 h1:tAKFnnwmeMGPbwJ7IwxcTPCNr3uIzoIj3/Fh90ra4xc=
|
||||||
|
github.com/valyala/fastjson v1.6.3/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=
|
||||||
github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio=
|
github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio=
|
||||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
|
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
|
||||||
|
|
202
main.go
202
main.go
|
@ -20,6 +20,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"mime"
|
"mime"
|
||||||
"net"
|
"net"
|
||||||
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
@ -29,6 +30,7 @@ import (
|
||||||
_ "embed"
|
_ "embed"
|
||||||
|
|
||||||
"github.com/valyala/fasthttp"
|
"github.com/valyala/fasthttp"
|
||||||
|
"github.com/valyala/fastjson"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MainDomainSuffix specifies the main domain (starting with a dot) for which subdomains shall be served as static
|
// MainDomainSuffix specifies the main domain (starting with a dot) for which subdomains shall be served as static
|
||||||
|
@ -73,37 +75,10 @@ var IndexPages = []string{
|
||||||
// ReservedUsernames specifies the usernames that are reserved by Gitea and thus may not be used as owner names.
|
// ReservedUsernames specifies the usernames that are reserved by Gitea and thus may not be used as owner names.
|
||||||
// The contents are taken from https://github.com/go-gitea/gitea/blob/master/models/user.go#L783; reserved names with
|
// The contents are taken from https://github.com/go-gitea/gitea/blob/master/models/user.go#L783; reserved names with
|
||||||
// dots are removed as they are forbidden for Codeberg Pages anyways.
|
// dots are removed as they are forbidden for Codeberg Pages anyways.
|
||||||
var ReservedUsernames = map[string]struct{}{
|
var ReservedUsernames = createLookupMapFromWords(`
|
||||||
"admin": {},
|
admin api assets attachments avatars captcha commits debug error explore ghost help install issues less login metrics milestones new notifications org plugins pulls raw repo search stars template user
|
||||||
"api": {},
|
|
||||||
"assets": {},
|
`)
|
||||||
"attachments": {},
|
|
||||||
"avatars": {},
|
|
||||||
"captcha": {},
|
|
||||||
"commits": {},
|
|
||||||
"debug": {},
|
|
||||||
"error": {},
|
|
||||||
"explore": {},
|
|
||||||
"ghost": {},
|
|
||||||
"help": {},
|
|
||||||
"install": {},
|
|
||||||
"issues": {},
|
|
||||||
"less": {},
|
|
||||||
"login": {},
|
|
||||||
"metrics": {},
|
|
||||||
"milestones": {},
|
|
||||||
"new": {},
|
|
||||||
"notifications": {},
|
|
||||||
"org": {},
|
|
||||||
"plugins": {},
|
|
||||||
"pulls": {},
|
|
||||||
"raw": {},
|
|
||||||
"repo": {},
|
|
||||||
"search": {},
|
|
||||||
"stars": {},
|
|
||||||
"template": {},
|
|
||||||
"user": {},
|
|
||||||
}
|
|
||||||
|
|
||||||
// main sets up and starts the web server.
|
// main sets up and starts the web server.
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -143,6 +118,7 @@ func main() {
|
||||||
DisablePreParseMultipartForm: false,
|
DisablePreParseMultipartForm: false,
|
||||||
MaxRequestBodySize: 0,
|
MaxRequestBodySize: 0,
|
||||||
NoDefaultServerHeader: true,
|
NoDefaultServerHeader: true,
|
||||||
|
NoDefaultDate: true,
|
||||||
ReadTimeout: 10 * time.Second,
|
ReadTimeout: 10 * time.Second,
|
||||||
}).Serve(listener)
|
}).Serve(listener)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -195,28 +171,47 @@ func handler(ctx *fasthttp.RequestCtx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepare request information to Gitea
|
// Prepare request information to Gitea
|
||||||
var targetOwner, targetRepo, targetPath string
|
var targetOwner, targetRepo, targetBranch, targetPath string
|
||||||
var targetOptions = upstreamOptions{
|
var targetOptions = &upstreamOptions{
|
||||||
ForbiddenMimeTypes: map[string]struct{}{},
|
ForbiddenMimeTypes: map[string]struct{}{},
|
||||||
TryIndexPages: true,
|
TryIndexPages: true,
|
||||||
}
|
}
|
||||||
var alsoTryPagesRepo = false // Also try to treat the repo as the first path element & fall back to the "pages" repo
|
|
||||||
|
|
||||||
if RawDomain != nil && bytes.Equal(ctx.Request.Host(), RawDomain) {
|
if RawDomain != nil && bytes.Equal(ctx.Request.Host(), RawDomain) {
|
||||||
// Serve raw content from RawDomain
|
// Serve raw content from RawDomain
|
||||||
|
|
||||||
targetOptions.TryIndexPages = false
|
targetOptions.TryIndexPages = false
|
||||||
targetOptions.ForbiddenMimeTypes["text/html"] = struct{}{}
|
targetOptions.ForbiddenMimeTypes["text/html"] = struct{}{}
|
||||||
|
targetOptions.DefaultMimeType = "text/plain; charset=utf-8"
|
||||||
|
|
||||||
pathElements := strings.SplitN(string(bytes.Trim(ctx.Request.URI().Path(), "/")), "/", 3)
|
pathElements := strings.SplitN(string(bytes.Trim(ctx.Request.URI().Path(), "/")), "/", 4)
|
||||||
if len(pathElements) < 3 {
|
if len(pathElements) < 2 {
|
||||||
// https://{RawDomain}/{owner}/{repo}/{path} is required
|
// https://{RawDomain}/{owner}/{repo}[/@{branch}]/{path} is required
|
||||||
ctx.Redirect(RawInfoPage, fasthttp.StatusTemporaryRedirect)
|
ctx.Redirect(RawInfoPage, fasthttp.StatusTemporaryRedirect)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
targetOwner = pathElements[0]
|
targetOwner = pathElements[0]
|
||||||
targetRepo = pathElements[1]
|
targetRepo = pathElements[1]
|
||||||
|
if len(pathElements) > 3 {
|
||||||
|
targetPath = strings.Trim(pathElements[2]+"/"+pathElements[3], "/")
|
||||||
|
} else if len(pathElements) > 2 {
|
||||||
targetPath = pathElements[2]
|
targetPath = pathElements[2]
|
||||||
|
}
|
||||||
|
|
||||||
|
// raw.codeberg.page/example/myrepo/@main/index.html
|
||||||
|
if len(pathElements) > 3 && strings.HasPrefix(pathElements[2], "@") {
|
||||||
|
branch, _ := url.PathUnescape(pathElements[2][1:])
|
||||||
|
if branch == "" {
|
||||||
|
branch = pathElements[2][1:]
|
||||||
|
}
|
||||||
|
// Check if the branch exists, otherwise treat it as a file path
|
||||||
|
targetBranch, targetOptions.BranchTimestamp = getBranchTimestamp(targetOwner, targetRepo, branch)
|
||||||
|
if targetOptions.BranchTimestamp != (time.Time{}) {
|
||||||
|
targetPath = strings.Trim(pathElements[3], "/") // branch exists, use it
|
||||||
|
} else {
|
||||||
|
targetBranch = "" // branch doesn't exist, use default branch
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else if bytes.HasSuffix(ctx.Request.Host(), MainDomainSuffix) {
|
} else if bytes.HasSuffix(ctx.Request.Host(), MainDomainSuffix) {
|
||||||
// Serve pages from subdomains of MainDomainSuffix
|
// Serve pages from subdomains of MainDomainSuffix
|
||||||
|
@ -224,13 +219,21 @@ func handler(ctx *fasthttp.RequestCtx) {
|
||||||
pathElements := strings.SplitN(string(bytes.Trim(ctx.Request.URI().Path(), "/")), "/", 2)
|
pathElements := strings.SplitN(string(bytes.Trim(ctx.Request.URI().Path(), "/")), "/", 2)
|
||||||
targetOwner = string(bytes.TrimSuffix(ctx.Request.Host(), MainDomainSuffix))
|
targetOwner = string(bytes.TrimSuffix(ctx.Request.Host(), MainDomainSuffix))
|
||||||
targetRepo = pathElements[0]
|
targetRepo = pathElements[0]
|
||||||
targetPath = pathElements[1]
|
if len(pathElements) > 1 {
|
||||||
alsoTryPagesRepo = true
|
targetPath = strings.Trim(pathElements[1], "/")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if the first directory is a repo with a "pages" branch
|
||||||
|
targetBranch, targetOptions.BranchTimestamp = getBranchTimestamp(targetOwner, targetRepo, "pages")
|
||||||
|
if targetOptions.BranchTimestamp == (time.Time{}) {
|
||||||
|
targetRepo = "pages"
|
||||||
|
targetBranch = ""
|
||||||
|
targetPath = strings.Trim(pathElements[0]+"/"+targetPath, "/")
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// Serve pages from external domains
|
// Serve pages from external domains
|
||||||
|
|
||||||
targetOwner, targetRepo, targetPath = getTargetFromDNS(ctx.Request.Host())
|
targetOwner, targetRepo, targetBranch, targetPath = getTargetFromDNS(ctx)
|
||||||
if targetOwner == "" {
|
if targetOwner == "" {
|
||||||
ctx.Redirect(BrokenDNSPage, fasthttp.StatusTemporaryRedirect)
|
ctx.Redirect(BrokenDNSPage, fasthttp.StatusTemporaryRedirect)
|
||||||
return
|
return
|
||||||
|
@ -243,37 +246,20 @@ func handler(ctx *fasthttp.RequestCtx) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pass request to Gitea
|
// Check for blob path
|
||||||
url := "/" + targetOwner + "/" + targetRepo + "/raw/" + targetPath
|
|
||||||
if strings.HasPrefix(targetPath, "blob/") {
|
if strings.HasPrefix(targetPath, "blob/") {
|
||||||
returnErrorPage(ctx, fasthttp.StatusForbidden)
|
returnErrorPage(ctx, fasthttp.StatusForbidden)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try target
|
if upstream(ctx, targetOwner, targetRepo, targetBranch, targetPath, targetOptions) {
|
||||||
if upstream(ctx, url, targetOptions) {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try target with pages repo
|
returnErrorPage(ctx, ctx.Response.StatusCode())
|
||||||
if alsoTryPagesRepo {
|
|
||||||
targetPath = targetRepo + "/" + targetPath
|
|
||||||
targetRepo = "pages"
|
|
||||||
url := "/" + targetOwner + "/" + targetRepo + "/raw/" + targetPath
|
|
||||||
if strings.HasPrefix(targetPath, "blob/") {
|
|
||||||
returnErrorPage(ctx, fasthttp.StatusForbidden)
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if upstream(ctx, url, targetOptions) {
|
func getTargetFromDNS(ctx *fasthttp.RequestCtx) (targetOwner, targetRepo, targetBranch, targetPath string) {
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
returnErrorPage(ctx, fasthttp.StatusNotFound)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getTargetFromDNS(host []byte) (targetOwner, targetRepo, targetPath string) {
|
|
||||||
// TODO: read CNAME record for host and "www.{host}" to get those values
|
// TODO: read CNAME record for host and "www.{host}" to get those values
|
||||||
// TODO: check codeberg-pages-domains.txt
|
// TODO: check codeberg-pages-domains.txt
|
||||||
return
|
return
|
||||||
|
@ -286,40 +272,77 @@ func returnErrorPage(ctx *fasthttp.RequestCtx, code int) {
|
||||||
ctx.Response.SetBody(bytes.ReplaceAll(NotFoundPage, []byte("%status"), []byte(strconv.Itoa(code))))
|
ctx.Response.SetBody(bytes.ReplaceAll(NotFoundPage, []byte("%status"), []byte(strconv.Itoa(code))))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getBranchTimestamp(owner, repo, branch string) (branchWithFallback string, t time.Time) {
|
||||||
|
branchWithFallback = branch
|
||||||
|
if branch == "" {
|
||||||
|
var body = make([]byte, 0)
|
||||||
|
status, body, err := fasthttp.GetTimeout(body, string(GiteaRoot)+"/api/v1/repos/"+owner+"/"+repo, 10*time.Second)
|
||||||
|
if err != nil || status != 200 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
branch = fastjson.GetString(body, "default_branch")
|
||||||
|
branchWithFallback = branch
|
||||||
|
}
|
||||||
|
|
||||||
|
var body = make([]byte, 0)
|
||||||
|
status, body, err := fasthttp.GetTimeout(body, string(GiteaRoot)+"/api/v1/repos/"+owner+"/"+repo+"/branches/"+branch, 10*time.Second)
|
||||||
|
if err != nil || status != 200 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
t, _ = time.Parse(time.RFC3339, fastjson.GetString(body, "commit", "timestamp"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// upstream requests an URL from GiteaRoot and writes it to the request context; if "final" is set, it also returns a
|
// upstream requests an URL from GiteaRoot and writes it to the request context; if "final" is set, it also returns a
|
||||||
// 404 error if the page couldn't be loaded.
|
// 404 error if the page couldn't be loaded.
|
||||||
func upstream(ctx *fasthttp.RequestCtx, url string, options upstreamOptions) (success bool) {
|
func upstream(ctx *fasthttp.RequestCtx, targetOwner string, targetRepo string, targetBranch string, targetPath string, options *upstreamOptions) (success bool) {
|
||||||
// Prepare necessary (temporary) variables with default values
|
fmt.Printf("Trying: %s/%s/%s/%s\n", targetOwner, targetRepo, targetBranch, targetPath)
|
||||||
body := make([]byte, 0)
|
|
||||||
if options.ForbiddenMimeTypes == nil {
|
if options.ForbiddenMimeTypes == nil {
|
||||||
options.ForbiddenMimeTypes = map[string]struct{}{}
|
options.ForbiddenMimeTypes = map[string]struct{}{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make a request to the upstream URL
|
// Check if the branch exists and when it was modified
|
||||||
status, body, err := fasthttp.GetTimeout(body, string(GiteaRoot) + url, 10 * time.Second)
|
if options.BranchTimestamp == (time.Time{}) {
|
||||||
|
targetBranch, options.BranchTimestamp = getBranchTimestamp(targetOwner, targetRepo, targetBranch)
|
||||||
// Handle errors
|
if options.BranchTimestamp == (time.Time{}) {
|
||||||
if err != nil {
|
ctx.Response.SetStatusCode(fasthttp.StatusNotFound)
|
||||||
// Connection error, probably Gitea or the internet connection is down?
|
|
||||||
fmt.Printf("Couldn't fetch URL \"%s\": %s", url, err)
|
|
||||||
ctx.Response.SetStatusCode(fasthttp.StatusBadGateway)
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if status != 200 {
|
}
|
||||||
|
|
||||||
|
if ifModifiedSince, err := time.Parse(time.RFC1123, string(ctx.Request.Header.Peek("If-Modified-Since"))); err == nil {
|
||||||
|
if !ifModifiedSince.Before(options.BranchTimestamp) {
|
||||||
|
ctx.Response.SetStatusCode(fasthttp.StatusNotModified)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make a GET request to the upstream URL
|
||||||
|
req := fasthttp.AcquireRequest()
|
||||||
|
req.SetRequestURI(string(GiteaRoot) + "/api/v1/repos/" + targetOwner + "/" + targetRepo + "/raw/" + targetBranch + "/" + targetPath)
|
||||||
|
res := fasthttp.AcquireResponse()
|
||||||
|
err := fasthttp.DoTimeout(req, res, 10*time.Second)
|
||||||
|
if res.StatusCode() == fasthttp.StatusNotFound {
|
||||||
if options.TryIndexPages {
|
if options.TryIndexPages {
|
||||||
// copy the options struct & try if an index page exists
|
// copy the options struct & try if an index page exists
|
||||||
optionsForIndexPages := options
|
optionsForIndexPages := *options
|
||||||
optionsForIndexPages.TryIndexPages = false
|
optionsForIndexPages.TryIndexPages = false
|
||||||
optionsForIndexPages.AppendTrailingSlash = true
|
optionsForIndexPages.AppendTrailingSlash = true
|
||||||
for _, indexPage := range IndexPages {
|
for _, indexPage := range IndexPages {
|
||||||
if upstream(ctx, url + "/" + indexPage, optionsForIndexPages) {
|
if upstream(ctx, targetOwner, targetRepo, targetBranch, strings.TrimSuffix(targetPath, "/")+"/"+indexPage, &optionsForIndexPages) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ctx.Response.SetStatusCode(status)
|
ctx.Response.SetStatusCode(fasthttp.StatusNotFound)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
if err != nil || res.StatusCode() != fasthttp.StatusOK {
|
||||||
|
fmt.Printf("Couldn't fetch contents from \"%s\": %s (status code %d)\n", req.RequestURI(), err, res.StatusCode())
|
||||||
|
returnErrorPage(ctx, fasthttp.StatusInternalServerError)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
// Append trailing slash if missing (for index files)
|
// Append trailing slash if missing (for index files)
|
||||||
if options.AppendTrailingSlash && !bytes.HasSuffix(ctx.Request.URI().Path(), []byte{'/'}) {
|
if options.AppendTrailingSlash && !bytes.HasSuffix(ctx.Request.URI().Path(), []byte{'/'}) {
|
||||||
|
@ -328,7 +351,7 @@ func upstream(ctx *fasthttp.RequestCtx, url string, options upstreamOptions) (su
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the MIME type
|
// Set the MIME type
|
||||||
mimeType := mime.TypeByExtension(path.Ext(url))
|
mimeType := mime.TypeByExtension(path.Ext(targetPath))
|
||||||
mimeTypeSplit := strings.SplitN(mimeType, ";", 2)
|
mimeTypeSplit := strings.SplitN(mimeType, ";", 2)
|
||||||
if _, ok := options.ForbiddenMimeTypes[mimeTypeSplit[0]]; ok || mimeType == "" {
|
if _, ok := options.ForbiddenMimeTypes[mimeTypeSplit[0]]; ok || mimeType == "" {
|
||||||
if options.DefaultMimeType != "" {
|
if options.DefaultMimeType != "" {
|
||||||
|
@ -339,11 +362,16 @@ func upstream(ctx *fasthttp.RequestCtx, url string, options upstreamOptions) (su
|
||||||
}
|
}
|
||||||
ctx.Response.Header.SetContentType(mimeType)
|
ctx.Response.Header.SetContentType(mimeType)
|
||||||
|
|
||||||
// TODO: enable Caching - set Date header and respect If-Modified-Since!
|
// Write the response to the original request
|
||||||
|
|
||||||
// Set the response body
|
|
||||||
ctx.Response.SetStatusCode(fasthttp.StatusOK)
|
ctx.Response.SetStatusCode(fasthttp.StatusOK)
|
||||||
ctx.Response.SetBody(body)
|
ctx.Response.Header.SetLastModified(options.BranchTimestamp)
|
||||||
|
err = res.BodyWriteTo(ctx.Response.BodyWriter())
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("Couldn't write body for \"%s\": %s\n", req.RequestURI(), err)
|
||||||
|
returnErrorPage(ctx, fasthttp.StatusInternalServerError)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -353,6 +381,7 @@ type upstreamOptions struct {
|
||||||
ForbiddenMimeTypes map[string]struct{}
|
ForbiddenMimeTypes map[string]struct{}
|
||||||
TryIndexPages bool
|
TryIndexPages bool
|
||||||
AppendTrailingSlash bool
|
AppendTrailingSlash bool
|
||||||
|
BranchTimestamp time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
// envOr reads an environment variable and returns a default value if it's empty.
|
// envOr reads an environment variable and returns a default value if it's empty.
|
||||||
|
@ -362,3 +391,14 @@ func envOr(env string, or string) string {
|
||||||
}
|
}
|
||||||
return or
|
return or
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func createLookupMapFromWords(input string) map[string]struct{} {
|
||||||
|
var res = map[string]struct{}{}
|
||||||
|
input = strings.NewReplacer("\t", " ", "\n", " ", "\r", " ").Replace(input)
|
||||||
|
for _, word := range strings.Split(input, " ") {
|
||||||
|
if len(word) > 0 {
|
||||||
|
res[word] = struct{}{}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue