tildepages/server/upstream/helper.go

56 lines
1.6 KiB
Go
Raw Normal View History

2021-12-05 13:47:33 +00:00
package upstream
import (
"github.com/rs/zerolog/log"
2021-12-05 13:47:33 +00:00
"time"
2021-12-05 14:53:46 +00:00
"codeberg.org/codeberg/pages/server/cache"
2021-12-05 13:47:33 +00:00
)
type branchTimestamp struct {
Branch string
Timestamp time.Time
}
// GetBranchTimestamp finds the default branch (if branch is "") and returns the last modification time of the branch
// (or nil if the branch doesn't exist)
func GetBranchTimestamp(owner, repo, branch, giteaRoot, giteaAPIToken string, branchTimestampCache cache.SetGetKey) *branchTimestamp {
log.Debug().Msgf("looking up timestamp for %s/%s %s branch", owner, repo, branch)
2021-12-05 13:47:33 +00:00
if result, ok := branchTimestampCache.Get(owner + "/" + repo + "/" + branch); ok {
if result == nil {
return nil
}
return result.(*branchTimestamp)
}
result := &branchTimestamp{
Branch: branch,
}
if len(branch) == 0 {
2021-12-05 13:47:33 +00:00
// Get default branch
defaultBranch, err := giteaGetRepoDefaultBranch(giteaRoot, owner, repo, giteaAPIToken)
if err != nil {
2022-05-26 19:23:27 +00:00
log.Err(err).Msg("GetBranchTimestamp: something went wrong with giteaGetRepoDefaultBranch")
_ = branchTimestampCache.Set(owner+"/"+repo+"/", nil, defaultBranchCacheTimeout)
2021-12-05 13:47:33 +00:00
return nil
}
result.Branch = defaultBranch
branch = defaultBranch
2021-12-05 13:47:33 +00:00
}
timestamp, err := giteaGetRepoBranchTimestamp(giteaRoot, owner, repo, branch, giteaAPIToken)
if err != nil {
2022-05-26 19:23:27 +00:00
log.Err(err).Msg("GetBranchTimestamp: something went wrong with giteaGetRepoBranchTimestamp")
2021-12-05 13:47:33 +00:00
return nil
}
result.Timestamp = timestamp
2021-12-05 15:24:26 +00:00
_ = branchTimestampCache.Set(owner+"/"+repo+"/"+branch, result, branchExistenceCacheTimeout)
2021-12-05 13:47:33 +00:00
return result
}
type fileResponse struct {
exists bool
mimeType string
body []byte
}