storj/cmd/uplink/cmd_rb.go
Márton Elek ea1408f7a8 go.mod: bump clingy dependency
As a reminder: latest clingy removed the requirement of having custom context (which made the usage of context.WithValue harder) and uses simple context instead.

Clingy saves the stdin/stdout/stderr to the context (earlier to separated context type) to make it available for unit testing.

Change-Id: I8896574f4670721de43a577cd4b35952e3b5d00e
2022-08-31 10:24:27 +00:00

69 lines
1.4 KiB
Go

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
package main
import (
"context"
"fmt"
"strconv"
"github.com/zeebo/clingy"
"github.com/zeebo/errs"
"storj.io/storj/cmd/uplink/ulext"
"storj.io/storj/cmd/uplink/ulloc"
)
type cmdRb struct {
ex ulext.External
access string
force bool
loc ulloc.Location
}
func newCmdRb(ex ulext.External) *cmdRb {
return &cmdRb{ex: ex}
}
func (c *cmdRb) Setup(params clingy.Parameters) {
c.access = params.Flag("access", "Access name or value to use", "").(string)
c.force = params.Flag("force", "Deletes any objects in bucket first", false,
clingy.Transform(strconv.ParseBool), clingy.Boolean,
).(bool)
c.loc = params.Arg("name", "Bucket name (sj://BUCKET)",
clingy.Transform(ulloc.Parse),
).(ulloc.Location)
}
func (c *cmdRb) Execute(ctx context.Context) error {
project, err := c.ex.OpenProject(ctx, c.access)
if err != nil {
return err
}
defer func() { _ = project.Close() }()
bucket, key, ok := c.loc.RemoteParts()
if !ok {
return errs.New("location must be remote")
}
if key != "" {
return errs.New("key must not be specified: %q", key)
}
if c.force {
_, err = project.DeleteBucketWithObjects(ctx, bucket)
} else {
_, err = project.DeleteBucket(ctx, bucket)
}
if err != nil {
return err
}
fmt.Fprintf(clingy.Stdout(ctx), "Bucket %q has been deleted.\n", bucket)
return nil
}