pages-server/server/try.go

93 lines
3 KiB
Go
Raw Normal View History

2021-12-05 17:17:28 +00:00
package server
import (
2022-07-27 15:25:08 +00:00
"net/http"
2022-11-11 18:03:17 +00:00
"path"
2021-12-05 17:17:28 +00:00
"strings"
2022-11-11 18:03:17 +00:00
"time"
2021-12-05 17:17:28 +00:00
"codeberg.org/codeberg/pages/html"
"codeberg.org/codeberg/pages/server/cache"
2022-07-27 15:25:08 +00:00
"codeberg.org/codeberg/pages/server/context"
"codeberg.org/codeberg/pages/server/gitea"
2021-12-05 17:17:28 +00:00
"codeberg.org/codeberg/pages/server/upstream"
2022-11-11 18:03:17 +00:00
"github.com/rs/zerolog"
2021-12-05 17:17:28 +00:00
)
// tryUpstream forwards the target request to the Gitea API, and shows an error page on failure.
2022-07-27 15:25:08 +00:00
func tryUpstream(ctx *context.Context, giteaClient *gitea.Client,
2022-08-28 14:21:37 +00:00
mainDomainSuffix, trimmedHost string,
2021-12-05 17:17:28 +00:00
targetOptions *upstream.Options,
targetOwner, targetRepo, targetBranch, targetPath string,
2021-12-05 17:17:28 +00:00
2022-07-27 13:39:46 +00:00
canonicalDomainCache cache.SetGetKey,
) {
2021-12-05 17:17:28 +00:00
// check if a canonical domain exists on a request on MainDomain
2022-08-28 14:21:37 +00:00
if strings.HasSuffix(trimmedHost, mainDomainSuffix) {
canonicalDomain, _ := upstream.CheckCanonicalDomain(giteaClient, targetOwner, targetRepo, targetBranch, "", string(mainDomainSuffix), canonicalDomainCache)
2021-12-05 17:17:28 +00:00
if !strings.HasSuffix(strings.SplitN(canonicalDomain, "/", 2)[0], string(mainDomainSuffix)) {
2022-07-27 15:25:08 +00:00
canonicalPath := ctx.Req.RequestURI
2021-12-05 17:17:28 +00:00
if targetRepo != "pages" {
2021-12-09 18:32:30 +00:00
path := strings.SplitN(canonicalPath, "/", 3)
if len(path) >= 3 {
2021-12-09 19:16:43 +00:00
canonicalPath = "/" + path[2]
2021-12-09 18:32:30 +00:00
}
2021-12-05 17:17:28 +00:00
}
2022-07-27 15:25:08 +00:00
ctx.Redirect("https://"+canonicalDomain+canonicalPath, http.StatusTemporaryRedirect)
2021-12-05 17:17:28 +00:00
return
}
}
targetOptions.TargetOwner = targetOwner
targetOptions.TargetRepo = targetRepo
targetOptions.TargetBranch = targetBranch
targetOptions.TargetPath = targetPath
targetOptions.Host = string(trimmedHost)
2021-12-05 17:17:28 +00:00
// Try to request the file from the Gitea API
2022-07-27 13:48:48 +00:00
if !targetOptions.Upstream(ctx, giteaClient) {
html.ReturnErrorPage(ctx, "", ctx.StatusCode)
2021-12-05 17:17:28 +00:00
}
}
2022-11-11 18:03:17 +00:00
func tryBranch2(log zerolog.Logger, ctx *context.Context, giteaClient *gitea.Client,
repoOwner, repoName, branch string, _path []string, canonicalLink string) (
targetRepo, targetPath, targetBranch string, branchTimestamp *time.Time,
works bool) {
if repoName == "" {
log.Debug().Msg("tryBranch: repo == ''")
return "", "", "", nil, false
}
// Replace "~" to "/" so we can access branch that contains slash character
// Branch name cannot contain "~" so doing this is okay
branch = strings.ReplaceAll(branch, "~", "/")
// Check if the branch exists, otherwise treat it as a file path
branchTimestampResult := upstream.GetBranchTimestamp(giteaClient, repoOwner, repoName, branch)
if branchTimestampResult == nil {
log.Debug().Msg("tryBranch: branch doesn't exist")
return "", "", "", nil, false
}
// Branch exists, use it
targetRepo = repoName
targetPath = path.Join(_path...)
targetBranch = branchTimestampResult.Branch
branchTimestamp = &branchTimestampResult.Timestamp
if canonicalLink != "" {
// Hide from search machines & add canonical link
ctx.RespWriter.Header().Set("X-Robots-Tag", "noarchive, noindex")
ctx.RespWriter.Header().Set("Link",
strings.NewReplacer("%b", targetBranch, "%p", targetPath).Replace(canonicalLink)+
"; rel=\"canonical\"",
)
}
log.Debug().Msg("tryBranch: true")
return
}