|
@@ -29,11 +29,12 @@ func (s *libraryService) Get(id int) (*dao.Library, *common.Errors) {
|
|
|
return library, nil
|
|
|
}
|
|
|
|
|
|
-func (s *libraryService) List(tenantId int, searchValue string, current, size, sysType int) ([]model.LibraryDetail,
|
|
|
+func (s *libraryService) List(tenantId int, searchValue string, current, size, sysType, libType int) ([]model.LibraryDetail,
|
|
|
*common.Errors) {
|
|
|
library := &dao.Library{
|
|
|
TenantId: tenantId,
|
|
|
SysType: sysType,
|
|
|
+ LibType: libType,
|
|
|
}
|
|
|
|
|
|
offset := (current - 1) * size
|
|
@@ -45,6 +46,7 @@ func (s *libraryService) List(tenantId int, searchValue string, current, size, s
|
|
|
if sysType != -1 {
|
|
|
library.SysType = sysType
|
|
|
}
|
|
|
+ //fmt.Printf("sysType = %v", sysType)
|
|
|
libraries, err := library.GetLibraries(offset, limit)
|
|
|
if err != nil {
|
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
@@ -127,6 +129,10 @@ func (s *libraryService) UploadFile(tenantId int, fileHeader *multipart.FileHead
|
|
|
fileType = 1
|
|
|
} else if contentType == "audio/mpeg" {
|
|
|
fileType = 3
|
|
|
+ }
|
|
|
+ duration := 0
|
|
|
+ if strings.Contains(objectName, "mp4") || strings.Contains(objectName, "mp3") {
|
|
|
+
|
|
|
}
|
|
|
return &model.RspUploadFile{
|
|
|
Link: config.Instance().Minio.Link + "/" + bucket + "/" + objectName,
|
|
@@ -134,7 +140,7 @@ func (s *libraryService) UploadFile(tenantId int, fileHeader *multipart.FileHead
|
|
|
Name: objectName,
|
|
|
OriginalName: fileHeader.Filename,
|
|
|
AttachId: 0,
|
|
|
- Duration: 0,
|
|
|
+ Duration: duration,
|
|
|
Resolution: "",
|
|
|
FileSize: fileHeader.Size,
|
|
|
FileType: fileType,
|
|
@@ -147,6 +153,7 @@ func (s *libraryService) Submit(tenantId int, userId int64, req dao.Library) *co
|
|
|
library.UpdateUser = userId
|
|
|
library.UpdateTime = time.Now()
|
|
|
|
|
|
+ fmt.Printf("library = %v", library)
|
|
|
if library.ID == 0 {
|
|
|
library.CreateTime = time.Now()
|
|
|
library.CreateUser = userId
|