service-minio.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package api
  2. import (
  3. "assetcenter/conf"
  4. "context"
  5. "fmt"
  6. "log"
  7. "path"
  8. "strings"
  9. "time"
  10. "github.com/gin-gonic/gin"
  11. "github.com/minio/minio-go/v7"
  12. "github.com/minio/minio-go/v7/pkg/credentials"
  13. )
  14. func createMinioClient(conf *conf.AppConf) *minio.Client {
  15. endpoint := conf.Minio.Endpoint
  16. accessKeyID := conf.Minio.AccessKey
  17. secretAccessKey := conf.Minio.AccessSec
  18. useSSL := false
  19. // Initialize minio client object.
  20. minioClient, err := minio.New(endpoint, &minio.Options{
  21. Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""),
  22. Secure: useSSL,
  23. })
  24. if err != nil {
  25. log.Fatalln(err)
  26. return nil
  27. }
  28. return minioClient
  29. }
  30. func MinioCreateUserPolicy(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  31. body := struct {
  32. Key string
  33. }{}
  34. err := c.ShouldBindJSON(&body)
  35. if err != nil {
  36. return nil, NewError("参数解析错误!")
  37. }
  38. if len(body.Key) < 1 {
  39. return nil, NewError("Object Key不能为空")
  40. }
  41. // Initialize policy condition config.
  42. policy := minio.NewPostPolicy()
  43. // Apply upload policy restrictions:
  44. policy.SetBucket(apictx.Svc.Conf.Minio.Bucket)
  45. fkey := body.Key //fmt.Sprintf("u/%s/%s", apictx.User.Parent, body.Key)
  46. //去掉斜杠
  47. fkey = strings.TrimPrefix(fkey, "/")
  48. policy.SetKey(fkey)
  49. policy.SetExpires(time.Now().UTC().Add(time.Second * 600)) // expires in 10 days
  50. // Only allow 'png' images.
  51. // policy.SetContentType("image/png")
  52. // Only allow content size in range 1KB to 1MB.
  53. policy.SetContentLengthRange(0, 5*1024*1024)
  54. // Add a user metadata using the key "custom" and value "user"
  55. // policy.SetUserMetadata("custom", "user")
  56. client := createMinioClient(apictx.Svc.Conf)
  57. url, err := client.PresignedPutObject(
  58. context.Background(), apictx.Svc.Conf.Minio.Bucket, fkey, time.Second*600,
  59. )
  60. //_, formdata, err := client.PresignedPostPolicy(context.Background(), policy)
  61. outUrl := fmt.Sprintf("%s://%s%s?%s", url.Scheme, url.Host, url.Path, url.RawQuery)
  62. if err != nil {
  63. return nil, err
  64. }
  65. out := map[string]interface{}{
  66. "uploadUrl": outUrl,
  67. "url": fmt.Sprintf("//%s/%s/%s", apictx.Svc.Conf.Minio.Endpoint, apictx.Svc.Conf.Minio.Bucket, fkey),
  68. "saveType": conf.SaveType_Minio,
  69. }
  70. return out, nil
  71. }
  72. func MinioUploadFile(client *minio.Client, bucketName string, fpath string, key string) (string, int64) {
  73. info, err := client.FPutObject(context.Background(), bucketName, key, fpath, minio.PutObjectOptions{})
  74. fmt.Println(info)
  75. if err != nil {
  76. return "", 0
  77. }
  78. return info.Key, info.Size
  79. }
  80. func MinioUploadLocalFile(client *minio.Client, bucketName string, fpath string, minioDir string) (string, int64) {
  81. _, name := path.Split(fpath)
  82. keyFormat := "%s/%s"
  83. if strings.HasSuffix(minioDir, "/") {
  84. keyFormat = "%s%s"
  85. }
  86. minioKey := fmt.Sprintf(keyFormat, minioDir, name)
  87. opts := minio.PutObjectOptions{}
  88. fpathExt := path.Ext(fpath)
  89. isGzFile := fpathExt == ".gz"
  90. if isGzFile {
  91. opts.ContentType = "text/plain"
  92. opts.ContentEncoding = "gzip"
  93. }
  94. info, err := client.FPutObject(context.Background(), bucketName, minioKey, fpath, opts)
  95. fmt.Println(info)
  96. if err != nil {
  97. info, err = client.FPutObject(context.Background(), bucketName, minioKey, fpath, opts)
  98. if err != nil {
  99. return "", 0
  100. }
  101. }
  102. return minioKey, info.Size
  103. }