Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/backends/srndv2/src/srnd/hook.go
Jeff Becker e093864ee7
* configurable thumbnails
* start working on spam folder
2017-11-12 07:58:30 -05:00

25 lines
406 B
Go

package srnd
import (
"log"
"os/exec"
)
type HookConfig struct {
name string
exec string
enable bool
}
func (config *HookConfig) Exec(group, msgid, ref string) {
if config.enable {
cmd := exec.Command(config.exec, group, msgid, ref)
err := cmd.Run()
if err != nil {
b, _ := cmd.CombinedOutput()
log.Println("calling hook", config.name, "failed")
log.Println(string(b))
}
}
}