package main // see `man 5 githooks` for details import ( "errors" "fmt" "io" "log" "os" "strings" ) func main() { log.SetFlags(0) log.Println("Starting craft") log.Printf("Git hook type: %s\n", getHookType()) cwd, err := os.Getwd() if err != nil { log.Fatal(err) } fmt.Printf("Current working directory: %s\n", cwd) for { fmt.Println(getUpdate()) } } func getHookType() string { args := len(os.Args) if args != 1 { log.Fatalf("Expected zero arguments but %d were given", args-1) } prefix := `hooks/` path := os.Args[0] hookType := strings.TrimPrefix(path, prefix) if path == hookType { log.Fatalf("Hook path '%s' has no '%s' prefix", path, prefix) } validateHookType(hookType) return hookType } func validateHookType(hookType string) { validTypes := [...]string{ `post-receive`, } for _, currentType := range validTypes { if hookType == currentType { return } } log.Fatalf("Not supported Git hook type '%s'\n", hookType) } type update struct { old, updated, ref string } func (u update) String() string { ret := fmt.Sprintf("'%s' updated from '%s' to '%s'", u.ref, u.old, u.updated) return ret } func getUpdate() update { var u update _, err := fmt.Scanf("%s %s %s\n", &u.old, &u.updated, &u.ref) if err != nil { if errors.Is(err, io.EOF) { os.Exit(0) } else { log.Fatal(err) } } return u }