Moved github PAT and storage path to env vars

This commit is contained in:
2026-03-30 22:02:39 +02:00
parent b1079efe58
commit bdf7d4f468
10 changed files with 35 additions and 32 deletions
+4 -3
View File
@@ -5,6 +5,7 @@ import (
"quay/app/github"
"quay/app/models"
"quay/internal/config"
"quay/internal/envconfig"
"strings"
"crypto/subtle"
@@ -12,7 +13,7 @@ import (
"github.com/gofiber/fiber/v3"
)
func NewUpdateSiteHandler(cfg *config.Config) fiber.Handler {
func NewUpdateSiteHandler(cfg *config.Config, envCfg *envconfig.EnvConfig) fiber.Handler {
return func(c fiber.Ctx) error {
sitename := c.Query("site")
if sitename == "" {
@@ -58,7 +59,7 @@ func NewUpdateSiteHandler(cfg *config.Config) fiber.Handler {
})
}
sitePath := filepath.Join(cfg.Global.StoragePath, siteConfig.Name)
sitePath := filepath.Join(envCfg.StoragePath, siteConfig.Name)
if _, err := filepath.Abs(sitePath); err != nil {
return c.Status(500).JSON(models.APIError{
Error: "Failed to resolve site path",
@@ -69,7 +70,7 @@ func NewUpdateSiteHandler(cfg *config.Config) fiber.Handler {
siteConfig.Owner,
siteConfig.Repo,
siteConfig.Branch,
cfg.Global.GithubPat,
envCfg.GithubPat,
sitePath,
)