Skip to content

Commit ded33a5

Browse files
authored
CLOUDP-202471: add support to track GH Actions telemetry (#2557)
1 parent ca42e6c commit ded33a5

File tree

3 files changed

+125
-15
lines changed

3 files changed

+125
-15
lines changed

internal/config/profile.go

+52-2
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,18 @@ const (
6969
TelemetryEnabledProperty = "telemetry_enabled"
7070
MongoCLI = "mongocli"
7171
AtlasCLI = "atlascli"
72+
ContainerizedHostNameEnv = "MONGODB_ATLAS_IS_CONTAINERIZED"
73+
GitHubActionsHostNameEnv = "GITHUB_ACTIONS"
74+
AtlasActionHostNameEnv = "ATLAS_GITHUB_ACTION"
7275
NativeHostName = "native"
73-
ContainerHostName = "container"
76+
DockerContainerHostName = "container"
77+
GitHubActionsHostName = "all_github_actions"
78+
AtlasActionHostName = "atlascli_github_action"
7479
)
7580

7681
var (
7782
ToolName = MongoCLI
78-
HostName = NativeHostName
83+
HostName = getConfigHostnameFromEnvs()
7984
UserAgent = fmt.Sprintf("%s/%s (%s;%s;%s)", ToolName, version.Version, runtime.GOOS, runtime.GOARCH, HostName)
8085
defaultProfile = newProfile()
8186
)
@@ -175,6 +180,51 @@ func Exists(name string) bool {
175180
return search.StringInSlice(List(), name)
176181
}
177182

183+
// getConfigHostnameFromEnvs patches the agent hostname based on set env vars.
184+
func getConfigHostnameFromEnvs() string {
185+
var builder strings.Builder
186+
187+
envVars := []struct {
188+
envName string
189+
hostName string
190+
}{
191+
{AtlasActionHostNameEnv, AtlasActionHostName},
192+
{GitHubActionsHostNameEnv, GitHubActionsHostName},
193+
{ContainerizedHostNameEnv, DockerContainerHostName},
194+
}
195+
196+
for _, envVar := range envVars {
197+
if envIsTrue(envVar.envName) {
198+
appendToHostName(&builder, envVar.hostName)
199+
} else {
200+
appendToHostName(&builder, "-")
201+
}
202+
}
203+
configHostName := builder.String()
204+
205+
if isDefaultHostName(configHostName) {
206+
return NativeHostName
207+
}
208+
return configHostName
209+
}
210+
211+
func envIsTrue(env string) bool {
212+
return IsTrue(os.Getenv(env))
213+
}
214+
215+
func appendToHostName(builder *strings.Builder, configVal string) {
216+
if builder.Len() > 0 {
217+
builder.WriteString("|")
218+
}
219+
builder.WriteString(configVal)
220+
}
221+
222+
// isDefaultHostName checks if the hostname is the default placeholder.
223+
func isDefaultHostName(hostname string) bool {
224+
// Using strings.Count for a more dynamic approach.
225+
return strings.Count(hostname, "-") == strings.Count(hostname, "|")+1
226+
}
227+
178228
func newProfile() *Profile {
179229
configDir, err := CLIConfigHome()
180230
np := &Profile{

internal/config/profile_test.go

+73
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ import (
2020
"fmt"
2121
"os"
2222
"testing"
23+
24+
"github.com/stretchr/testify/assert"
2325
)
2426

2527
func TestConfig_MongoCLIConfigHome(t *testing.T) {
@@ -159,3 +161,74 @@ func TestConfig_IsTrue(t *testing.T) {
159161
}
160162
}
161163
}
164+
165+
func Test_getConfigHostname(t *testing.T) {
166+
type fields struct {
167+
containerizedEnv string
168+
atlasActionEnv string
169+
ghActionsEnv string
170+
}
171+
tests := []struct {
172+
name string
173+
fields fields
174+
expectedHostName string
175+
}{
176+
{
177+
name: "sets native hostname when no hostname env var is set",
178+
fields: fields{
179+
containerizedEnv: "",
180+
atlasActionEnv: "",
181+
ghActionsEnv: "",
182+
},
183+
expectedHostName: NativeHostName,
184+
},
185+
{
186+
name: "sets container hostname when containerized env var is set",
187+
fields: fields{
188+
containerizedEnv: "true",
189+
atlasActionEnv: "",
190+
ghActionsEnv: "",
191+
},
192+
expectedHostName: "-|-|" + DockerContainerHostName,
193+
},
194+
{
195+
name: "sets atlas action hostname when containerized env var is set",
196+
fields: fields{
197+
containerizedEnv: "",
198+
atlasActionEnv: "true",
199+
ghActionsEnv: "",
200+
},
201+
expectedHostName: AtlasActionHostName + "|-|-",
202+
},
203+
{
204+
name: "sets github actions hostname when action env var is set",
205+
fields: fields{
206+
containerizedEnv: "",
207+
atlasActionEnv: "",
208+
ghActionsEnv: "true",
209+
},
210+
expectedHostName: "-|" + GitHubActionsHostName + "|-",
211+
},
212+
{
213+
name: "sets actions and containerized hostnames when both env vars are set",
214+
fields: fields{
215+
containerizedEnv: "true",
216+
atlasActionEnv: "true",
217+
ghActionsEnv: "true",
218+
},
219+
expectedHostName: AtlasActionHostName + "|" + GitHubActionsHostName + "|" + DockerContainerHostName,
220+
},
221+
}
222+
for _, tt := range tests {
223+
fields := tt.fields
224+
expectedHostName := tt.expectedHostName
225+
t.Run(tt.name, func(t *testing.T) {
226+
t.Setenv(AtlasActionHostNameEnv, fields.atlasActionEnv)
227+
t.Setenv(GitHubActionsHostNameEnv, fields.ghActionsEnv)
228+
t.Setenv(ContainerizedHostNameEnv, fields.containerizedEnv)
229+
actualHostName := getConfigHostnameFromEnvs()
230+
231+
assert.Equal(t, expectedHostName, actualHostName)
232+
})
233+
}
234+
}

internal/oauth/oauth.go

-13
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ package oauth
1717
import (
1818
"net"
1919
"net/http"
20-
"os"
21-
"strings"
2220
"time"
2321

2422
"github.com/mongodb/mongodb-atlas-cli/internal/config"
@@ -58,13 +56,6 @@ const (
5856
GovClientID = "0oabtyfelbTBdoucy297" // GovClientID for production
5957
)
6058

61-
func changeHostNameToContainer() {
62-
if !strings.Contains(config.UserAgent, config.ContainerHostName) {
63-
config.UserAgent = strings.ReplaceAll(config.UserAgent, config.HostName, config.ContainerHostName)
64-
config.HostName = config.ContainerHostName
65-
}
66-
}
67-
6859
func FlowWithConfig(c ServiceGetter) (*auth.Config, error) {
6960
client := http.DefaultClient
7061
client.Transport = defaultTransport
@@ -75,10 +66,6 @@ func FlowWithConfig(c ServiceGetter) (*auth.Config, error) {
7566
if c.ClientID() != "" {
7667
id = c.ClientID()
7768
}
78-
runningFromContainer, runningFromContainerIsSet := os.LookupEnv("MONGODB_ATLAS_IS_CONTAINERIZED")
79-
if runningFromContainerIsSet && runningFromContainer == "true" {
80-
changeHostNameToContainer()
81-
}
8269

8370
authOpts := []auth.ConfigOpt{
8471
auth.SetUserAgent(config.UserAgent),

0 commit comments

Comments
 (0)