This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
429 lines (364 loc) · 10.9 KB
/
main.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
// Copyright 2021, Console Ltd https://console.dev
// SPDX-License-Identifier: AGPL-3.0-or-later
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"strings"
"time"
"github.com/hanzoai/gochimp3"
"golang.org/x/text/language"
"golang.org/x/text/message"
secretmanager "cloud.google.com/go/secretmanager/apiv1"
secretmanagerpb "google.golang.org/genproto/googleapis/cloud/secretmanager/v1"
)
const (
listID = "267911a165" // https://mailchimp.com/help/find-audience-id/
)
// Trace ID is used to track a request through the function calls
// It's set in the HTTP handler, then unset once the request completes
var (
traceID string = ""
)
// Entry defines a log entry in Google Cloud logging format
// https://github.com/GoogleCloudPlatform/golang-samples/blob/fa7b610d56d1d8b7d2002ecc30d995f7e3874de9/run/logging-manual/main.go
type Entry struct {
Message string `json:"message"`
Severity string `json:"severity,omitempty"`
Trace string `json:"logging.googleapis.com/trace,omitempty"`
// Logs Explorer allows filtering and display of this as `jsonPayload.component`.
Component string `json:"component,omitempty"`
}
// String renders an entry structure to the JSON format expected by Cloud Logging.
// https://github.com/GoogleCloudPlatform/golang-samples/blob/fa7b610d56d1d8b7d2002ecc30d995f7e3874de9/run/logging-manual/main.go
func (e Entry) String() string {
if e.Severity == "" {
e.Severity = "INFO"
}
out, err := json.Marshal(e)
if err != nil {
log.Printf("json.Marshal: %v", err)
}
return string(out)
}
func init() {
// Disable log prefixes such as the default timestamp.
// Prefix text prevents the message from being parsed as JSON.
// A timestamp is added when shipping logs to Cloud Logging.
log.SetFlags(0)
}
func main() {
log.Println(Entry{
Severity: "DEBUG",
Message: "func main",
Component: "main",
Trace: traceID,
})
// Define HTTP server.
http.HandleFunc("/", indexHandler)
http.HandleFunc("/getMailchimpStats", getMailchimpStatsHandler)
// PORT environment variable is provided by Cloud Run.
port := os.Getenv("PORT")
if port == "" {
port = "8080"
}
log.Println(Entry{
Severity: "NOTICE",
Message: fmt.Sprintf("Starting server on port %s", port),
Component: "main",
Trace: traceID,
})
s := &http.Server{
Addr: ":" + port,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
IdleTimeout: 120 * time.Second,
MaxHeaderBytes: 1 << 20,
}
log.Fatal(s.ListenAndServe())
}
// HANDLERS
func indexHandler(w http.ResponseWriter, r *http.Request) {
// Set global trace ID for use in other function calls
if traceID == "" {
traceID = getTraceID(r)
}
log.Println(Entry{
Severity: "DEBUG",
Message: "func index handler",
Component: "indexHandler",
Trace: traceID,
})
// The / path matches everything that is not defined above
// So if the path ins't /, 404
if r.URL.Path != "/" {
log.Println(Entry{
Severity: "NOTICE",
Message: fmt.Sprintf("Unknown path: %s", r.URL.Path),
Component: "indexHandler",
Trace: getTraceID(r),
})
w.WriteHeader(http.StatusNotFound)
fmt.Fprintf(w, "404 - Not Found")
return
}
fmt.Fprintf(w, "indexHandler")
traceID = "" // Unset now the request has finished
}
func getMailchimpStatsHandler(w http.ResponseWriter, r *http.Request) {
// Set global trace ID for use in other function calls
if traceID == "" {
traceID = getTraceID(r)
}
log.Println(Entry{
Severity: "DEBUG",
Message: "func getMailchimpStatsHandler",
Component: "getMailchimpStatsHandler",
Trace: getTraceID(r),
})
memberCount := getMailchimpListMemberCount(listID)
// https://us7.admin.mailchimp.com/lists/segments?id=518946
confirmedCount := getMailchimpListSegmentMemberCount(listID, "3577267")
unconfirmedCount := getMailchimpListSegmentMemberCount(listID, "3577271")
// Construct Basecamp message
log.Println(Entry{
Severity: "DEBUG",
Message: "Construct Basecamp message",
Component: "getMailchimpStatsHandler",
Trace: getTraceID(r),
})
var content strings.Builder
p := message.NewPrinter(language.English)
content.WriteString("<strong>Mailchimp Stats (go)</strong><ul>")
content.WriteString(p.Sprintf("<li><strong>Confirmed subscribers:</strong> %d</li>", confirmedCount))
content.WriteString(p.Sprintf("<li><strong>Unconfirmed members:</strong> %d</li>", unconfirmedCount))
content.WriteString(p.Sprintf("<li><strong>Total list members:</strong> %d</li>", memberCount))
log.Println(Entry{
Severity: "DEBUG",
Message: content.String(),
Component: "getMailchimpStatsHandler",
Trace: getTraceID(r),
})
// Post to Basecamp
postBasecampChat(content.String())
fmt.Fprintf(w, "OK")
traceID = "" // Unset now the request has finished
}
// INTERNAL METHODS
// Gets Google Cloud trace ID
// https://github.com/GoogleCloudPlatform/golang-samples/blob/fa7b610d56d1d8b7d2002ecc30d995f7e3874de9/run/logging-manual/main.go
func getTraceID(r *http.Request) string {
// Derive the traceID associated with the current request.
var trace string
traceHeader := r.Header.Get("X-Cloud-Trace-Context")
traceParts := strings.Split(traceHeader, "/")
if len(traceParts) > 0 && len(traceParts[0]) > 0 {
trace = fmt.Sprintf("projects/%s/traces/%s", os.Getenv("K_SERVICE"), traceParts[0])
}
return trace
}
// Accesses the payload for the given secret version. The version can be a
// version number as a string (e.g. "5") or an alias (e.g. "latest").
// E.g. `accessSecret("my-secret/versions/5")`
func accessSecret(name string) (string, error) {
log.Println(Entry{
Severity: "DEBUG",
Message: "func accessSecret",
Component: "accessSecret",
Trace: traceID,
})
// Create the client.
ctx := context.Background()
client, err := secretmanager.NewClient(ctx)
if err != nil {
log.Println(Entry{
Severity: "CRITICAL",
Message: fmt.Sprintf("failed to create secretmanager client: %v", err),
Component: "accessSecret",
Trace: traceID,
})
return "", err
}
defer client.Close()
name = "projects/bc-totorobot-go/secrets/" + name
log.Println(Entry{
Severity: "DEBUG",
Message: fmt.Sprintf("Requesting secret %s", name),
Component: "accessSecret",
Trace: traceID,
})
// Build the request.
req := &secretmanagerpb.AccessSecretVersionRequest{
Name: name,
}
// Call the API.
result, err := client.AccessSecretVersion(ctx, req)
if err != nil {
log.Println(Entry{
Severity: "CRITICAL",
Message: fmt.Sprintf("failed to access secret version: %v", err),
Component: "accessSecret",
Trace: traceID,
})
return "", err
}
log.Println(Entry{
Severity: "DEBUG",
Message: "Secret returned",
Component: "accessSecret",
Trace: traceID,
})
secret := string(result.Payload.Data)
//log.Printf("Plaintext: %s\n", secret)
return secret, nil
}
func getMailchimpListMemberCount(listID string) (MemberCount int) {
log.Println(Entry{
Severity: "DEBUG",
Message: "func getMailchimpListMemberCount",
Component: "getMailchimpListMemberCount",
Trace: traceID,
})
// Get Mailchimp API key
apiKey, err := accessSecret("mailchimp-api-key/versions/latest")
if err != nil {
log.Fatalln(Entry{
Severity: "CRITICAL",
Message: fmt.Sprintf("Failed to get secret: %v", err),
Component: "getMailchimpListMemberCount",
Trace: traceID,
})
}
client := gochimp3.New(apiKey)
// Fetch list
log.Println(Entry{
Severity: "INFO",
Message: fmt.Sprintf("Get list: %s", listID),
Component: "getMailchimpListMemberCount",
Trace: traceID,
})
list, err := client.GetList(listID, nil)
if err != nil {
log.Fatalln(Entry{
Severity: "CRITICAL",
Message: fmt.Sprintf("Failed to get list: %v", err),
Component: "getMailchimpListMemberCount",
Trace: traceID,
})
}
// Get list info
// https://mailchimp.com/developer/api/marketing/lists/get-list-info/
stats := list.Stats
log.Println(Entry{
Severity: "INFO",
Message: fmt.Sprintf("Member count %d", stats.MemberCount),
Component: "getMailchimpListMemberCount",
Trace: traceID,
})
return stats.MemberCount
}
func getMailchimpListSegmentMemberCount(listID string, SegmentID string) (MemberCount int) {
log.Println(Entry{
Severity: "DEBUG",
Message: "func getMailchimpListSegmentMemberCount",
Component: "getMailchimpListSegmentMemberCount",
Trace: traceID,
})
// Get Mailchimp API key
apiKey, err := accessSecret("mailchimp-api-key/versions/latest")
if err != nil {
log.Fatalln(Entry{
Severity: "CRITICAL",
Message: fmt.Sprintf("Failed to get secret: %v", err),
Component: "getMailchimpListMemberCount",
Trace: traceID,
})
}
client := gochimp3.New(apiKey)
// Fetch list
log.Println(Entry{
Severity: "DEBUG",
Message: fmt.Sprintf("Get list %s", listID),
Component: "getMailchimpListSegmentMemberCount",
Trace: traceID,
})
list, err := client.GetList(listID, nil)
if err != nil {
log.Fatalf("Failed to get list: %s", err)
}
// Get Segment info
// https://mailchimp.com/developer/marketing/api/list-segments/get-segment-info/
log.Println(Entry{
Severity: "DEBUG",
Message: fmt.Sprintf("Get segment %s", SegmentID),
Component: "getMailchimpListSegmentMemberCount",
Trace: traceID,
})
segment, err := list.GetSegment(SegmentID, nil)
if err != nil {
log.Fatalln(Entry{
Severity: "CRITICAL",
Message: fmt.Sprintf("Failed to get segment: %s", err),
Component: "getMailchimpListSegmentMemberCount",
Trace: traceID,
})
}
log.Println(Entry{
Severity: "INFO",
Message: fmt.Sprintf("Member count %d", segment.MemberCount),
Component: "getMailchimpListSegmentMemberCount",
Trace: traceID,
})
return segment.MemberCount
}
func postBasecampChat(content string) {
log.Println(Entry{
Severity: "DEBUG",
Message: "func postBasecampChat",
Component: "postBasecampChat",
Trace: traceID,
})
// Create JSON payload
postBody, _ := json.Marshal(map[string]string{
"content": content,
})
// Create HTTP POST request
log.Println(Entry{
Severity: "DEBUG",
Message: "Create HTTP POST request",
Component: "postBasecampChat",
Trace: traceID,
})
// Get Basecamp Chatbot URL
basecampChatbotURL, err := accessSecret("basecamp-chatbot-url/versions/latest")
if err != nil {
log.Fatalln(Entry{
Severity: "CRITICAL",
Message: fmt.Sprintf("Failed to get secret: %v", err),
Component: "postBasecampChat",
Trace: traceID,
})
}
requestBody := bytes.NewBuffer(postBody)
req, err := http.Post(basecampChatbotURL, "application/json", requestBody)
if err != nil {
log.Fatalln(Entry{
Severity: "CRITICAL",
Message: fmt.Sprintf("Error with HTTP POST: %s", err),
Component: "postBasecampChat",
Trace: traceID,
})
}
defer req.Body.Close() // Close connection on function return
log.Println(Entry{
Severity: "INFO",
Message: fmt.Sprintf("Response: %s", req.Status),
Component: "postBasecampChat",
Trace: traceID,
})
}