-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlitepipe.go
232 lines (189 loc) · 4.99 KB
/
litepipe.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package main
import (
"crypto/hmac"
"crypto/sha1"
"encoding/hex"
"encoding/json"
"flag"
"fmt"
"io"
"net"
"net/http"
"os"
"os/exec"
"path/filepath"
"time"
)
func main() {
fmt.Printf("\nLitePipe version 0.1.14\n")
fmt.Printf("PID: %d\n", os.Getpid())
configPath := flag.String("config", "config.json", "The path to the config file")
flag.Parse()
loadConfig(*configPath)
err := tryListenAndServe(config.Port)
if err != nil {
fmt.Printf("Port %d is unavailable\n", config.Port)
return
}
fmt.Printf("Listening on port %d\n\n", config.Port)
http.HandleFunc("/", HandleWebhook)
http.ListenAndServe(fmt.Sprintf(":%d", config.Port), nil)
}
func tryListenAndServe(port int) error {
addr := fmt.Sprintf(":%d", port)
listener, err := net.Listen("tcp", addr)
if err != nil {
return err
}
defer listener.Close()
return nil
}
var config struct {
Port int `json:"port"`
WebhookSecret string `json:"webhookSecret"`
TriggerPaths []string `json:"triggerPaths"`
Tasks []string `json:"tasks"`
TasksWorkingDirectory string `json:"tasksWorkingDirectory"`
}
func loadConfig(path string) {
file, err := os.Open(path)
if err != nil {
fmt.Printf("Error opening config file: %v\n", err)
os.Exit(1)
}
defer file.Close()
reader := io.Reader(file)
decoder := json.NewDecoder(reader)
if err := decoder.Decode(&config); err != nil {
fmt.Printf("Error parsing config file: %v\n", err)
os.Exit(1)
}
validateConfig()
}
func validateConfig() {
if config.Port == 0 {
config.Port = 3001
}
if config.WebhookSecret == "" {
fmt.Println("You need to provide your webhook secret")
os.Exit(1)
}
if config.TriggerPaths == nil || len(config.TriggerPaths) == 0 {
fmt.Println("No trigger paths specified, defaulting to *")
config.TriggerPaths = []string{"*"}
}
if config.Tasks == nil || len(config.Tasks) == 0 {
fmt.Println("There needs to be at least one task")
os.Exit(1)
}
if config.TasksWorkingDirectory == "" {
fmt.Println("No working directory for tasks to be executed in specified, defaulting to current directory")
}
}
type commit struct {
Added []string `json:"added"`
Modified []string `json:"modified"`
Removed []string `json:"removed"`
ID string `json:"id"`
Message string `json:"message"`
Author struct {
Name string `json:"name"`
Email string `json:"email"`
} `json:"author"`
Timestamp string `json:"timestamp"`
}
type webhookBody struct {
Commit commit `json:"head_commit"`
}
func HandleWebhook(w http.ResponseWriter, r *http.Request) {
body, err := io.ReadAll(r.Body)
if err != nil {
return
}
signature := r.Header.Get("X-Hub-Signature")
if !validWebhookSignature(signature, body) {
fmt.Println("Invalid Webhook")
http.Error(w, "Invalid Webhook", http.StatusForbidden)
return
}
var payload webhookBody
err = json.Unmarshal(body, &payload)
if err != nil {
fmt.Println("Failed to parse JSON payload:", err)
http.Error(w, "Failed to parse JSON payload", http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
processWebhookPayload(payload)
}
func processWebhookPayload(payload webhookBody) {
var commit commit = payload.Commit
fmt.Println("---------------")
fmt.Printf("Received webhook for commit: \n%s \"%s\" \nat %s\n", commit.ID, commit.Message, time.Now().UTC().Format("2006-01-02 15:04:05 MST"))
triggerChanged := false
if len(commit.Added) > 0 {
for _, file := range commit.Added {
if pathsMatch(file) {
triggerChanged = true
}
}
}
if len(commit.Modified) > 0 {
for _, file := range commit.Modified {
if pathsMatch(file) {
triggerChanged = true
}
}
}
if len(commit.Removed) > 0 {
for _, file := range commit.Removed {
if pathsMatch(file) {
triggerChanged = true
}
}
}
if triggerChanged {
fmt.Printf("\nOne or more changes in trigger paths, running tasks...\n")
for i, task := range config.Tasks {
fmt.Printf("\n(%d/%d): %s\n", i+1, len(config.Tasks), task)
start := time.Now()
cmd := exec.Command("bash", "-c", task)
cmd.Dir = config.TasksWorkingDirectory
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil {
fmt.Printf("Task failed: %s", err)
} else {
fmt.Print("Task completed")
}
elapsed := time.Since(start)
fmt.Printf(" in %s\n", elapsed)
}
} else {
fmt.Printf("\nNo changes in trigger paths\n")
}
fmt.Print("\nStill listening...\n\n")
}
func validWebhookSignature(signature string, payload []byte) bool {
mac := hmac.New(sha1.New, []byte(config.WebhookSecret))
_, err := mac.Write(payload)
if err != nil {
return false
}
expectedMAC := hex.EncodeToString(mac.Sum(nil))
expectedSignature := "sha1=" + expectedMAC
return hmac.Equal([]byte(expectedSignature), []byte(signature))
}
func pathsMatch(path string) bool {
for _, pattern := range config.TriggerPaths {
matched, err := filepath.Match(pattern, path)
if err != nil {
fmt.Println("Error:", err)
return false
}
if matched {
return true
}
}
return false
}