2020-12-07 07:16:20 +00:00
|
|
|
package filer
|
|
|
|
|
|
|
|
import (
|
2022-07-13 09:28:20 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/iam_pb"
|
2022-08-17 19:42:03 +00:00
|
|
|
jsonpb "google.golang.org/protobuf/encoding/protojson"
|
2022-08-17 19:05:07 +00:00
|
|
|
"google.golang.org/protobuf/proto"
|
2020-12-07 07:16:20 +00:00
|
|
|
)
|
|
|
|
|
2022-06-15 13:07:55 +00:00
|
|
|
func ParseS3ConfigurationFromBytes[T proto.Message](content []byte, config T) error {
|
2022-08-17 19:42:03 +00:00
|
|
|
if err := jsonpb.Unmarshal(content, config); err != nil {
|
2020-12-07 07:16:20 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-07-09 10:19:21 +00:00
|
|
|
func ProtoToText(writer io.Writer, config proto.Message) error {
|
2020-12-07 07:16:20 +00:00
|
|
|
|
2022-08-17 19:42:03 +00:00
|
|
|
m := jsonpb.MarshalOptions{
|
|
|
|
EmitUnpopulated: true,
|
|
|
|
Indent: " ",
|
2020-12-07 07:16:20 +00:00
|
|
|
}
|
|
|
|
|
2022-08-17 19:42:03 +00:00
|
|
|
text, marshalErr := m.Marshal(config)
|
|
|
|
if marshalErr != nil {
|
|
|
|
return fmt.Errorf("marshal proto message: %v", marshalErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, writeErr := writer.Write(text)
|
|
|
|
if writeErr != nil {
|
|
|
|
return fmt.Errorf("fail to write proto message: %v", writeErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return writeErr
|
2020-12-07 07:16:20 +00:00
|
|
|
}
|
2022-07-13 09:28:20 +00:00
|
|
|
|
|
|
|
// CheckDuplicateAccessKey returns an error message when s3cfg has duplicate access keys
|
|
|
|
func CheckDuplicateAccessKey(s3cfg *iam_pb.S3ApiConfiguration) error {
|
|
|
|
accessKeySet := make(map[string]string)
|
|
|
|
for _, ident := range s3cfg.Identities {
|
|
|
|
for _, cred := range ident.Credentials {
|
|
|
|
if userName, found := accessKeySet[cred.AccessKey]; !found {
|
|
|
|
accessKeySet[cred.AccessKey] = ident.Name
|
2022-08-30 16:37:52 +00:00
|
|
|
} else if userName != ident.Name {
|
2022-07-13 14:49:03 +00:00
|
|
|
return fmt.Errorf("duplicate accessKey[%s], already configured in user[%s]", cred.AccessKey, userName)
|
2022-07-13 09:28:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|