libraryService.go 5.0 KB

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