59b8422318
this makes the distinction between an "access name" and an "access value" and talks about which is expected for commands. most are "access name or value". Change-Id: I43c0043a17d37e89ab5f87388ae9e890a8b59958
51 lines
1.0 KiB
Go
51 lines
1.0 KiB
Go
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/zeebo/clingy"
|
|
"github.com/zeebo/errs"
|
|
|
|
"storj.io/storj/cmd/uplinkng/ulext"
|
|
)
|
|
|
|
type cmdAccessDelete struct {
|
|
ex ulext.External
|
|
|
|
access string
|
|
}
|
|
|
|
func newCmdAccessDelete(ex ulext.External) *cmdAccessDelete {
|
|
return &cmdAccessDelete{ex: ex}
|
|
}
|
|
|
|
func (c *cmdAccessDelete) Setup(params clingy.Parameters) {
|
|
c.access = params.Arg("name", "Access name to delete").(string)
|
|
}
|
|
|
|
func (c *cmdAccessDelete) Execute(ctx clingy.Context) error {
|
|
defaultName, accesses, err := c.ex.GetAccessInfo(true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if c.access == defaultName {
|
|
return errs.New("cannot delete current access")
|
|
}
|
|
if _, ok := accesses[c.access]; !ok {
|
|
return errs.New("unknown access: %q", c.access)
|
|
}
|
|
|
|
delete(accesses, c.access)
|
|
if err := c.ex.SaveAccessInfo(defaultName, accesses); err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Fprintf(ctx, "Removed access %q from %q\n", c.access, c.ex.AccessInfoFile())
|
|
|
|
return nil
|
|
}
|