mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-05-23 10:11:28 +00:00
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.
81 lines
1.7 KiB
Go
81 lines
1.7 KiB
Go
package shell
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"io"
|
|
"strings"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/iam_pb"
|
|
)
|
|
|
|
func init() {
|
|
Commands = append(Commands, &commandS3UserList{})
|
|
}
|
|
|
|
type commandS3UserList struct {
|
|
}
|
|
|
|
func (c *commandS3UserList) Name() string {
|
|
return "s3.user.list"
|
|
}
|
|
|
|
func (c *commandS3UserList) Help() string {
|
|
return `list S3 IAM users
|
|
|
|
s3.user.list
|
|
|
|
Output: JSON array of users with status, policies, and credential count.
|
|
`
|
|
}
|
|
|
|
func (c *commandS3UserList) HasTag(CommandTag) bool {
|
|
return false
|
|
}
|
|
|
|
type s3UserListEntry struct {
|
|
Name string `json:"name"`
|
|
Status string `json:"status"`
|
|
Policies []string `json:"policies"`
|
|
Keys int `json:"keys"`
|
|
}
|
|
|
|
func (c *commandS3UserList) Do(args []string, commandEnv *CommandEnv, writer io.Writer) error {
|
|
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
|
|
}
|
|
|
|
var result []s3UserListEntry
|
|
for _, id := range resp.Configuration.GetIdentities() {
|
|
status := "enabled"
|
|
if id.Disabled {
|
|
status = "disabled"
|
|
}
|
|
policies := id.PolicyNames
|
|
if policies == nil {
|
|
policies = []string{}
|
|
}
|
|
result = append(result, s3UserListEntry{
|
|
Name: id.Name,
|
|
Status: status,
|
|
Policies: policies,
|
|
Keys: len(id.Credentials),
|
|
})
|
|
}
|
|
if result == nil {
|
|
result = []s3UserListEntry{}
|
|
}
|
|
return json.NewEncoder(writer).Encode(result)
|
|
})
|
|
}
|
|
|
|
// joinMax joins up to max strings with ", " and appends "..." if truncated.
|
|
func joinMax(items []string, max int) string {
|
|
if len(items) <= max {
|
|
return strings.Join(items, ", ")
|
|
}
|
|
return strings.Join(items[:max], ", ") + "..."
|
|
}
|