seaweedfs/weed/shell/command_s3_configure.go

142 lines
3.8 KiB
Go
Raw Normal View History

2020-11-25 16:02:31 +00:00
package shell
import (
"flag"
"fmt"
"io"
"sort"
"strings"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2020-11-25 20:30:11 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/iam_pb"
"github.com/chrislusf/seaweedfs/weed/s3iam"
2020-11-25 16:02:31 +00:00
)
func init() {
Commands = append(Commands, &commandS3Configure{})
}
type commandS3Configure struct {
}
func (c *commandS3Configure) Name() string {
return "s3.configure"
}
func (c *commandS3Configure) Help() string {
return `configure and apply s3 options for each bucket
# see the current configuration file content
s3.configure
`
}
func (c *commandS3Configure) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
s3ConfigureCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
actions := s3ConfigureCommand.String("actions", "", "actions names")
user := s3ConfigureCommand.String("user", "", "user name")
buckets := s3ConfigureCommand.String("buckets", "", "bucket name")
accessKey := s3ConfigureCommand.String("access_key", "", "specify the access key")
secretKey := s3ConfigureCommand.String("secret_key", "", "specify the secret key")
isDelete := s3ConfigureCommand.Bool("delete", false, "delete users, actions or access keys")
apply := s3ConfigureCommand.Bool("apply", false, "update and apply s3 configuration")
if err = s3ConfigureCommand.Parse(args); err != nil {
return nil
}
2020-11-25 20:30:11 +00:00
s3cfg := &iam_pb.S3ApiConfiguration{}
ifs := &s3iam.IAMFilerStore{}
2020-11-25 16:02:31 +00:00
if err = commandEnv.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
2020-11-25 20:30:11 +00:00
ifs = s3iam.NewIAMFilerStore(&client)
if err := ifs.LoadIAMConfig(s3cfg); err != nil {
return nil
2020-11-25 16:02:31 +00:00
}
return nil
}); err != nil {
return err
}
idx := 0
changed := false
if *user != "" && *buckets != "" {
2020-11-25 20:30:11 +00:00
for i, identity := range s3cfg.Identities {
2020-11-25 16:02:31 +00:00
if *user == identity.Name {
idx = i
changed = true
break
}
}
}
2020-11-25 20:30:11 +00:00
var cmdActions []string
2020-11-25 16:02:31 +00:00
for _, bucket := range strings.Split(*buckets, ",") {
for _, action := range strings.Split(*actions, ",") {
2020-11-25 20:30:11 +00:00
cmdActions = append(cmdActions, fmt.Sprintf("%s:%s", action, bucket))
2020-11-25 16:02:31 +00:00
}
}
if changed {
if *isDelete {
2020-11-25 20:30:11 +00:00
var exists []int
2020-11-25 16:02:31 +00:00
for _, cmdAction := range cmdActions {
2020-11-25 20:30:11 +00:00
for i, currentAction := range s3cfg.Identities[idx].Actions {
2020-11-25 16:02:31 +00:00
if cmdAction == currentAction {
exists = append(exists, i)
}
}
}
sort.Sort(sort.Reverse(sort.IntSlice(exists)))
for _, i := range exists {
2020-11-25 20:30:11 +00:00
s3cfg.Identities[idx].Actions = append(
s3cfg.Identities[idx].Actions[:i],
s3cfg.Identities[idx].Actions[i+1:]...,
)
2020-11-25 16:02:31 +00:00
}
if *accessKey != "" {
exists = []int{}
2020-11-25 20:30:11 +00:00
for i, credential := range s3cfg.Identities[idx].Credentials {
2020-11-25 16:02:31 +00:00
if credential.AccessKey == *accessKey {
exists = append(exists, i)
}
}
sort.Sort(sort.Reverse(sort.IntSlice(exists)))
for _, i := range exists {
2020-11-25 20:30:11 +00:00
s3cfg.Identities[idx].Credentials = append(
s3cfg.Identities[idx].Credentials[:i],
s3cfg.Identities[idx].Credentials[:i+1]...,
)
2020-11-25 16:02:31 +00:00
}
}
if *actions == "" && *accessKey == "" {
2020-11-25 20:30:11 +00:00
s3cfg.Identities = append(s3cfg.Identities[:idx], s3cfg.Identities[idx+1:]...)
2020-11-25 16:02:31 +00:00
}
} else {
2020-11-25 20:30:11 +00:00
s3cfg.Identities[idx].Actions = append(s3cfg.Identities[idx].Actions, cmdActions...)
s3cfg.Identities[idx].Credentials = append(s3cfg.Identities[idx].Credentials, &iam_pb.Credential{
2020-11-25 16:02:31 +00:00
AccessKey: *accessKey,
SecretKey: *secretKey,
})
}
} else {
2020-11-25 20:30:11 +00:00
identity := iam_pb.Identity{
2020-11-25 16:02:31 +00:00
Name: *user,
Actions: cmdActions,
}
2020-11-25 20:30:11 +00:00
identity.Credentials = append(identity.Credentials, &iam_pb.Credential{
2020-11-25 16:02:31 +00:00
AccessKey: *accessKey,
SecretKey: *secretKey,
})
2020-11-25 20:30:11 +00:00
s3cfg.Identities = append(s3cfg.Identities, &identity)
2020-11-25 16:02:31 +00:00
}
2020-11-25 20:30:11 +00:00
fmt.Fprintf(writer, fmt.Sprintf("%+v\n", s3cfg.Identities))
2020-11-25 16:02:31 +00:00
fmt.Fprintln(writer)
2020-11-25 20:30:11 +00:00
if *apply {
if err := ifs.SaveIAMConfig(s3cfg); err != nil {
2020-11-25 16:02:31 +00:00
return err
}
}
2020-11-25 20:30:11 +00:00
2020-11-25 16:02:31 +00:00
return nil
}