[MM-56078] mmctl: assume local mode when no credentials found (#26215)

* assume local mode when no credentials found

* Use variable

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
Этот коммит содержится в:
Julien Tant
2025-03-26 05:21:21 -07:00
коммит произвёл GitHub
родитель 79e1c182ce
Коммит 48ea65aa5f
2 изменённых файлов: 18 добавлений и 4 удалений

Просмотреть файл

@@ -218,7 +218,7 @@ func validateArgsWithClient(fn validateArgsFn) func(cmd *cobra.Command, args []s
ctx, cancel := context.WithTimeout(context.Background(), shellCompleteTimeout)
defer cancel()
c, _, _, err := getClient(ctx)
c, _, _, err := getClient(ctx, cmd)
if err != nil {
return nil, cobra.ShellCompDirectiveError
}

Просмотреть файл

@@ -68,8 +68,22 @@ func CheckVersionMatch(version, serverVersion string) (bool, error) {
return true, nil
}
func getClient(ctx context.Context) (*model.Client4, string, bool, error) {
if viper.GetBool("local") {
func getClient(ctx context.Context, cmd *cobra.Command) (*model.Client4, string, bool, error) {
useLocal := viper.GetBool("local")
if !useLocal {
// Assume local mode if no server address is provided
credentials, err := GetCurrentCredentials()
if err != nil {
cmd.PrintErrln("Warning: Unable to retrieve credentials, assuming --local mode")
useLocal = true
} else if credentials == nil {
cmd.PrintErrln("Warning: No credentials found, assuming --local mode")
useLocal = true
}
}
if useLocal {
c, err := InitUnixClient(viper.GetString("local-socket-path"))
if err != nil {
return nil, "", true, err
@@ -90,7 +104,7 @@ func getClient(ctx context.Context) (*model.Client4, string, bool, error) {
func withClient(fn func(c client.Client, cmd *cobra.Command, args []string) error) func(cmd *cobra.Command, args []string) error {
return func(cmd *cobra.Command, args []string) error {
ctx := context.TODO()
c, serverVersion, local, err := getClient(ctx)
c, serverVersion, local, err := getClient(ctx, cmd)
if err != nil {
return fmt.Errorf("failed to create client: %w", err)
}