|
@@ -11,6 +11,7 @@ import (
|
|
"fmt"
|
|
"fmt"
|
|
"github.com/rdlucklib/rdluck_tools/paging"
|
|
"github.com/rdlucklib/rdluck_tools/paging"
|
|
"os"
|
|
"os"
|
|
|
|
+ "sort"
|
|
"strconv"
|
|
"strconv"
|
|
"strings"
|
|
"strings"
|
|
"time"
|
|
"time"
|
|
@@ -309,9 +310,14 @@ func (this *SpeechRecognitionController) Save() {
|
|
br.Msg = "操作成功"
|
|
br.Msg = "操作成功"
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ req.FileName = strings.TrimSpace(req.FileName)
|
|
|
|
+ if req.FileName == "" {
|
|
|
|
+ br.Msg = "请输入文件名称"
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
|
|
speechOb := new(speech_recognition.SpeechRecognition)
|
|
speechOb := new(speech_recognition.SpeechRecognition)
|
|
- _, e := speechOb.GetItemById(req.SpeechRecognitionId)
|
|
|
|
|
|
+ speechItem, e := speechOb.GetItemById(req.SpeechRecognitionId)
|
|
if e != nil {
|
|
if e != nil {
|
|
if e.Error() == utils.ErrNoRow() {
|
|
if e.Error() == utils.ErrNoRow() {
|
|
br.Msg = "转写文件不存在,请刷新页面"
|
|
br.Msg = "转写文件不存在,请刷新页面"
|
|
@@ -321,6 +327,32 @@ func (this *SpeechRecognitionController) Save() {
|
|
br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
|
|
br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ if req.FileName != speechItem.FileName {
|
|
|
|
+ // 校验重名
|
|
|
|
+ {
|
|
|
|
+ cond := fmt.Sprintf(` AND %s = ? AND %s <> ?`, speech_recognition.SpeechRecognitionCols.FileName, speech_recognition.SpeechRecognitionCols.SpeechRecognitionId)
|
|
|
|
+ pars := make([]interface{}, 0)
|
|
|
|
+ pars = append(pars, req.FileName, req.SpeechRecognitionId)
|
|
|
|
+ exists, e := speechOb.GetItemByCondition(cond, pars, "")
|
|
|
|
+ if e != nil && e.Error() != utils.ErrNoRow() {
|
|
|
|
+ br.Msg = "操作失败"
|
|
|
|
+ br.ErrMsg = "获取同名转写文件失败, Err: " + e.Error()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if exists != nil && exists.SpeechRecognitionId > 0 {
|
|
|
|
+ br.Msg = "文件名称已存在,请重新输入"
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ speechItem.FileName = req.FileName
|
|
|
|
+ speechItem.ModifyTime = time.Now().Local()
|
|
|
|
+ updateCols := []string{speech_recognition.SpeechRecognitionCols.FileName, speech_recognition.SpeechRecognitionCols.ModifyTime}
|
|
|
|
+ if e = speechItem.Update(updateCols); e != nil {
|
|
|
|
+ br.Msg = "操作失败"
|
|
|
|
+ br.ErrMsg = "更新转写文件名称失败, Err: " + e.Error()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
// 批量修改内容
|
|
// 批量修改内容
|
|
contentOb := new(speech_recognition.SpeechRecognitionContent)
|
|
contentOb := new(speech_recognition.SpeechRecognitionContent)
|
|
@@ -330,6 +362,26 @@ func (this *SpeechRecognitionController) Save() {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // 更新标签
|
|
|
|
+ mappingOb := new(speech_recognition.SpeechRecognitionTagMapping)
|
|
|
|
+ if e = mappingOb.ClearMappingBySpeechId(req.SpeechRecognitionId); e != nil {
|
|
|
|
+ br.Msg = "操作失败"
|
|
|
|
+ br.ErrMsg = "清除语音识别标签失败, Err: " + e.Error()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ tagMappings := make([]*speech_recognition.SpeechRecognitionTagMapping, 0)
|
|
|
|
+ for _, v := range req.TagIds {
|
|
|
|
+ tagMappings = append(tagMappings, &speech_recognition.SpeechRecognitionTagMapping{
|
|
|
|
+ SpeechRecognitionId: req.SpeechRecognitionId,
|
|
|
|
+ TagId: v,
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ if e = mappingOb.CreateMulti(tagMappings); e != nil {
|
|
|
|
+ br.Msg = "操作失败"
|
|
|
|
+ br.ErrMsg = "批量新增语音识别标签失败, Err: " + e.Error()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
br.Ret = 200
|
|
br.Ret = 200
|
|
br.Success = true
|
|
br.Success = true
|
|
br.Msg = "操作成功"
|
|
br.Msg = "操作成功"
|
|
@@ -841,7 +893,7 @@ func (this *SpeechRecognitionController) List() {
|
|
|
|
|
|
respList := make([]*speech_recognition.SpeechRecognitionDetailItem, 0)
|
|
respList := make([]*speech_recognition.SpeechRecognitionDetailItem, 0)
|
|
for _, v := range list {
|
|
for _, v := range list {
|
|
- t := speech_recognition.FormatSpeechRecognition2DetailItem(v, make([]*speech_recognition.SpeechRecognitionContentItem, 0), speechDetailTags[v.SpeechRecognitionId])
|
|
|
|
|
|
+ t := speech_recognition.FormatSpeechRecognition2DetailItem(v, make([]*speech_recognition.SpeechRecognitionContentItem, 0), speechDetailTags[v.SpeechRecognitionId], make([]*speech_recognition.SpeechRecognitionMenuItem, 0))
|
|
respList = append(respList, t)
|
|
respList = append(respList, t)
|
|
}
|
|
}
|
|
|
|
|
|
@@ -916,6 +968,22 @@ func (this *SpeechRecognitionController) Detail() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // 跟踪目录路径
|
|
|
|
+ menuPath := make([]*speech_recognition.SpeechRecognitionMenuItem, 0)
|
|
|
|
+ {
|
|
|
|
+ menuOb := new(speech_recognition.SpeechRecognitionMenu)
|
|
|
|
+ menus, e := menuOb.GetItemsByCondition(``, make([]interface{}, 0), []string{}, fmt.Sprintf("%s ASC, %s ASC", speech_recognition.SpeechRecognitionMenuCols.ParentId, speech_recognition.SpeechRecognitionMenuCols.Sort))
|
|
|
|
+ if e != nil {
|
|
|
|
+ br.Msg = "获取失败"
|
|
|
|
+ br.ErrMsg = "获取目录列表失败, Err: " + e.Error()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ menuPath = services.GetSpeechRecognitionMenuPathRecursive(menus, speechItem.MenuId)
|
|
|
|
+ sort.Slice(menuPath, func(i, j int) bool {
|
|
|
|
+ return menuPath[i].Level < menuPath[j].Level
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+
|
|
// 获取标签
|
|
// 获取标签
|
|
tags, e := speech_recognition.GetSpeechRecognitionTagBySpeechId(speechId)
|
|
tags, e := speech_recognition.GetSpeechRecognitionTagBySpeechId(speechId)
|
|
if e != nil {
|
|
if e != nil {
|
|
@@ -923,7 +991,7 @@ func (this *SpeechRecognitionController) Detail() {
|
|
br.ErrMsg = "获取语音识别标签失败, Err: " + e.Error()
|
|
br.ErrMsg = "获取语音识别标签失败, Err: " + e.Error()
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- detail := speech_recognition.FormatSpeechRecognition2DetailItem(speechItem, contents, tags)
|
|
|
|
|
|
+ detail := speech_recognition.FormatSpeechRecognition2DetailItem(speechItem, contents, tags, menuPath)
|
|
|
|
|
|
br.Data = detail
|
|
br.Data = detail
|
|
br.Ret = 200
|
|
br.Ret = 200
|