libraryService.go 4.7 KB

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