mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
26 lines
527 B
Go
26 lines
527 B
Go
|
package filer
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"github.com/chrislusf/seaweedfs/weed/pb/iam_pb"
|
||
|
"github.com/golang/protobuf/jsonpb"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
func ParseS3ConfigurationFromBytes(content []byte, config *iam_pb.S3ApiConfiguration) error {
|
||
|
if err := jsonpb.Unmarshal(bytes.NewBuffer(content), config); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func S3ConfigurationToText(writer io.Writer, config *iam_pb.S3ApiConfiguration) error {
|
||
|
|
||
|
m := jsonpb.Marshaler{
|
||
|
EmitDefaults: false,
|
||
|
Indent: " ",
|
||
|
}
|
||
|
|
||
|
return m.Marshal(writer, config)
|
||
|
}
|