Files
seaweedfs/weed/shell/command_s3_group_delete.go
Chris Lu 37e6263efe fix(shell): attach admin JWT for filer IAM gRPC calls (#9536)
When jwt.filer_signing.key is set, the filer's IamGrpcServer requires
a Bearer token on every IAM RPC. The shell's s3.* IAM commands dialed
without that header and failed with Unauthenticated. Route them through
a small helper that mints a token from the same key viper-loaded from
security.toml and appends it as outgoing metadata, matching the credential
grpc_store pattern.
2026-05-18 13:42:32 -07:00

75 lines
1.8 KiB
Go

package shell
import (
"context"
"encoding/json"
"flag"
"fmt"
"io"
"github.com/seaweedfs/seaweedfs/weed/pb/iam_pb"
)
func init() {
Commands = append(Commands, &commandS3GroupDelete{})
}
type commandS3GroupDelete struct {
}
func (c *commandS3GroupDelete) Name() string {
return "s3.group.delete"
}
func (c *commandS3GroupDelete) Help() string {
return `delete an S3 IAM group
s3.group.delete -name <groupname>
The group must have no members and no attached policies.
`
}
func (c *commandS3GroupDelete) HasTag(CommandTag) bool {
return false
}
func (c *commandS3GroupDelete) Do(args []string, commandEnv *CommandEnv, writer io.Writer) error {
f := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
name := f.String("name", "", "group name")
if err := f.Parse(args); err != nil {
return err
}
if *name == "" {
return fmt.Errorf("-name is required")
}
return commandEnv.withIamClient(func(ctx context.Context, client iam_pb.SeaweedIdentityAccessManagementClient) error {
resp, err := client.GetConfiguration(ctx, &iam_pb.GetConfigurationRequest{})
if err != nil {
return err
}
cfg := resp.GetConfiguration()
if cfg == nil {
return fmt.Errorf("no IAM configuration found")
}
for i, g := range cfg.Groups {
if g.Name == *name {
if len(g.Members) > 0 {
return fmt.Errorf("cannot delete group %s: has %d member(s)", *name, len(g.Members))
}
if len(g.PolicyNames) > 0 {
return fmt.Errorf("cannot delete group %s: has %d attached policy(ies)", *name, len(g.PolicyNames))
}
cfg.Groups = append(cfg.Groups[:i], cfg.Groups[i+1:]...)
if _, err := client.PutConfiguration(ctx, &iam_pb.PutConfigurationRequest{Configuration: cfg}); err != nil {
return err
}
return json.NewEncoder(writer).Encode(map[string]string{"deleted": *name})
}
}
return fmt.Errorf("group %s not found", *name)
})
}