/* * Copyright 2026 Oleg Borodin * * This work is published and licensed under a Creative Commons * Attribution-NonCommercial-NoDerivatives 4.0 International License. * * Distribution of this work is permitted, but commercial use and * modifications are strictly prohibited. */ package accountcmd import ( "context" "strings" "time" "github.com/spf13/cobra" "mstore/pkg/accntcli" "mstore/pkg/descr" ) // GetGrant type GetGrantParams struct { GrantID string } type GetGrantResult struct { Grant *descr.Grant `yaml:"grant,omitempty"` } func (util *GrantUtil) GetGrant(cmd *cobra.Command, args []string) { util.commonGrantParams.Hostname = args[0] util.getGrantParams.GrantID = args[1] res, err := util.getGrant(&util.commonGrantParams, &util.getGrantParams) printResponse(res, err) } func (util *GrantUtil) getGrant(common *CommonGrantParams, params *GetGrantParams) (*GetGrantResult, error) { var err error res := &GetGrantResult{} opres := &descr.Grant{} 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) id := strings.ToLower(params.GrantID) opres, err = cli.GetGrant(ctx, ref.Host(), id) if err != nil { return res, err } res.Grant = opres return res, err }