forked from heroiclabs/nakama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathga.go
99 lines (83 loc) · 2.61 KB
/
ga.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
// Copyright 2018 The Nakama 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 ga
import (
"bytes"
"errors"
"fmt"
"net/http"
"net/url"
"regexp"
)
const gaURL = "https://www.google-analytics.com/collect"
var gacodeRegexp = regexp.MustCompile(`^UA-\d+-\d+$`)
// Event is a GA event.
type Event struct {
Ec string // event category
Ea string // event action
El string // event label
Ev string // event value
}
// SendEvent will send the event struct to GA over HTTP.
func SendEvent(httpc *http.Client, gacode string, cookie string, event *Event) error {
if len(event.Ec) < 1 || len(event.Ea) < 1 {
return errors.New("event category/action must be set")
}
values := url.Values{}
values.Add("ec", event.Ec)
values.Add("ea", event.Ea)
if len(event.El) > 0 {
values.Add("el", event.El)
}
if len(event.Ev) > 0 {
values.Add("ev", event.Ev)
}
values.Add("t", "event")
return SendValues(httpc, gacode, cookie, values)
}
// SendValues will send supplied values to GA over HTTP.
func SendValues(httpc *http.Client, gacode string, cookie string, values url.Values) error {
if !gacodeRegexp.MatchString(gacode) {
return errors.New("invalid tracking id")
}
// Add required params
values.Add("v", "1")
values.Add("tid", gacode)
values.Add("cid", cookie)
// Send request
buf := bytes.NewBufferString(values.Encode())
resp, err := httpc.Post(gaURL, "application/x-www-form-urlencoded", buf)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode >= 400 {
return fmt.Errorf("request failed with '%v' status", resp.StatusCode)
}
return nil
}
// SendSessionStart will send a session start event to GA over HTTP.
func SendSessionStart(httpc *http.Client, gacode string, cookie string) error {
values := url.Values{}
values.Add("t", "event")
values.Add("sc", "start")
return SendValues(httpc, gacode, cookie, values)
}
// SendSessionStop will send a session stop event to GA over HTTP.
func SendSessionStop(httpc *http.Client, gacode string, cookie string) error {
values := url.Values{}
values.Add("t", "event")
values.Add("sc", "end")
return SendValues(httpc, gacode, cookie, values)
}