gitea-pages-server/server/try.go

50 lines
1.6 KiB
Go
Raw Normal View History

2021-12-05 18:17:28 +01:00
package server
import (
"net/http"
2021-12-05 18:17:28 +01:00
"strings"
"codeberg.org/codeberg/pages/html"
"codeberg.org/codeberg/pages/server/cache"
"codeberg.org/codeberg/pages/server/context"
"codeberg.org/codeberg/pages/server/gitea"
2021-12-05 18:17:28 +01:00
"codeberg.org/codeberg/pages/server/upstream"
)
// tryUpstream forwards the target request to the Gitea API, and shows an error page on failure.
func tryUpstream(ctx *context.Context, giteaClient *gitea.Client,
mainDomainSuffix, trimmedHost string,
2021-12-05 18:17:28 +01:00
targetOptions *upstream.Options,
targetOwner, targetRepo, targetBranch, targetPath string,
2021-12-05 18:17:28 +01:00
canonicalDomainCache cache.SetGetKey,
) {
2021-12-05 18:17:28 +01:00
// check if a canonical domain exists on a request on MainDomain
if strings.HasSuffix(trimmedHost, mainDomainSuffix) {
canonicalDomain, _ := upstream.CheckCanonicalDomain(giteaClient, targetOwner, targetRepo, targetBranch, "", string(mainDomainSuffix), canonicalDomainCache)
2021-12-05 18:17:28 +01:00
if !strings.HasSuffix(strings.SplitN(canonicalDomain, "/", 2)[0], string(mainDomainSuffix)) {
canonicalPath := ctx.Req.RequestURI
2021-12-05 18:17:28 +01:00
if targetRepo != "pages" {
2021-12-09 19:32:30 +01:00
path := strings.SplitN(canonicalPath, "/", 3)
if len(path) >= 3 {
2021-12-09 20:16:43 +01:00
canonicalPath = "/" + path[2]
2021-12-09 19:32:30 +01:00
}
2021-12-05 18:17:28 +01:00
}
ctx.Redirect("https://"+canonicalDomain+canonicalPath, http.StatusTemporaryRedirect)
2021-12-05 18:17:28 +01:00
return
}
}
targetOptions.TargetOwner = targetOwner
targetOptions.TargetRepo = targetRepo
targetOptions.TargetBranch = targetBranch
targetOptions.TargetPath = targetPath
targetOptions.Host = string(trimmedHost)
2021-12-05 18:17:28 +01:00
// Try to request the file from the Gitea API
if !targetOptions.Upstream(ctx, giteaClient) {
html.ReturnErrorPage(ctx, "", ctx.StatusCode)
2021-12-05 18:17:28 +01:00
}
}