gitea-webhook-listener/main.go

86 lines
1.9 KiB
Go
Raw Normal View History

2024-04-29 22:24:00 +02:00
package main
import (
"encoding/json"
"fmt"
"io"
"log"
2024-04-29 22:24:00 +02:00
"net/http"
"os"
"os/exec"
"path"
"runtime"
2024-04-29 22:24:00 +02:00
"gitea.urkob.com/urko/gitea-webhook-listener/kit/config"
)
func main() {
// Get root path
_, filename, _, _ := runtime.Caller(0)
cfg, err := config.LoadConfig(path.Join(path.Dir(filename), "configs", "app.yml"))
2024-04-29 22:24:00 +02:00
if err != nil {
log.Fatalf("Error loading config: %v", err)
2024-04-29 22:24:00 +02:00
}
http.HandleFunc("/", handlePayload(cfg.Secret, cfg.Scripts))
2024-04-29 22:24:00 +02:00
http.ListenAndServe(fmt.Sprintf(":%d", cfg.Port), nil)
}
func handlePayload(secret string, scripts map[string]config.ConfigScript) func(w http.ResponseWriter, r *http.Request) {
2024-04-29 22:24:00 +02:00
return (func(w http.ResponseWriter, r *http.Request) {
// Read the request body
body, err := io.ReadAll(r.Body)
if err != nil {
http.Error(w, "Failed to read request body", http.StatusBadRequest)
return
}
defer r.Body.Close()
authHeader := r.Header.Get("Authorization")
log.Println("authHeader", authHeader)
if authHeader != secret {
2024-04-29 22:24:00 +02:00
http.Error(w, "Signatures didn't match", http.StatusUnauthorized)
return
}
if !r.URL.Query().Has("project") {
http.Error(w, "", http.StatusBadRequest)
return
}
project := r.URL.Query().Get("project")
scr, found := scripts[project]
if !found {
http.Error(w, "not found", http.StatusNotFound)
return
}
log.Println("body", body)
2024-04-29 22:24:00 +02:00
// Parse the JSON payload
var payload interface{}
err = json.Unmarshal(body, &payload)
if err != nil {
http.Error(w, "Failed to parse JSON payload", http.StatusBadRequest)
return
}
// TODO: Do something with the payload
fmt.Fprintf(w, "I got some JSON: %v", payload)
if err := execute(scr.BinaryPath, scr.ScriptPath); err != nil {
2024-04-29 22:24:00 +02:00
panic(err)
}
})
}
func execute(binaryPath, scriptPath string) error {
cmd := exec.Command(binaryPath, scriptPath)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil {
return fmt.Errorf("cmd.Run %w", err)
}
return nil
}