You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							45 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							45 lines
						
					
					
						
							1.4 KiB
						
					
					
				| 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" | |
| ) | |
| 
 | |
| func init() { | |
| 	remote_storage.RemoteStorageClientMakers["b2"] = new(BackBlazeRemoteStorageMaker) | |
| } | |
| 
 | |
| type BackBlazeRemoteStorageMaker struct{} | |
| 
 | |
| func (s BackBlazeRemoteStorageMaker) HasBucket() bool { | |
| 	return true | |
| } | |
| 
 | |
| func (s BackBlazeRemoteStorageMaker) Make(conf *remote_pb.RemoteConf) (remote_storage.RemoteStorageClient, error) { | |
| 	client := &s3RemoteStorageClient{ | |
| 		supportTagging: false, | |
| 		conf:           conf, | |
| 	} | |
| 	config := &aws.Config{ | |
| 		Endpoint:                      aws.String(conf.BackblazeEndpoint), | |
| 		Region:                        aws.String(conf.BackblazeRegion), | |
| 		S3ForcePathStyle:              aws.Bool(true), | |
| 		S3DisableContentMD5Validation: aws.Bool(true), | |
| 	} | |
| 	if conf.BackblazeKeyId != "" && conf.BackblazeApplicationKey != "" { | |
| 		config.Credentials = credentials.NewStaticCredentials(conf.BackblazeKeyId, conf.BackblazeApplicationKey, "") | |
| 	} | |
| 
 | |
| 	sess, err := session.NewSession(config) | |
| 	if err != nil { | |
| 		return nil, fmt.Errorf("create backblaze session: %w", err) | |
| 	} | |
| 	sess.Handlers.Build.PushFront(skipSha256PayloadSigning) | |
| 	client.conn = s3.New(sess) | |
| 	return client, nil | |
| }
 |