-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkflow-archiver.go
227 lines (185 loc) · 6.16 KB
/
workflow-archiver.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
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"strings"
"time"
"compress/gzip"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/bloberror"
"github.com/google/go-github/v53/github"
"github.com/gregjones/httpcache"
"github.com/palantir/go-githubapp/githubapp"
"github.com/pkg/errors"
"github.com/rcrowley/go-metrics"
"github.com/rs/zerolog"
"gopkg.in/yaml.v2"
)
type WorkflowHandler struct {
githubapp.ClientCreator
StorageAccountName string
}
type Config struct {
Server HTTPConfig `yaml:"server"`
Github githubapp.Config `yaml:"github"`
Azure Azure `yaml:"azure"`
}
type Azure struct {
StorageAccountName string `yaml:"storage_account_name"`
}
type HTTPConfig struct {
Address string `yaml:"address"`
Port int `yaml:"port"`
}
func readConfig(path string) (*Config, error) {
var c Config
bytes, err := os.ReadFile(path)
if err != nil {
return nil, errors.Wrapf(err, "failed reading server config file: %s", path)
}
if err := yaml.UnmarshalStrict(bytes, &c); err != nil {
return nil, errors.Wrap(err, "failed parsing configuration file")
}
return &c, nil
}
func (h *WorkflowHandler) Handles() []string {
return []string{"workflow_run"}
}
func (h *WorkflowHandler) Handle(ctx context.Context, eventType, deliveryID string, payload []byte) error {
// Parse the workflow run event
var event github.WorkflowRunEvent
if err := json.Unmarshal(payload, &event); err != nil {
return errors.Wrap(err, "failed to parse workflow run event")
}
// Get the installation ID
installationID := githubapp.GetInstallationIDFromEvent(&event)
// Prepare the context
ctx = githubapp.DefaultContextDeriver(ctx)
// Check if workflow run is completed
if *event.Action != "completed" {
zerolog.Ctx(ctx).Info().Msgf("Workflow run %d is not completed", *event.WorkflowRun.ID)
return nil
}
// Get the installation client
client, err := h.NewInstallationClient(installationID)
if err != nil {
return err
}
// Check if workflow run is successful
if *event.WorkflowRun.Conclusion != "success" {
zerolog.Ctx(ctx).Info().Msgf("Workflow run %d is not successful", *event.WorkflowRun.ID)
}
// Get Log URL from workflow run
logURL, _, err := client.Actions.GetWorkflowRunLogs(ctx, *event.GetRepo().Owner.Login, *event.GetRepo().Name, *event.WorkflowRun.ID, true)
if err != nil {
return errors.Wrap(err, "failed to get workflow run log URL")
}
// Get the log
log, err := http.Get(logURL.String())
if err != nil {
return errors.Wrap(err, "failed to get workflow run logs")
}
blobURL := fmt.Sprintf("https://%s.blob.core.windows.net/", h.StorageAccountName)
// Log to Azure Blob Storage
err = h.logToAzureBlobStorage(log, blobURL, *event.GetRepo().Name, *event.GetRepo().Owner.Login, *event.WorkflowRun.ID)
if err != nil {
return errors.Wrap(err, "failed to log to Azure Blob Storage")
}
return nil
}
// Log to Azure Blob Storage
func (h *WorkflowHandler) logToAzureBlobStorage(log *http.Response, blobURL, repoName, orgName string, workflowRunID int64) error {
// Create a context object for the request
ctx := context.Background()
//convert http.Response to []byte
body, err := io.ReadAll(log.Body)
if err != nil {
return errors.Wrap(err, "failed to convert http.Response to []byte")
}
//compress log
compressedBody, err := compress(body)
if err != nil {
return errors.Wrap(err, "failed to compress []byte")
}
// Create a default credential object using the default Azure Identity
credential, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
return errors.Wrap(err, "failed to get Azure credential")
}
// Create a azure blob client
client, err := azblob.NewClient(blobURL, credential, nil)
if err != nil {
return errors.Wrap(err, "failed to get Azure Blob client")
}
// Create the container
// The container name must be lower case
containerName := fmt.Sprintf("%s-%s", orgName, repoName)
containerName = strings.ToLower(containerName)
fmt.Printf("Creating a container named %s\n", containerName)
_, err = client.CreateContainer(ctx, containerName, nil)
if bloberror.HasCode(err, bloberror.ContainerAlreadyExists) {
fmt.Printf("A container named %s already exists.\n", containerName)
} else if err != nil {
return errors.Wrap(err, "failed to create container")
}
// Create a unique name for the blob with the prefix being the workflow run ID and timestamp
blobName := fmt.Sprintf("%d-%d.log.gz", workflowRunID, time.Now().Unix())
// Upload to data to blob storage
fmt.Printf("Uploading a blob named %s\n", blobName)
_, err = client.UploadBuffer(ctx, containerName, blobName, compressedBody, &azblob.UploadBufferOptions{})
if err != nil {
return errors.Wrap(err, "failed to upload buffer")
}
return nil
}
// Compress log with gzip
func compress(body []byte) ([]byte, error) {
var buf bytes.Buffer
gz := gzip.NewWriter(&buf)
if _, err := gz.Write(body); err != nil {
return nil, err
}
if err := gz.Close(); err != nil {
return nil, err
}
return buf.Bytes(), nil
}
func main() {
config, err := readConfig("config.yml")
if err != nil {
panic(err)
}
logger := zerolog.New(os.Stdout).With().Timestamp().Logger()
zerolog.DefaultContextLogger = &logger
metricsRegistry := metrics.DefaultRegistry
cc, err := githubapp.NewDefaultCachingClientCreator(
config.Github,
githubapp.WithClientUserAgent("workflow-archiver-bot/1.0.0"),
githubapp.WithClientTimeout(3*time.Second),
githubapp.WithClientCaching(false, func() httpcache.Cache { return httpcache.NewMemoryCache() }),
githubapp.WithClientMiddleware(
githubapp.ClientMetrics(metricsRegistry),
),
)
if err != nil {
panic(err)
}
workflowHandler := &WorkflowHandler{
ClientCreator: cc,
StorageAccountName: config.Azure.StorageAccountName,
}
webhookHandler := githubapp.NewDefaultEventDispatcher(config.Github, workflowHandler)
http.Handle(githubapp.DefaultWebhookRoute, webhookHandler)
addr := fmt.Sprintf("%s:%d", config.Server.Address, config.Server.Port)
logger.Info().Msgf("Starting server on %s...", addr)
err = http.ListenAndServe(addr, nil)
if err != nil {
panic(err)
}
}