ef7b89cc03
this changes globalFlags to be a ulext.External interface value that is passed to each command. rather than have the ulext.External have a Setup call in the way that the projectProvider used to we make all of the state arguments to the functions and have the commands call setup themselves. the reason it is in its own package is so that cmd/uplinkng can import cmd/uplinkng/ultest but cmd/uplinkng/ultest needs to refer to whatever the interface type is to call the function that creates the commands. there's also quite a bit of shuffling around of code and names. sorry if that makes it tricky to review. there should be no logic changes, though. a side benefit is there's no longer a need to do a type assertion in ultest to make it set the fake filesystem to use. that can be passed in directly now. additionally, this makes the access commands much easier to test. Change-Id: I29cf6a2144248a58b7a605a7ae0a5ada5cfd57b6
78 lines
1.5 KiB
Go
78 lines
1.5 KiB
Go
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"sort"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/zeebo/clingy"
|
|
|
|
"storj.io/storj/cmd/uplinkng/ulext"
|
|
"storj.io/uplink"
|
|
)
|
|
|
|
type cmdAccessList struct {
|
|
ex ulext.External
|
|
|
|
verbose bool
|
|
}
|
|
|
|
func newCmdAccessList(ex ulext.External) *cmdAccessList {
|
|
return &cmdAccessList{ex: ex}
|
|
}
|
|
|
|
func (c *cmdAccessList) Setup(params clingy.Parameters) {
|
|
c.verbose = params.Flag("verbose", "Verbose output of accesses", false,
|
|
clingy.Short('v'),
|
|
clingy.Transform(strconv.ParseBool),
|
|
).(bool)
|
|
}
|
|
|
|
func (c *cmdAccessList) Execute(ctx clingy.Context) error {
|
|
defaultName, accesses, err := c.ex.GetAccessInfo(true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var tw *tabbedWriter
|
|
if c.verbose {
|
|
tw = newTabbedWriter(ctx.Stdout(), "CURRENT", "NAME", "SATELLITE", "VALUE")
|
|
} else {
|
|
tw = newTabbedWriter(ctx.Stdout(), "CURRENT", "NAME", "SATELLITE")
|
|
}
|
|
defer tw.Done()
|
|
|
|
var names []string
|
|
for name := range accesses {
|
|
names = append(names, name)
|
|
}
|
|
sort.Strings(names)
|
|
|
|
for _, name := range names {
|
|
access, err := uplink.ParseAccess(accesses[name])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
address := access.SatelliteAddress()
|
|
if idx := strings.IndexByte(address, '@'); !c.verbose && idx >= 0 {
|
|
address = address[idx+1:]
|
|
}
|
|
|
|
inUse := ' '
|
|
if name == defaultName {
|
|
inUse = '*'
|
|
}
|
|
|
|
if c.verbose {
|
|
tw.WriteLine(inUse, name, address, accesses[name])
|
|
} else {
|
|
tw.WriteLine(inUse, name, address)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|