pages-server/server/upstream/helper.go

51 lines
1.3 KiB
Go
Raw Normal View History

2021-12-05 14:47:33 +01:00
package upstream
import (
"time"
2021-12-05 15:53:46 +01:00
"codeberg.org/codeberg/pages/server/cache"
2022-05-15 23:12:13 +02:00
"codeberg.org/codeberg/pages/server/gitea"
2021-12-05 14:47:33 +01: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)
2022-05-15 23:12:13 +02:00
func GetBranchTimestamp(giteaClient *gitea.Client, owner, repo, branch string, branchTimestampCache cache.SetGetKey) *branchTimestamp {
2021-12-05 14:47:33 +01: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 14:47:33 +01:00
// Get default branch
2022-05-15 23:12:13 +02:00
defaultBranch, err := giteaClient.GiteaGetRepoDefaultBranch(owner, repo)
if err != nil {
_ = branchTimestampCache.Set(owner+"/"+repo+"/", nil, defaultBranchCacheTimeout)
2021-12-05 14:47:33 +01:00
return nil
}
result.Branch = defaultBranch
2021-12-05 14:47:33 +01:00
}
2022-05-15 23:12:13 +02:00
timestamp, err := giteaClient.GiteaGetRepoBranchTimestamp(owner, repo, branch)
if err != nil {
2021-12-05 14:47:33 +01:00
return nil
}
result.Timestamp = timestamp
2021-12-05 16:24:26 +01:00
_ = branchTimestampCache.Set(owner+"/"+repo+"/"+branch, result, branchExistenceCacheTimeout)
2021-12-05 14:47:33 +01:00
return result
}
type fileResponse struct {
exists bool
mimeType string
body []byte
}