storj/cmd/uplinkng/cmd_access_use.go
Jeff Wendling 7fae5654ff cmd/uplinkng: access save: prompt for access
this adds a helper method to prompt for a line of
input using the clingy context to the global flag
state that errors if interactive mode is disabled.

Change-Id: Ie113c8920dfa4719e85cc24f11401d91b32812f9
2021-06-14 15:23:41 -04:00

29 lines
591 B
Go

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
package main
import (
"github.com/zeebo/clingy"
"github.com/zeebo/errs"
)
type cmdAccessUse struct {
name string
}
func (c *cmdAccessUse) Setup(a clingy.Arguments, f clingy.Flags) {
c.name = a.New("name", "Access to use").(string)
}
func (c *cmdAccessUse) Execute(ctx clingy.Context) error {
_, accesses, err := gf.GetAccessInfo(true)
if err != nil {
return err
}
if _, ok := accesses[c.name]; !ok {
return errs.New("unknown access: %q", c.name)
}
return gf.SaveAccessInfo(c.name, accesses)
}