-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhandle_webhook.go
124 lines (107 loc) · 3.6 KB
/
handle_webhook.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
// Copyright 2021 the GitHub Workflow Job to PubSub authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"time"
"github.com/sethvargo/github-workflow-job-to-pubsub/internal/pubsub"
)
type WorkflowJobEvent struct {
Action string `json:"action"`
WorkflowJob struct {
RunID string `json:"run_id"`
RunURL string `json:"run_url"`
}
Repository struct {
FullName string `json:"full_name"`
} `json:"repository"`
}
func (s *Server) handleWebhook() http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
defer r.Body.Close()
if !isWorkflowJobEvent(r) {
respondJSON(w, &jsonResponse{
Error: "invalid event type",
}, http.StatusBadRequest)
return
}
limitedBody := io.LimitReader(r.Body, 12*1024*1024) // 12 MiB
body, err := io.ReadAll(limitedBody)
if err != nil {
logger.Error("failed to read body", "error", err)
respondJSON(w, &jsonResponse{
Error: fmt.Sprintf("failed to read body: %s", err),
}, http.StatusBadRequest)
return
}
givenSignature := r.Header.Get(GitHubSignatureHeaderName)
if !isValidSignature(givenSignature, body) {
respondJSON(w, &jsonResponse{
Error: "invalid signature",
}, http.StatusBadRequest)
return
}
// If we got this far, it's safe to try and decode the payload.
var event WorkflowJobEvent
if err := json.Unmarshal(body, &event); err != nil {
logger.Error("failed to unmarshal event", "error", err)
respondJSON(w, &jsonResponse{
Error: fmt.Sprintf("failed to unmarshal json: %s", err),
}, http.StatusInternalServerError)
return
}
switch event.Action {
case StatusQueued:
// Increase the size of the pool by adding a message to the queue.
if err := s.pubsubClient.PublishOne(ctx, PubSubTopicName, &pubsub.Message{
Attributes: map[string]string{
"run_id": event.WorkflowJob.RunID,
"run_url": event.WorkflowJob.RunURL,
},
}); err != nil {
logger.Error("failed to publish", "error", err)
respondJSON(w, &jsonResponse{
Error: fmt.Sprintf("failed to publish message: %s", err),
}, http.StatusInternalServerError)
}
case StatusInProgress:
// Do nothing, we already queued a worker for the queued job.
respondJSON(w, &jsonResponse{
Message: "ok",
}, http.StatusOK)
case StatusCompleted:
// Remove an item from the pool.
ctx, done := context.WithTimeout(context.Background(), 7*time.Second)
defer done()
if _, err := s.pubsubClient.PullAndAck(ctx, PubSubSubscriptionName); err != nil {
logger.Error("failed to pull and ack", "error", err)
respondJSON(w, &jsonResponse{
Error: fmt.Sprintf("failed to pull and ack: %s", err),
}, http.StatusInternalServerError)
}
default:
logger.Error("unknown event action", "action", event.Action)
}
})
}
// isWorkflowJobEvent verifies the request is of type "workflow_job", which
// indicates it's safe to attempt to unmarshal into the WorkflowJob struct.
func isWorkflowJobEvent(r *http.Request) bool {
return r.Header.Get(GitHubEventHeaderName) == GitHubEventWorkflowJob
}