main.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package huawei
  2. import (
  3. "fmt"
  4. "os"
  5. "path"
  6. "path/filepath"
  7. "strings"
  8. "github.com/huaweicloud/huaweicloud-sdk-go-obs/obs"
  9. )
  10. const endpoint = "obs.cn-east-3.myhuaweicloud.com"
  11. const bucketName = "spu3dv1"
  12. func createObsClient() (*obs.ObsClient, error) {
  13. return obs.New("RA1D7CFVCVKUFX1FHHPB", "cDrR2NgAF2KaA4MRkcK19r93P3P6hLKOPhHvPu9p", endpoint)
  14. }
  15. type OssType struct {
  16. Url string
  17. Size int64
  18. }
  19. var _client *obs.ObsClient = nil
  20. func InitConfig() error {
  21. c, e := createObsClient()
  22. if e != nil {
  23. return e
  24. }
  25. _client = c
  26. return nil
  27. }
  28. func UploadFile(fpath string, obsDir string, name string) (*OssType, error) {
  29. if _client == nil {
  30. return nil, fmt.Errorf("obs init error")
  31. }
  32. obsClient := _client
  33. keyFormat := "%s/%s"
  34. if strings.HasSuffix(obsDir, "/") {
  35. keyFormat = "%s%s"
  36. }
  37. obsname := name
  38. if len(name) < 2 {
  39. _, obsname = filepath.Split(fpath)
  40. }
  41. obsKey := fmt.Sprintf(keyFormat, obsDir, obsname)
  42. input := &obs.PutFileInput{}
  43. input.Bucket = bucketName
  44. input.Key = obsKey
  45. input.SourceFile = fpath
  46. fpathExt := path.Ext(fpath)
  47. isGzFile := fpathExt == ".gz"
  48. if isGzFile {
  49. input.ContentType = "text/plain"
  50. input.Metadata = map[string]string{"Content-Encoding": "gzip"}
  51. }
  52. fmt.Println("writing file", fpath, "=>", obsKey)
  53. result, err := obsClient.PutFile(input)
  54. isUploadOk := true
  55. if err != nil {
  56. fmt.Println("upload failed try again", err.Error())
  57. isUploadOk = false
  58. }
  59. if result.StatusCode != 200 {
  60. isUploadOk = false
  61. }
  62. if !isUploadOk {
  63. result, err = obsClient.PutFile(input)
  64. if err != nil {
  65. fmt.Println("upload obs fail2", fpath, err.Error())
  66. return nil, err
  67. }
  68. if result.StatusCode != 200 {
  69. return nil, err
  70. }
  71. }
  72. if isGzFile {
  73. metaRet, err := obsClient.SetObjectMetadata(&obs.SetObjectMetadataInput{
  74. Bucket: bucketName,
  75. Key: obsKey,
  76. // ContentEncoding: "gzip",
  77. // ContentType: "text/plain",
  78. })
  79. fmt.Println(metaRet, err)
  80. if err != nil {
  81. metaRet, err = obsClient.SetObjectMetadata(&obs.SetObjectMetadataInput{
  82. Bucket: bucketName,
  83. Key: obsKey,
  84. // ContentEncoding: "gzip",
  85. // ContentType: "text/plain",
  86. })
  87. fmt.Println(metaRet, err)
  88. }
  89. }
  90. fi, err := os.Stat(fpath)
  91. size := int64(1)
  92. if err == nil {
  93. size = fi.Size()
  94. }
  95. return &OssType{Url: fmt.Sprintf("//%s.%s/%s", bucketName, endpoint, obsKey), Size: int64(size)}, nil
  96. }