forked from PostHog/posthog-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capture.go
84 lines (68 loc) · 1.82 KB
/
capture.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
package posthog
import "time"
var _ Message = (*Capture)(nil)
// This type represents object sent in a capture call
type Capture struct {
// This field is exported for serialization purposes and shouldn't be set by
// the application, its value is always overwritten by the library.
Type string
DistinctId string
Event string
Timestamp time.Time
Properties Properties
Groups Groups
SendFeatureFlags bool
}
func (msg Capture) internal() {
panic(unimplementedError)
}
func (msg Capture) Validate() error {
if len(msg.Event) == 0 {
return FieldError{
Type: "posthog.Capture",
Name: "Event",
Value: msg.Event,
}
}
if len(msg.DistinctId) == 0 {
return FieldError{
Type: "posthog.Capture",
Name: "DistinctId",
Value: msg.DistinctId,
}
}
return nil
}
type CaptureInApi struct {
Type string `json:"type"`
Library string `json:"library"`
LibraryVersion string `json:"library_version"`
Timestamp time.Time `json:"timestamp"`
DistinctId string `json:"distinct_id"`
Event string `json:"event"`
Properties Properties `json:"properties"`
SendFeatureFlags bool `json:"send_feature_flags"`
}
func (msg Capture) APIfy() APIMessage {
library := "posthog-go"
libraryVersion := getVersion()
myProperties := Properties{}.Set("$lib", library).Set("$lib_version", libraryVersion)
if msg.Properties != nil {
for k, v := range msg.Properties {
myProperties[k] = v
}
}
if msg.Groups != nil {
myProperties.Set("$groups", msg.Groups)
}
apified := CaptureInApi{
Type: msg.Type,
Library: library,
LibraryVersion: libraryVersion,
Timestamp: msg.Timestamp,
DistinctId: msg.DistinctId,
Event: msg.Event,
Properties: myProperties,
}
return apified
}