seaweedfs/weed/remote_storage/s3/backblaze.go

46 lines
1.4 KiB
Go
Raw Normal View History

2021-08-25 05:30:06 +00:00
package s3
import (
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/seaweedfs/seaweedfs/weed/pb/remote_pb"
"github.com/seaweedfs/seaweedfs/weed/remote_storage"
2021-08-25 05:30:06 +00:00
)
func init() {
remote_storage.RemoteStorageClientMakers["b2"] = new(BackBlazeRemoteStorageMaker)
}
type BackBlazeRemoteStorageMaker struct{}
func (s BackBlazeRemoteStorageMaker) HasBucket() bool {
return true
}
2021-08-26 22:18:34 +00:00
func (s BackBlazeRemoteStorageMaker) Make(conf *remote_pb.RemoteConf) (remote_storage.RemoteStorageClient, error) {
2021-08-25 05:30:06 +00:00
client := &s3RemoteStorageClient{
supportTagging: false,
conf: conf,
2021-08-25 05:30:06 +00:00
}
config := &aws.Config{
2021-09-01 09:45:42 +00:00
Endpoint: aws.String(conf.BackblazeEndpoint),
Region: aws.String(conf.BackblazeRegion),
2021-09-01 09:45:42 +00:00
S3ForcePathStyle: aws.Bool(true),
S3DisableContentMD5Validation: aws.Bool(true),
2021-08-25 05:30:06 +00:00
}
if conf.BackblazeKeyId != "" && conf.BackblazeApplicationKey != "" {
config.Credentials = credentials.NewStaticCredentials(conf.BackblazeKeyId, conf.BackblazeApplicationKey, "")
}
sess, err := session.NewSession(config)
if err != nil {
2021-08-25 06:46:33 +00:00
return nil, fmt.Errorf("create backblaze session: %v", err)
2021-08-25 05:30:06 +00:00
}
sess.Handlers.Build.PushFront(skipSha256PayloadSigning)
2021-08-25 05:30:06 +00:00
client.conn = s3.New(sess)
return client, nil
}