libraryService.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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, libType int) ([]model.LibraryDetail,
  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, err := library.GetLibraries(offset, limit)
  44. if err != nil {
  45. return nil, 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, nil
  52. }
  53. func (s *libraryService) Remove(userId int64, tenantId int, 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 int, 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 int, 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 strings.Contains(objectName, "mp4") || strings.Contains(objectName, "mp3") {
  121. }
  122. return &model.RspUploadFile{
  123. Link: config.Instance().Minio.Link + "/" + bucket + "/" + objectName,
  124. Domain: "",
  125. Name: objectName,
  126. OriginalName: fileHeader.Filename,
  127. AttachId: 0,
  128. Duration: duration,
  129. Resolution: "",
  130. FileSize: fileHeader.Size,
  131. FileType: fileType,
  132. }, nil
  133. }
  134. func (s *libraryService) Submit(tenantId int, userId int64, req dao.Library) *common.Errors {
  135. library := &req
  136. library.TenantId = tenantId
  137. library.UpdateUser = userId
  138. library.UpdateTime = time.Now()
  139. fmt.Printf("library = %v", library)
  140. if library.ID == 0 {
  141. library.CreateTime = time.Now()
  142. library.CreateUser = userId
  143. if err := library.Create(); err != nil {
  144. logger.Logger.Errorf("Create err = %s \n", err.Error())
  145. return common.FailResponse(err.Error(), nil)
  146. }
  147. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeInfoBar,
  148. common.DeviceTypeDefault, library.LibName, common.OperationSuccess)
  149. return common.SuccessResponse(common.Succeeded, nil)
  150. }
  151. if err := library.Update(); err != nil {
  152. logger.Logger.Errorf("Update err = %s \n", err.Error())
  153. return common.FailResponse(err.Error(), nil)
  154. }
  155. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeInfoBar,
  156. common.DeviceTypeDefault, library.LibName, common.OperationSuccess)
  157. return common.SuccessResponse(common.Succeeded, nil)
  158. }