bf9395e022
CI / results (push) Blocked by required conditions
CI / license-header (push) Has been skipped
CI / e2e-dry-run (push) Has been skipped
CI / e2e-live (push) Waiting to run
CI / fast-gate (push) Failing after 0s
Test PR Label Logic / test-pr-labels (push) Failing after 1s
Skill Format Check / check-format (push) Failing after 2s
CI / security (push) Failing after 5s
CI / unit-test (push) Has been skipped
CI / lint (push) Has been skipped
CI / script-test (push) Has been skipped
CI / deterministic-gate (push) Has been skipped
CI / coverage (push) Has been skipped
CI / deadcode (push) Waiting to run
29 lines
911 B
Go
29 lines
911 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/larksuite/cli/internal/core"
|
|
"github.com/larksuite/cli/internal/envvars"
|
|
)
|
|
|
|
// ResolveStartupBrand resolves the brand before the command tree is built, so
|
|
// the registry's remote metadata overlay uses the configured brand from the
|
|
// first catalog access. It mirrors the credential chain's brand precedence —
|
|
// environment, then the active profile's raw config entry — without touching
|
|
// the keychain (no secrets are needed to know the brand).
|
|
func ResolveStartupBrand(profile string) core.LarkBrand {
|
|
if raw := os.Getenv(envvars.CliBrand); raw != "" {
|
|
return core.ParseBrand(raw)
|
|
}
|
|
if cfg, err := core.LoadMultiAppConfig(); err == nil {
|
|
if app := cfg.CurrentAppConfig(profile); app != nil {
|
|
return core.ParseBrand(string(app.Brand))
|
|
}
|
|
}
|
|
return core.BrandFeishu
|
|
}
|