forked from akamai/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.go
200 lines (167 loc) · 5.79 KB
/
stats.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
// Copyright 2018. Akamai Technologies, Inc
//
// 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 main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
"os"
"strings"
time "time"
akamai "github.com/akamai/cli-common-golang"
"github.com/fatih/color"
"github.com/google/uuid"
)
// Akamai CLI (optionally) tracks upgrades, package installs, and updates anonymously
//
// This is done by generating an anonymous UUID that events are tied to
const statsVersion string = "1.1"
func firstRunCheckStats(bannerShown bool) bool {
anonymous := color.New(color.FgWhite, color.Bold).Sprint("anonymous")
if getConfigValue("cli", "enable-cli-statistics") == "" {
if !bannerShown {
bannerShown = true
showBanner()
}
fmt.Fprintf(akamai.App.Writer, "Help Akamai improve Akamai CLI by automatically sending %s diagnostics and usage data.\n", anonymous)
fmt.Fprintln(akamai.App.Writer, "Examples of data being sent include upgrade statistics, and packages installed and updated.")
fmt.Fprintf(akamai.App.Writer, "Note: if you choose to opt-out, a single %s event will be submitted to help track overall usage.", anonymous)
fmt.Fprintf(akamai.App.Writer, "\n\nSend %s diagnostics and usage data to Akamai? [Y/n]: ", anonymous)
answer := ""
fmt.Scanln(&answer)
if answer != "" && strings.ToLower(answer) != "y" {
trackEvent("first-run", "stats-opt-out", "true")
setConfigValue("cli", "enable-cli-statistics", "false")
saveConfig()
return bannerShown
}
setConfigValue("cli", "enable-cli-statistics", statsVersion)
setConfigValue("cli", "stats-version", statsVersion)
setConfigValue("cli", "last-ping", "never")
setupUUID()
saveConfig()
trackEvent("first-run", "stats-enabled", statsVersion)
} else if getConfigValue("cli", "enable-cli-statistics") != "false" {
migrateStats(bannerShown)
}
return bannerShown
}
func migrateStats(bannerShown bool) bool {
currentVersion := getConfigValue("cli", "stats-version")
if currentVersion == statsVersion {
return bannerShown
}
if !bannerShown {
bannerShown = true
showBanner()
}
var newStats []string
switch currentVersion {
case "1.0":
newStats = []string{"command name executed (no arguments)", "command version executed"}
}
anonymous := color.New(color.FgWhite, color.Bold).Sprint("anonymous")
fmt.Fprintf(akamai.App.Writer, "Akamai CLI has changed the %s data it collects. It now additionally collects the following: \n\n", anonymous)
for _, value := range newStats {
fmt.Fprintf(akamai.App.Writer, " - %s\n", value)
}
fmt.Fprintf(akamai.App.Writer, "\nTo continue collecting %s statistics, Akamai CLI requires that you re-affirm you decision.\n", anonymous)
fmt.Fprintln(akamai.App.Writer, "Note: if you choose to opt-out, a single anonymous event will be submitted to help track overall usage.")
fmt.Fprintf(akamai.App.Writer, "\nContinue sending %s diagnostics and usage data to Akamai? [Y/n]: ", anonymous)
answer := ""
fmt.Scanln(&answer)
if answer != "" && strings.ToLower(answer) != "y" {
trackEvent("first-run", "stats-update-opt-out", statsVersion)
setConfigValue("cli", "enable-cli-statistics", "false")
saveConfig()
return bannerShown
}
setConfigValue("cli", "stats-version", statsVersion)
saveConfig()
trackEvent("first-run", "stats-update-opt-in", statsVersion)
return bannerShown
}
func setupUUID() error {
if getConfigValue("cli", "client-id") == "" {
uuid, err := uuid.NewRandom()
if err != nil {
return err
}
setConfigValue("cli", "client-id", uuid.String())
saveConfig()
}
return nil
}
func trackEvent(category string, action string, value string) {
if getConfigValue("cli", "enable-cli-statistics") == "false" {
return
}
clientId := "anonymous"
if val := getConfigValue("cli", "client-id"); val != "" {
clientId = val
}
form := url.Values{}
form.Add("tid", "UA-34796267-23")
form.Add("v", "1") // Version 1
form.Add("aip", "1") // Anonymize IP
form.Add("cid", clientId) // Client ID
form.Add("t", "event") // Type
form.Add("ec", category) // Category
form.Add("ea", action) // Action
form.Add("el", value) // Label
hc := http.Client{}
debug := os.Getenv("AKAMAI_CLI_DEBUG_ANALYTICS")
var req *http.Request
var err error
if debug != "" {
req, err = http.NewRequest("POST", "https://www.google-analytics.com/debug/collect", strings.NewReader(form.Encode()))
} else {
req, err = http.NewRequest("POST", "https://www.google-analytics.com/collect", strings.NewReader(form.Encode()))
}
if err != nil {
return
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, err := hc.Do(req)
if debug != "" {
body, _ := ioutil.ReadAll(res.Body)
fmt.Fprintln(akamai.App.Writer, string(body))
}
}
func checkPing() {
if getConfigValue("cli", "enable-cli-statistics") == "false" {
return
}
data := strings.TrimSpace(getConfigValue("cli", "last-ping"))
doPing := false
if data == "" || data == "never" {
doPing = true
} else {
configValue := strings.TrimPrefix(strings.TrimSuffix(string(data), "\""), "\"")
lastPing, err := time.Parse(time.RFC3339, configValue)
if err != nil {
return
}
currentTime := time.Now()
if lastPing.Add(time.Hour * 24).Before(currentTime) {
doPing = true
}
}
if doPing {
trackEvent("ping", "daily", "pong")
setConfigValue("cli", "last-ping", time.Now().Format(time.RFC3339))
saveConfig()
}
}