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"
|
2022-07-29 07:17:28 +00:00
|
|
|
"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{}
|
|
|
|
|
2021-08-30 01:41:29 +00:00
|
|
|
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{
|
2022-06-11 16:50:59 +00:00
|
|
|
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("us-west-002"),
|
|
|
|
S3ForcePathStyle: aws.Bool(true),
|
2021-08-26 00:34:29 +00:00
|
|
|
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
|
|
|
}
|
2021-08-26 00:34:29 +00:00
|
|
|
sess.Handlers.Build.PushFront(skipSha256PayloadSigning)
|
2021-08-25 05:30:06 +00:00
|
|
|
client.conn = s3.New(sess)
|
|
|
|
return client, nil
|
|
|
|
}
|