-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhook.go
58 lines (48 loc) · 1.35 KB
/
hook.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package main
import (
"fmt"
"io"
"os"
"os/exec"
)
// This executes the supplied cmd by /bin/sh and returns an error if it returns
// unexpectedly
func System(cmdString string) error {
return SystemV(cmdString, []string{}, os.Stderr, os.Stderr)
}
func SystemV(cmdString string, extraEnviron []string, stdout io.Writer, stderr io.Writer) error {
cmd := exec.Command("/bin/sh", "-c", cmdString)
cmd.Env = append(os.Environ(), extraEnviron...)
cmd.Stdout = stdout
cmd.Stderr = stderr
return cmd.Run()
}
func callPreProcessingHook() {
if appConfig.PreProcessingHook != "" {
LOG.Println("### Calling PreProcessingHook ...")
err := System(appConfig.PreProcessingHook)
if err != nil {
LOG.Printf("PreProcessingHook ended with an error: %s\n", err)
}
}
}
func callPostProcessingHook() {
if appConfig.PostProcessingHook != "" {
LOG.Println("\n### Calling PostProcessingHook ...")
err := System(appConfig.PostProcessingHook)
if err != nil {
LOG.Printf("PostProcessingHook ended with an error: %s\n", err)
}
}
}
func callEpisodeHook(episodePath, seriesName string) {
if appConfig.EpisodeHook != "" {
LOG.Println("# Calling EpisodeHook ...")
hookCmd := fmt.Sprintf("%s \"%s\" \"%s\"",
appConfig.EpisodeHook, episodePath, seriesName)
err := System(hookCmd)
if err != nil {
LOG.Printf("EpisodeHook ended with an error: %s\n", err)
}
}
}