2 Commits
v0.4 ... v0.6

Author SHA1 Message Date
9c735ccf64 fix: allow just binary execution 2024-05-24 22:25:36 +02:00
adf47e4810 fix: allow multiple enviornments 2024-05-24 22:07:55 +02:00
2 changed files with 20 additions and 10 deletions

View File

@@ -7,13 +7,14 @@ import (
)
type Config struct {
Secret string `yaml:"secret"`
Port int `yaml:"port"`
Projects map[string]map[string]ConfigScript `yaml:"projects"`
Secret string `yaml:"secret"`
Port int `yaml:"port"`
Projects map[string][]ConfigScript `yaml:"projects"`
}
type ConfigScript struct {
BinaryPath string `yaml:"binary"`
ScriptPath string `yaml:"script"`
Environment string `yaml:"environment"`
Command string `yaml:"command"`
Arguments string `yaml:"args"`
}
func LoadConfig(path string) (*Config, error) {

19
main.go
View File

@@ -27,11 +27,12 @@ func main() {
if err != nil {
log.Fatalf("Error loading config: %v", err)
}
log.Println("GOOO")
http.HandleFunc("/", handlePayload(cfg.Secret, cfg.Projects))
http.ListenAndServe(fmt.Sprintf(":%d", cfg.Port), nil)
}
func handlePayload(secret string, projects map[string]map[string]config.ConfigScript) func(w http.ResponseWriter, r *http.Request) {
func handlePayload(secret string, projects map[string][]config.ConfigScript) func(w http.ResponseWriter, r *http.Request) {
return (func(w http.ResponseWriter, r *http.Request) {
// Read the request body
body, err := io.ReadAll(r.Body)
@@ -64,23 +65,31 @@ func handlePayload(secret string, projects map[string]map[string]config.ConfigSc
return
}
branchName := strings.Split(payload.Ref, "/")[len(strings.Split(payload.Ref, "/"))-1]
found = false
var scr config.ConfigScript
for i := range proj {
if proj[i].Environment == branchName {
found = true
scr = proj[i]
break
}
scr, found := proj[branchName]
}
if !found {
http.Error(w, "not found", http.StatusNotFound)
return
}
go func() {
if err := execute(scr.BinaryPath, scr.ScriptPath); err != nil {
if err := execute(scr.Command, scr.Arguments); err != nil {
log.Println(err)
}
}()
})
}
func execute(binaryPath, scriptPath string) error {
cmd := exec.Command(binaryPath, scriptPath)
func execute(command, args string) error {
cmd := exec.Command(command, args)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr