forked from igrigorik/ga-beacon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ga-beacon.go
180 lines (158 loc) · 5.02 KB
/
ga-beacon.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
package main
import (
"crypto/rand"
"encoding/hex"
"fmt"
"html/template"
"io/ioutil"
"net/http"
"net/url"
"strings"
"time"
"golang.org/x/net/context"
"google.golang.org/appengine"
"log"
// "google.golang.org/appengine/delay"
)
const beaconURL = "http://www.google-analytics.com/collect"
var (
pixel = mustReadFile("static/pixel.gif")
badge = mustReadFile("static/badge.svg")
badgeGif = mustReadFile("static/badge.gif")
badgeFlat = mustReadFile("static/badge-flat.svg")
badgeFlatGif = mustReadFile("static/badge-flat.gif")
pageTemplate = template.Must(template.New("page").ParseFiles("page.html"))
)
func init() {
http.HandleFunc("/", handler)
}
//required
func main() {
appengine.Main()
}
func mustReadFile(path string) []byte {
b, err := ioutil.ReadFile(path)
if err != nil {
panic(err)
}
return b
}
func generateUUID(cid *string) error {
b := make([]byte, 16)
_, err := rand.Read(b)
if err != nil {
return err
}
b[8] = (b[8] | 0x80) & 0xBF // what's the purpose ?
b[6] = (b[6] | 0x40) & 0x4F // what's the purpose ?
*cid = hex.EncodeToString(b)
return nil
}
// var delayHit = delay.Func("collect", logHit)
func logLocal(c context.Context, ua string, ip string, cid string, values url.Values) error {
req, _ := http.NewRequest("POST", beaconURL, strings.NewReader(values.Encode()))
req.Header.Add("User-Agent", ua)
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
client := &http.Client{}
if resp, err := client.Do(req); err != nil {
log.Print("GA collector POST error: %s", err.Error())
return err
} else {
log.Print("GA collector status: %v, cid: %v, ip: %s", resp.Status, cid, ip)
log.Print("Reported payload: %v", values)
}
return nil
}
func logHit(c context.Context, params []string, query url.Values, ua string, ip string, cid string) error {
// 1) Initialize default values from path structure
// 2) Allow query param override to report arbitrary values to GA
//
// GA Protocol reference: https://developers.google.com/analytics/devguides/collection/protocol/v1/reference
payload := url.Values{
"v": {"1"}, // protocol version = 1
"t": {"pageview"}, // hit type
"tid": {params[0]}, // tracking / property ID
"cid": {cid}, // unique client ID (server generated UUID)
"dp": {params[1]}, // page path
"uip": {ip}, // IP address of the user
}
for key, val := range query {
payload[key] = val
}
return logLocal(c, ua, ip, cid, payload)
}
func handler(w http.ResponseWriter, r *http.Request) {
c := r.Context()
params := strings.SplitN(strings.Trim(r.URL.Path, "/"), "/", 2)
query, _ := url.ParseQuery(r.URL.RawQuery)
refOrg := r.Header.Get("Referer")
// / -> redirect
if len(params[0]) == 0 {
http.Redirect(w, r, "https://github.com/yugabyte/ga-beacon", http.StatusFound)
return
}
// activate referrer path if ?useReferer is used and if referer exists
if _, ok := query["useReferer"]; ok {
if len(refOrg) != 0 {
referer := strings.Replace(strings.Replace(refOrg, "http://", "", 1), "https://", "", 1)
if len(referer) != 0 {
// if the useReferer is present and the referer information exists
// the path is ignored and the beacon referer information is used instead.
params = strings.SplitN(strings.Trim(r.URL.Path, "/")+"/"+referer, "/", 2)
}
}
}
// /account -> account template
if len(params) == 1 {
templateParams := struct {
Account string
Referer string
}{
Account: params[0],
Referer: refOrg,
}
if err := pageTemplate.ExecuteTemplate(w, "page.html", templateParams); err != nil {
http.Error(w, "could not show account page", 500)
log.Print("Cannot execute template: %v", err)
}
return
}
// /account/page -> GIF + log pageview to GA collector
var cid string
if cookie, err := r.Cookie("cid"); err != nil {
if err := generateUUID(&cid); err != nil {
log.Print("Failed to generate client UUID: %v", err)
} else {
log.Print("Generated new client UUID: %v", cid)
http.SetCookie(w, &http.Cookie{Name: "cid", Value: cid, Path: fmt.Sprint("/", params[0])})
}
} else {
cid = cookie.Value
log.Print("Existing CID found: %v", cid)
}
if len(cid) != 0 {
var cacheUntil = time.Now().Format(http.TimeFormat)
w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate, private")
w.Header().Set("Expires", cacheUntil)
w.Header().Set("CID", cid)
logHit(c, params, query, r.Header.Get("User-Agent"), r.RemoteAddr, cid)
// delayHit.Call(c, params, r.Header.Get("User-Agent"), cid)
}
// Write out GIF pixel or badge, based on presence of "pixel" param.
if _, ok := query["pixel"]; ok {
w.Header().Set("Content-Type", "image/gif")
w.Write(pixel)
} else if _, ok := query["gif"]; ok {
w.Header().Set("Content-Type", "image/gif")
w.Write(badgeGif)
} else if _, ok := query["flat"]; ok {
w.Header().Set("Content-Type", "image/svg+xml")
w.Write(badgeFlat)
} else if _, ok := query["flat-gif"]; ok {
w.Header().Set("Content-Type", "image/gif")
w.Write(badgeFlatGif)
} else {
w.Header().Set("Content-Type", "image/svg+xml")
w.Write(badge)
}
}