libraryService.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. package service
  2. import (
  3. "fmt"
  4. "iot_manager_service/app/multimedia/dao"
  5. "iot_manager_service/app/multimedia/model"
  6. "iot_manager_service/app/system/service"
  7. "iot_manager_service/config"
  8. "iot_manager_service/util/common"
  9. "iot_manager_service/util/logger"
  10. "iot_manager_service/util/minio"
  11. "mime/multipart"
  12. "strings"
  13. "time"
  14. )
  15. var LibraryService = new(libraryService)
  16. type libraryService struct{}
  17. func (s *libraryService) Get(id int) (*dao.Library, *common.Errors) {
  18. library := &dao.Library{
  19. ID: id,
  20. }
  21. err := library.Get()
  22. if err != nil {
  23. return nil, common.FailResponse(err.Error(), nil)
  24. }
  25. return library, nil
  26. }
  27. func (s *libraryService) List(tenantId string, searchValue string, current, size, sysType, libType int) ([]model.LibraryDetail, int64,
  28. *common.Errors) {
  29. library := &dao.Library{
  30. TenantId: tenantId,
  31. SysType: sysType,
  32. LibType: libType,
  33. }
  34. offset := (current - 1) * size
  35. limit := size
  36. if searchValue != "" {
  37. library.LibName = searchValue
  38. }
  39. if sysType != -1 {
  40. library.SysType = sysType
  41. }
  42. libraries, total, err := library.GetLibraries(offset, limit)
  43. if err != nil {
  44. return nil, 0, common.FailResponse(err.Error(), nil)
  45. }
  46. var rsp []model.LibraryDetail
  47. for _, lib := range libraries {
  48. rsp = append(rsp, model.LibToModel(lib))
  49. }
  50. return rsp, total, nil
  51. }
  52. func (s *libraryService) Remove(userId int, tenantId string, id int) *common.Errors {
  53. library := &dao.Library{
  54. ID: id,
  55. IsDeleted: 1,
  56. UpdateUser: userId,
  57. UpdateTime: time.Now(),
  58. }
  59. err := library.Delete()
  60. if err != nil {
  61. return common.FailResponse(err.Error(), nil)
  62. }
  63. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeInfoBar,
  64. common.DeviceTypeDefault, "", common.OperationSuccess)
  65. return nil
  66. }
  67. func (s *libraryService) GetList(tenantId string, libName string, libType, sysType int) ([]dao.Library, *common.Errors) {
  68. library := &dao.Library{
  69. TenantId: tenantId,
  70. LibName: libName,
  71. LibType: libType,
  72. SysType: sysType,
  73. }
  74. libraries, err := library.GetAll()
  75. if err != nil {
  76. return nil, common.FailResponse(err.Error(), nil)
  77. }
  78. return libraries, nil
  79. }
  80. func (s *libraryService) UploadFile(tenantId string, fileHeader *multipart.FileHeader) (*model.RspUploadFile,
  81. *common.Errors) {
  82. fileContent, err := fileHeader.Open()
  83. if err != nil {
  84. logger.Logger.Errorf("UploadFile fileHeader.Open fail, err = %s", err.Error())
  85. return nil, common.ParamsInvalidResponse(err.Error(), nil)
  86. }
  87. fileNameArray := strings.Split(fileHeader.Filename, ".")
  88. if len(fileNameArray) < 2 {
  89. return nil, common.ParamsInvalidResponse("invalid file name", nil)
  90. }
  91. // happy8as8f0980f_92389h.jpg
  92. objectName := "library/" + common.RandomString2(16) + "_" + common.RandomString2(6) + "." + fileNameArray[len(
  93. fileNameArray)-1]
  94. bucket := fmt.Sprintf("longchi-%v", tenantId)
  95. err = minio.PutFile(minio.FileObject{
  96. Bucket: bucket,
  97. ObjectName: objectName,
  98. ObjectSize: fileHeader.Size,
  99. Reader: fileContent,
  100. })
  101. if err != nil {
  102. logger.Logger.Errorf("UploadFile PutFile fail, err = %s", err.Error())
  103. return nil, common.FailResponse("", nil)
  104. }
  105. contentTypeArr := fileHeader.Header["Content-Type"]
  106. contentType := ""
  107. if len(contentTypeArr) > 0 {
  108. contentType = contentTypeArr[0]
  109. }
  110. fileType := 0
  111. if contentType == "image/jpeg" {
  112. fileType = 2
  113. } else if contentType == "video/mp4" {
  114. fileType = 1
  115. } else if contentType == "audio/mpeg" {
  116. fileType = 3
  117. }
  118. duration := 0
  119. if fileType == 2 {
  120. duration = 3
  121. } else {
  122. duration, err = common.GetMediaDuration(fileContent, contentType)
  123. if err != nil {
  124. logger.Logger.Errorf("UploadFile duration fail, err = %s", err.Error())
  125. duration = 0
  126. }
  127. }
  128. return &model.RspUploadFile{
  129. Link: config.Instance().Minio.Link + "/" + bucket + "/" + objectName,
  130. Domain: "",
  131. Name: objectName,
  132. OriginalName: fileHeader.Filename,
  133. AttachId: 0,
  134. Duration: duration,
  135. Resolution: "",
  136. FileSize: fileHeader.Size,
  137. FileType: fileType,
  138. }, nil
  139. }
  140. func (s *libraryService) Submit(tenantId string, userId int, req dao.Library) *common.Errors {
  141. library := &req
  142. library.TenantId = tenantId
  143. library.UpdateUser = userId
  144. library.UpdateTime = time.Now()
  145. if library.ID == 0 {
  146. library.CreateTime = time.Now()
  147. library.CreateUser = userId
  148. if err := library.Create(); err != nil {
  149. logger.Logger.Errorf("Create err = %s \n", err.Error())
  150. return common.FailResponse(err.Error(), nil)
  151. }
  152. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeInfoBar,
  153. common.DeviceTypeDefault, library.LibName, common.OperationSuccess)
  154. return common.SuccessResponse(common.Succeeded, nil)
  155. }
  156. if err := library.Update(); err != nil {
  157. logger.Logger.Errorf("Update err = %s \n", err.Error())
  158. return common.FailResponse(err.Error(), nil)
  159. }
  160. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeInfoBar,
  161. common.DeviceTypeDefault, library.LibName, common.OperationSuccess)
  162. return common.SuccessResponse(common.Succeeded, nil)
  163. }