oss.go 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. package services
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "eta/eta_mobile/services/alarm_msg"
  6. "fmt"
  7. "github.com/aliyun/aliyun-oss-go-sdk/oss"
  8. "os"
  9. "time"
  10. "eta/eta_mobile/utils"
  11. "github.com/aliyun/alibaba-cloud-sdk-go/services/sts"
  12. )
  13. /*
  14. 上传demo
  15. func init() {
  16. fmt.Println("start")
  17. randStr := utils.GetRandStringNoSpecialChar(28)
  18. fileName := randStr + ".jpg"
  19. fmt.Println("fileName:",fileName)
  20. fpath:="./1.png"
  21. resourceUrl,err:=UploadAliyun(fileName,fpath)
  22. if err!=nil {
  23. fmt.Println("UploadAliyun Err:",err.Error())
  24. return
  25. }
  26. fmt.Println("resourceUrl:",resourceUrl)
  27. fmt.Println("end")
  28. }
  29. */
  30. // 图片上传到阿里云
  31. //func UploadAliyun(filename, filepath string) (string, error) {
  32. // client, err := oss.New(utils.Endpoint, utils.AccessKeyId, utils.AccessKeySecret)
  33. // if err != nil {
  34. // return "1", err
  35. // }
  36. // bucket, err := client.Bucket(utils.Bucketname)
  37. // if err != nil {
  38. // return "2", err
  39. // }
  40. // path := utils.UploadDir + time.Now().Format("200601/20060102/")
  41. // path += filename
  42. // err = bucket.PutObjectFromFile(path, filepath)
  43. // if err != nil {
  44. // return "3", err
  45. // }
  46. // path = utils.Imghost + path
  47. // return path, err
  48. //}
  49. // UploadAliyunV2 图片上传到阿里云
  50. //func UploadAliyunV2(filename, filepath string) (string, error) {
  51. // if utils.AccessKeyId == `` {
  52. // return "0", errors.New("阿里云信息未配置")
  53. // }
  54. // client, err := oss.New(utils.Endpoint, utils.AccessKeyId, utils.AccessKeySecret)
  55. // if err != nil {
  56. // return "1", err
  57. // }
  58. // bucket, err := client.Bucket(utils.Bucketname)
  59. // if err != nil {
  60. // return "2", err
  61. // }
  62. // path := utils.UploadDir + time.Now().Format("200601/20060102/")
  63. // path += filename
  64. // err = bucket.PutObjectFromFile(path, filepath)
  65. // if err != nil {
  66. // return "3", err
  67. // }
  68. // path = utils.Imghost + path
  69. // return path, err
  70. //}
  71. // UploadAudioAliyun 音频上传到阿里云
  72. //func UploadAudioAliyun(filename, filepath string) (string, error) {
  73. // if utils.AccessKeyId == `` {
  74. // return "0", errors.New("阿里云信息未配置")
  75. // }
  76. // client, err := oss.New(utils.Endpoint, utils.AccessKeyId, utils.AccessKeySecret)
  77. // if err != nil {
  78. // return "1", err
  79. // }
  80. // bucket, err := client.Bucket(utils.Bucketname)
  81. // if err != nil {
  82. // return "2", err
  83. // }
  84. // path := utils.Upload_Audio_Dir + time.Now().Format("200601/20060102/")
  85. // path += filename
  86. // err = bucket.PutObjectFromFile(path, filepath)
  87. // if err != nil {
  88. // return "3", err
  89. // }
  90. // path = utils.Imghost + path
  91. // return path, err
  92. //}
  93. // UploadVideoAliyun 视频上传到阿里云
  94. //func UploadVideoAliyun(filename, filepath, savePath string) error {
  95. // if utils.AccessKeyId == `` {
  96. // return errors.New("阿里云信息未配置")
  97. // }
  98. // defer func() {
  99. // os.Remove(filepath)
  100. // }()
  101. // client, err := oss.New(utils.Endpoint, utils.AccessKeyId, utils.AccessKeySecret)
  102. // if err != nil {
  103. // return err
  104. // }
  105. // bucket, err := client.Bucket(utils.Bucketname)
  106. // if err != nil {
  107. // return err
  108. // }
  109. // //path := utils.Upload_Audio_Dir + time.Now().Format("200601/20060102/")
  110. // //path += filename
  111. // err = bucket.PutObjectFromFile(savePath, filepath)
  112. // if err != nil {
  113. // return err
  114. // }
  115. // //path = utils.Imghost + path
  116. // //return path,err
  117. // return err
  118. //}
  119. // UploadFileToAliyun 上传文件到阿里云
  120. //func UploadFileToAliyun(filename, filepath, savePath string) error {
  121. // if utils.AccessKeyId == `` {
  122. // return errors.New("阿里云信息未配置")
  123. // }
  124. // defer func() {
  125. // os.Remove(filepath)
  126. // }()
  127. // client, err := oss.New(utils.Endpoint, utils.AccessKeyId, utils.AccessKeySecret)
  128. // if err != nil {
  129. // return err
  130. // }
  131. // bucket, err := client.Bucket(utils.Bucketname)
  132. // if err != nil {
  133. // return err
  134. // }
  135. // //path := utils.Upload_Audio_Dir + time.Now().Format("200601/20060102/")
  136. // //path += filename
  137. // err = bucket.PutObjectFromFile(savePath, filepath)
  138. // if err != nil {
  139. // return err
  140. // }
  141. // //path = utils.Imghost + path
  142. // //return path,err
  143. // return err
  144. //}
  145. type STSToken struct {
  146. AccessKeyId string
  147. AccessKeySecret string
  148. SecurityToken string
  149. ExpiredTime string
  150. RegionId string
  151. Bucketname string
  152. Endpoint string
  153. Imghost string
  154. }
  155. // GetOssSTSToken 获取STSToken
  156. func GetOssSTSToken() (item *STSToken, err error) {
  157. defer func() {
  158. if err != nil {
  159. utils.FileLog.Info(err.Error())
  160. go alarm_msg.SendAlarmMsg("获取STSToken失败, ErrMsg: "+err.Error(), 3)
  161. }
  162. }()
  163. item = new(STSToken)
  164. // 获取缓存中的Token
  165. recent, _ := utils.Rc.RedisString(utils.STSTokenCacheKey)
  166. if recent != "" {
  167. lastToken := new(STSToken)
  168. if e := json.Unmarshal([]byte(recent), &lastToken); e != nil {
  169. err = errors.New("GetOssSTSToken lastToken Unmarshal Err: " + e.Error())
  170. return
  171. }
  172. // 未防止正在上传大文件时Token过期, 将判定的过期时间提前10分钟
  173. afterTime := time.Now().Local().Add(10 * time.Minute)
  174. expired, e := time.ParseInLocation(utils.FormatDateTime, lastToken.ExpiredTime, time.Local)
  175. if e != nil {
  176. err = errors.New("GetOssSTSToken expiredTime Parse Err: " + e.Error())
  177. return
  178. }
  179. if expired.After(afterTime) {
  180. item.AccessKeyId = lastToken.AccessKeyId
  181. item.AccessKeySecret = lastToken.AccessKeySecret
  182. item.SecurityToken = lastToken.SecurityToken
  183. item.ExpiredTime = lastToken.ExpiredTime
  184. item.RegionId = utils.RegionId
  185. item.Bucketname = utils.Bucketname
  186. item.Endpoint = utils.Imghost
  187. item.Imghost = utils.Imghost
  188. return
  189. }
  190. }
  191. // 已过期则获取新的token
  192. newToken, e := NewSTSToken()
  193. if e != nil {
  194. err = errors.New("GetOssSTSToken NewSTSToken Err: " + e.Error())
  195. return
  196. }
  197. newTokenJson, e := json.Marshal(newToken)
  198. if e != nil {
  199. err = errors.New("GetOssSTSToken NewToken JSON Err: " + e.Error())
  200. return
  201. }
  202. // 覆盖缓存
  203. if e := utils.Rc.Put(utils.STSTokenCacheKey, newTokenJson, time.Hour); e != nil {
  204. err = errors.New("GetOssSTSToken SetRedis Err: " + e.Error())
  205. return
  206. }
  207. item = newToken
  208. return
  209. }
  210. // NewSTSToken 获取一个新的STSToken
  211. func NewSTSToken() (item *STSToken, err error) {
  212. defer func() {
  213. if err != nil {
  214. utils.FileLog.Info(err.Error())
  215. }
  216. }()
  217. item = new(STSToken)
  218. client, e := sts.NewClientWithAccessKey("cn-shanghai", utils.RAMAccessKeyId, utils.RAMAccessKeySecret)
  219. if e != nil {
  220. err = errors.New("NewSTSToken NewClient Err: " + e.Error())
  221. return
  222. }
  223. request := sts.CreateAssumeRoleRequest()
  224. request.Scheme = utils.AliStsScheme
  225. request.RegionId = utils.RegionId
  226. request.RoleArn = utils.RoleArn
  227. now := time.Now().Format(utils.FormatDateTimeUnSpace)
  228. request.RoleSessionName = utils.RoleSessionName + now
  229. request.DurationSeconds = "3600"
  230. request.ConnectTimeout = 300 * time.Second
  231. request.ReadTimeout = 300 * time.Second
  232. response, e := client.AssumeRole(request)
  233. if e != nil {
  234. err = errors.New("NewSTSToken AssumeRole Err: " + e.Error())
  235. return
  236. }
  237. if response != nil {
  238. item.AccessKeyId = response.Credentials.AccessKeyId
  239. item.AccessKeySecret = response.Credentials.AccessKeySecret
  240. item.SecurityToken = response.Credentials.SecurityToken
  241. t, _ := time.Parse(time.RFC3339, response.Credentials.Expiration)
  242. expiration := t.In(time.Local)
  243. item.ExpiredTime = expiration.Format(utils.FormatDateTime)
  244. item.RegionId = utils.RegionId
  245. item.Bucketname = utils.Bucketname
  246. item.Endpoint = utils.Imghost
  247. item.Imghost = utils.Imghost
  248. }
  249. return
  250. }
  251. // UploadAliyunToDir 上传至hzchart
  252. //func UploadAliyunToDir(filename, filepath, uploadDir, fileDir string) (string, error) {
  253. // if utils.AccessKeyId == `` {
  254. // return "0", errors.New("阿里云信息未配置")
  255. // }
  256. // client, err := oss.New(utils.Endpoint, utils.AccessKeyId, utils.AccessKeySecret)
  257. // if err != nil {
  258. // return "1", err
  259. // }
  260. // bucket, err := client.Bucket(utils.Bucketname)
  261. // if err != nil {
  262. // return "2", err
  263. // }
  264. // if uploadDir == "" {
  265. // uploadDir = utils.UploadDir
  266. // }
  267. // if fileDir == "" {
  268. // fileDir = time.Now().Format("200601/20060102/")
  269. // }
  270. // path := uploadDir + fileDir
  271. // path += filename
  272. // err = bucket.PutObjectFromFile(path, filepath)
  273. // if err != nil {
  274. // return "3", err
  275. // }
  276. // path = utils.Imghost + path
  277. // return path, err
  278. //}
  279. type AliOss struct{}
  280. // UploadFile 上传文件
  281. func (m *AliOss) UploadFile(fileName, filePath, savePath string) (string, error) {
  282. defer func() {
  283. _ = os.Remove(filePath)
  284. }()
  285. if utils.AccessKeyId == `` {
  286. return "0", errors.New("阿里云信息未配置")
  287. }
  288. client, err := oss.New(utils.Endpoint, utils.AccessKeyId, utils.AccessKeySecret)
  289. if err != nil {
  290. return "1", err
  291. }
  292. bucket, err := client.Bucket(utils.Bucketname)
  293. if err != nil {
  294. return "2", err
  295. }
  296. path := savePath
  297. if savePath == "" {
  298. path = utils.UploadDir + time.Now().Format("200601/20060102/") + fileName
  299. }
  300. err = bucket.PutObjectFromFile(path, filePath)
  301. if err != nil {
  302. return "3", err
  303. }
  304. resourceUrl := utils.Imghost + path
  305. return resourceUrl, err
  306. }
  307. func (m *AliOss) GetUploadToken() (token OssToken, err error) {
  308. stsToken, e := GetOssSTSToken()
  309. if e != nil {
  310. err = fmt.Errorf("GetOssSTSToken err: %s", e.Error())
  311. return
  312. }
  313. token.AccessKeyId = stsToken.AccessKeyId
  314. token.AccessKeySecret = stsToken.AccessKeySecret
  315. token.SecurityToken = stsToken.SecurityToken
  316. token.ExpiredTime = stsToken.ExpiredTime
  317. token.RegionId = stsToken.RegionId
  318. token.Bucketname = stsToken.Bucketname
  319. token.Endpoint = stsToken.Endpoint
  320. token.Imghost = stsToken.Imghost
  321. return
  322. }