60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
/*
|
|
* Copyright 2026 Oleg Borodin <onborodin@gmail.com>
|
|
*/
|
|
package accountcmd
|
|
|
|
import (
|
|
"context"
|
|
"regexp"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"mstore/pkg/accntcli"
|
|
)
|
|
|
|
// UpdateAccount
|
|
type UpdateAccountParams struct {
|
|
Timeout uint64
|
|
AccountID string
|
|
NewUsername string
|
|
NewPassword string
|
|
}
|
|
type UpdateAccountResult struct {
|
|
}
|
|
|
|
func (util *AccountUtil) UpdateAccount(cmd *cobra.Command, args []string) {
|
|
util.commonAccountParams.Hostname = args[0]
|
|
util.updateAccountParams.AccountID = args[1]
|
|
res, err := util.updateAccount(&util.commonAccountParams, &util.updateAccountParams)
|
|
printResponse(res, err)
|
|
}
|
|
|
|
func (util *AccountUtil) updateAccount(common *CommonAccountParams, params *UpdateAccountParams) (*UpdateAccountResult, error) {
|
|
var err error
|
|
res := &UpdateAccountResult{}
|
|
|
|
timeout := time.Duration(common.Timeout) * time.Second
|
|
ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
ref, err := accntcli.ParseHostinfo(common.Hostname)
|
|
if err != nil {
|
|
return res, err
|
|
}
|
|
ref.SetUserinfo(common.Username, common.Password)
|
|
mw := accntcli.NewBasicAuthMiddleware(ref.Userinfo())
|
|
cli := accntcli.NewClient(nil, mw)
|
|
|
|
re := regexp.MustCompile(uuidRegex)
|
|
id := strings.ToLower(params.AccountID)
|
|
if re.MatchString(id) {
|
|
err = cli.UpdateAccountByID(ctx, ref.Host(), id, params.NewUsername, params.NewPassword)
|
|
} else {
|
|
err = cli.UpdateAccountByName(ctx, ref.Host(), params.AccountID, params.NewUsername, params.NewPassword)
|
|
}
|
|
if err != nil {
|
|
return res, err
|
|
}
|
|
return res, err
|
|
}
|