aliyun.go 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package s3
  2. import (
  3. "fmt"
  4. "github.com/aws/aws-sdk-go/aws"
  5. "github.com/aws/aws-sdk-go/aws/credentials"
  6. "github.com/aws/aws-sdk-go/aws/session"
  7. "github.com/aws/aws-sdk-go/service/s3"
  8. "github.com/chrislusf/seaweedfs/weed/pb/remote_pb"
  9. "github.com/chrislusf/seaweedfs/weed/remote_storage"
  10. "github.com/chrislusf/seaweedfs/weed/util"
  11. "os"
  12. )
  13. func init() {
  14. remote_storage.RemoteStorageClientMakers["aliyun"] = new(AliyunRemoteStorageMaker)
  15. }
  16. type AliyunRemoteStorageMaker struct{}
  17. func (s AliyunRemoteStorageMaker) HasBucket() bool {
  18. return true
  19. }
  20. func (s AliyunRemoteStorageMaker) Make(conf *remote_pb.RemoteConf) (remote_storage.RemoteStorageClient, error) {
  21. client := &s3RemoteStorageClient{
  22. conf: conf,
  23. }
  24. accessKey := util.Nvl(conf.AliyunAccessKey, os.Getenv("ALICLOUD_ACCESS_KEY_ID"))
  25. secretKey := util.Nvl(conf.AliyunSecretKey, os.Getenv("ALICLOUD_ACCESS_KEY_SECRET"))
  26. config := &aws.Config{
  27. Endpoint: aws.String(conf.AliyunEndpoint),
  28. Region: aws.String(conf.AliyunRegion),
  29. S3ForcePathStyle: aws.Bool(false),
  30. S3DisableContentMD5Validation: aws.Bool(true),
  31. }
  32. if accessKey != "" && secretKey != "" {
  33. config.Credentials = credentials.NewStaticCredentials(accessKey, secretKey, "")
  34. }
  35. sess, err := session.NewSession(config)
  36. if err != nil {
  37. return nil, fmt.Errorf("create aliyun session: %v", err)
  38. }
  39. sess.Handlers.Build.PushFront(skipSha256PayloadSigning)
  40. client.conn = s3.New(sess)
  41. return client, nil
  42. }