mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-29 00:55:32 +00:00
79 lines
1.8 KiB
Go
79 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"githib.com/Theodor-Springmann-Stiftung/kgpz_web/helpers"
|
|
"githib.com/Theodor-Springmann-Stiftung/kgpz_web/providers"
|
|
)
|
|
|
|
// 1. Check if folder exists
|
|
// - If not, clone the repo, if possible or throw if error
|
|
// 2. If folder exists, try to pull the repo, and if successful:
|
|
// - setup commit date & hash
|
|
// - Setup GitHub webhook if set
|
|
// 3. Serialize XML DATA
|
|
|
|
type KGPZ struct {
|
|
Config *providers.ConfigProvider
|
|
Repo *providers.GitProvider
|
|
}
|
|
|
|
func NewKGPZ(config *providers.ConfigProvider) *KGPZ {
|
|
if config == nil {
|
|
panic("ConfigProvider is nil")
|
|
}
|
|
|
|
if err := config.Validate(); err != nil {
|
|
helpers.MaybePanic(err, "Error validating config")
|
|
}
|
|
|
|
return &KGPZ{Config: config}
|
|
}
|
|
|
|
func (k *KGPZ) IsDebug() bool {
|
|
return k.Config.Debug
|
|
}
|
|
|
|
func (k *KGPZ) InitRepo() {
|
|
gp := providers.NewGitProvider(k.Config.Config.GitURL, k.Config.Config.FolderPath, k.Config.Config.GitBranch)
|
|
|
|
// If folder exists try to pull, otherwise clone:
|
|
// TODO: there is no need to panic if clone can't be done, jus log the errors
|
|
// The code will panic if the XML data can't be parsed.
|
|
if gp != nil {
|
|
if _, err := os.Stat(k.Config.FolderPath); os.IsNotExist(err) {
|
|
err := gp.Clone()
|
|
if err != nil {
|
|
helpers.LogOnErr(gp, err, "Error cloning repo")
|
|
}
|
|
} else {
|
|
err := gp.Pull()
|
|
if err != nil {
|
|
helpers.LogOnErr(gp, err, "Error pulling repo")
|
|
}
|
|
}
|
|
|
|
if err := gp.Validate(); err != nil {
|
|
helpers.LogOnErr(gp, err, "Error validating repo")
|
|
gp = nil
|
|
}
|
|
|
|
if k.IsDebug() && gp != nil {
|
|
helpers.LogOnDebug(gp, "GitProvider")
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func main() {
|
|
cfg := providers.NewConfigProvider([]string{"config.dev.json", "config.json"})
|
|
if err := cfg.Read(); err != nil {
|
|
helpers.MaybePanic(err, "Error reading config")
|
|
}
|
|
|
|
kgpz := NewKGPZ(cfg)
|
|
kgpz.InitRepo()
|
|
|
|
}
|