speech_recognition.go 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085
  1. package speech_recognition
  2. import (
  3. "encoding/json"
  4. "eta/eta_api/controllers"
  5. "eta/eta_api/models"
  6. "eta/eta_api/models/speech_recognition"
  7. "eta/eta_api/services"
  8. "eta/eta_api/services/alarm_msg"
  9. "eta/eta_api/utils"
  10. "fmt"
  11. "github.com/rdlucklib/rdluck_tools/paging"
  12. "os"
  13. "sort"
  14. "strconv"
  15. "strings"
  16. "time"
  17. )
  18. type SpeechRecognitionController struct {
  19. controllers.BaseAuthController
  20. }
  21. type SpeechRecognitionCommonController struct {
  22. controllers.BaseCommonController
  23. }
  24. // RecTaskCallback
  25. // @Title 语音识别回调
  26. // @Description 语音识别回调
  27. // @Param request body services.TencentRecTaskCallback true "type json string"
  28. // @Success 200 string "操作成功"
  29. // @router /rec_task/callback [post]
  30. func (this *SpeechRecognitionCommonController) RecTaskCallback() {
  31. // 此接口返回指定响应体
  32. br := new(services.TencentRecTaskCallbackResp)
  33. var errMsg string
  34. defer func() {
  35. if errMsg != "" {
  36. br.Code = 403
  37. br.Message = "回调失败"
  38. go alarm_msg.SendAlarmMsg(fmt.Sprintf("语音识别回调失败, ErrMsg: %s", errMsg), 1)
  39. } else {
  40. br.Code = 0
  41. br.Message = "success"
  42. }
  43. _ = this.JSON(br, false, false)
  44. }()
  45. code, _ := this.GetInt("code", -1)
  46. requestId, _ := this.GetInt("requestId", 0)
  47. detail := this.GetString("resultDetail")
  48. utils.FileLog.Info(fmt.Sprintf("RecTaskCallback, requestId: %d", requestId))
  49. // 获取taskId对应的API请求及语音识别
  50. logOb := new(speech_recognition.SpeechRecognitionApiLog)
  51. cond := fmt.Sprintf(` AND %s = ?`, speech_recognition.SpeechRecognitionApiLogCols.RequestId)
  52. pars := make([]interface{}, 0)
  53. pars = append(pars, requestId)
  54. apiLog, e := logOb.GetItemByCondition(cond, pars, "")
  55. if e != nil {
  56. errMsg = "获取API记录失败"
  57. utils.FileLog.Info("API回调-获取请求记录失败, Err: " + e.Error())
  58. return
  59. }
  60. speechOb := new(speech_recognition.SpeechRecognition)
  61. speechItem, e := speechOb.GetItemById(apiLog.SpeechRecognitionId)
  62. if e != nil {
  63. errMsg = "获取语音识别失败"
  64. utils.FileLog.Info("获取语音识别失败, Err: " + e.Error())
  65. return
  66. }
  67. // API结果返回有误
  68. nowTime := time.Now().Local()
  69. if code != speech_recognition.ApiRequestCodeSuccess {
  70. convertRemark := speech_recognition.ApiErrMsgMapping[code]
  71. if convertRemark == "" {
  72. convertRemark = fmt.Sprintf("未知错误: %d", code)
  73. }
  74. speechItem.ConvertRemark = convertRemark
  75. speechItem.State = speech_recognition.SpeechRecognitionStateFail
  76. speechItem.ModifyTime = nowTime
  77. speechCols := []string{speech_recognition.SpeechRecognitionCols.ConvertRemark, speech_recognition.SpeechRecognitionCols.State, speech_recognition.SpeechRecognitionCols.ModifyTime}
  78. apiLog.RequestCode = code
  79. apiLog.RequestResult = convertRemark
  80. apiLog.ModifyTime = nowTime
  81. apiLogCols := []string{speech_recognition.SpeechRecognitionApiLogCols.RequestCode, speech_recognition.SpeechRecognitionApiLogCols.RequestResult, speech_recognition.SpeechRecognitionApiLogCols.ModifyTime}
  82. // 更新语音识别及API记录
  83. if e := speech_recognition.UpdateSpeechAndApiLog(speechItem, speechCols, apiLog, apiLogCols); e != nil {
  84. errMsg = "更新API返回结果失败"
  85. utils.FileLog.Info("更新API返回结果失败, Err: " + e.Error())
  86. }
  87. return
  88. }
  89. // 解析转写段落内容
  90. sentences := make([]*services.TencentRecTaskSentenceDetail, 0)
  91. if e := json.Unmarshal([]byte(detail), &sentences); e != nil {
  92. errMsg = "解析语音识别内容失败"
  93. utils.FileLog.Info("解析语音识别内容失败, Err: " + e.Error())
  94. return
  95. }
  96. contents := make([]*speech_recognition.SpeechRecognitionContent, 0)
  97. sorts := 0 // API返回的结果本身是已排过序的
  98. var abstract string
  99. var abstractLimit int
  100. for _, v := range sentences {
  101. sorts += 1
  102. t := new(speech_recognition.SpeechRecognitionContent)
  103. t.SpeechRecognitionId = speechItem.SpeechRecognitionId
  104. t.Sort = sorts
  105. t.Content = v.FinalSentence
  106. t.StartMs = v.StartMs
  107. t.EndMs = v.EndMs
  108. t.CreateTime = nowTime
  109. t.ModifyTime = nowTime
  110. contents = append(contents, t)
  111. // 取前几段作为摘要保存
  112. if abstractLimit < 5 {
  113. abstractLimit += 1
  114. abstract += v.FinalSentence
  115. }
  116. }
  117. speechItem.Abstract = abstract
  118. speechItem.State = speech_recognition.SpeechRecognitionStateSuccess
  119. speechItem.ModifyTime = nowTime
  120. speechCols := []string{speech_recognition.SpeechRecognitionCols.Abstract, speech_recognition.SpeechRecognitionCols.State, speech_recognition.SpeechRecognitionCols.ModifyTime}
  121. apiLog.RequestCode = code
  122. apiLog.RequestResult = detail
  123. apiLog.ModifyTime = time.Now().Local()
  124. apiLogCols := []string{speech_recognition.SpeechRecognitionApiLogCols.RequestCode, speech_recognition.SpeechRecognitionApiLogCols.RequestResult, speech_recognition.SpeechRecognitionApiLogCols.ModifyTime}
  125. // 新增解析内容并更新语音识别及API记录
  126. if e := speech_recognition.CreateContentAndUpdateSpeechAndApiLog(contents, speechItem, speechCols, apiLog, apiLogCols); e != nil {
  127. errMsg = "新增API返回结果失败"
  128. utils.FileLog.Info("新增API返回结果失败, Err: " + e.Error())
  129. }
  130. }
  131. // Convert
  132. // @Title 语音转换
  133. // @Description 语音转换
  134. // @Param request body speech_recognition.SpeechRecognitionConvertReq true "type json string"
  135. // @Success 200 string "操作成功"
  136. // @router /convert [post]
  137. func (this *SpeechRecognitionController) Convert() {
  138. br := new(models.BaseResponse).Init()
  139. defer func() {
  140. if br.ErrMsg == "" {
  141. br.IsSendEmail = false
  142. }
  143. this.Data["json"] = br
  144. this.ServeJSON()
  145. }()
  146. sysUser := this.SysUser
  147. if sysUser == nil {
  148. br.Msg = "请登录"
  149. br.ErrMsg = "请登录,SysUser Is Empty"
  150. br.Ret = 408
  151. return
  152. }
  153. var req speech_recognition.SpeechRecognitionConvertReq
  154. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  155. br.Msg = "参数有误"
  156. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  157. return
  158. }
  159. if req.MenuId <= 0 {
  160. br.Msg = "请选择目录"
  161. return
  162. }
  163. if len(req.Files) == 0 {
  164. br.Msg = "请上传转写文件"
  165. return
  166. }
  167. for _, r := range req.Files {
  168. if r.FileName == "" && r.ResourceUrl == "" {
  169. br.Msg = "转写文件有误,请检查"
  170. return
  171. }
  172. }
  173. sortMax, e := services.GetSpeechMenuMaxSort(req.MenuId)
  174. if e != nil {
  175. br.Msg = "操作失败"
  176. br.ErrMsg = "获取语音识别目录下最大排序失败, Err: " + e.Error()
  177. return
  178. }
  179. speeches := make([]*speech_recognition.SpeechRecognition, 0)
  180. nowTime := time.Now().Local()
  181. for _, v := range req.Files {
  182. sortMax += 1
  183. t := new(speech_recognition.SpeechRecognition)
  184. t.FileName = v.FileName
  185. t.ResourceUrl = v.ResourceUrl
  186. t.MenuId = req.MenuId
  187. timestamp := strconv.FormatInt(time.Now().UnixNano(), 10)
  188. t.UniqueCode = utils.MD5(fmt.Sprintf("%s_%s", t.TableName(), timestamp))
  189. t.SysUserId = sysUser.AdminId
  190. t.SysUserName = sysUser.RealName
  191. t.State = speech_recognition.SpeechRecognitionStateWait
  192. t.Sort = sortMax
  193. t.CreateTime = nowTime
  194. t.ModifyTime = nowTime
  195. // CreateMulti拿不到主键, 此处用循环新增获取
  196. if e := t.Create(); e != nil {
  197. br.Msg = "操作失败"
  198. br.ErrMsg = "批量新增转写文件失败, Err: " + e.Error()
  199. return
  200. }
  201. speeches = append(speeches, t)
  202. }
  203. // 批量转写语音
  204. go func() {
  205. services.BatchConvertSpeech(speeches)
  206. }()
  207. br.Ret = 200
  208. br.Success = true
  209. br.Msg = "操作成功"
  210. }
  211. // ConvertList
  212. // @Title 转换列表
  213. // @Description 转换列表
  214. // @Success 200 {object} speech_recognition.SpeechRecognitionItem
  215. // @router /convert_list [get]
  216. func (this *SpeechRecognitionController) ConvertList() {
  217. br := new(models.BaseResponse).Init()
  218. defer func() {
  219. if br.ErrMsg == "" {
  220. br.IsSendEmail = false
  221. }
  222. this.Data["json"] = br
  223. this.ServeJSON()
  224. }()
  225. sysUser := this.SysUser
  226. if sysUser == nil {
  227. br.Msg = "请登录"
  228. br.ErrMsg = "请登录,SysUser Is Empty"
  229. br.Ret = 408
  230. return
  231. }
  232. // 仅取待转换和转换失败的
  233. states := []int{speech_recognition.SpeechRecognitionStateWait, speech_recognition.SpeechRecognitionStateFail}
  234. speechOb := new(speech_recognition.SpeechRecognition)
  235. cond := fmt.Sprintf(` AND %s = ? AND %s IN (%s)`, speech_recognition.SpeechRecognitionCols.SysUserId, speech_recognition.SpeechRecognitionCols.State, utils.GetOrmInReplace(len(states)))
  236. pars := make([]interface{}, 0)
  237. pars = append(pars, sysUser.AdminId, states)
  238. list, e := speechOb.GetItemsByCondition(cond, pars, []string{}, "")
  239. if e != nil {
  240. br.Msg = "获取失败"
  241. br.ErrMsg = "获取转写文件列表失败, Err: " + e.Error()
  242. return
  243. }
  244. resp := make([]*speech_recognition.SpeechRecognitionItem, 0)
  245. for _, v := range list {
  246. resp = append(resp, speech_recognition.FormatSpeechRecognition2Item(v))
  247. }
  248. br.Data = resp
  249. br.Ret = 200
  250. br.Success = true
  251. br.Msg = "获取成功"
  252. }
  253. // Save
  254. // @Title 保存内容
  255. // @Description 保存内容
  256. // @Param request body speech_recognition.SpeechRecognitionSaveReq true "type json string"
  257. // @Success 200 string "操作成功"
  258. // @router /save [post]
  259. func (this *SpeechRecognitionController) Save() {
  260. br := new(models.BaseResponse).Init()
  261. defer func() {
  262. if br.ErrMsg == "" {
  263. br.IsSendEmail = false
  264. }
  265. this.Data["json"] = br
  266. this.ServeJSON()
  267. }()
  268. sysUser := this.SysUser
  269. if sysUser == nil {
  270. br.Msg = "请登录"
  271. br.ErrMsg = "请登录,SysUser Is Empty"
  272. br.Ret = 408
  273. return
  274. }
  275. var req speech_recognition.SpeechRecognitionSaveReq
  276. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  277. br.Msg = "参数有误"
  278. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  279. return
  280. }
  281. if req.SpeechRecognitionId <= 0 {
  282. br.Msg = "参数有误"
  283. br.ErrMsg = fmt.Sprintf("参数有误, SpeechRecognitionId: %d", req.SpeechRecognitionId)
  284. return
  285. }
  286. if len(req.Contents) == 0 {
  287. br.Ret = 200
  288. br.Success = true
  289. br.Msg = "操作成功"
  290. return
  291. }
  292. req.FileName = strings.TrimSpace(req.FileName)
  293. if req.FileName == "" {
  294. br.Msg = "请输入文件名称"
  295. return
  296. }
  297. speechOb := new(speech_recognition.SpeechRecognition)
  298. speechItem, e := speechOb.GetItemById(req.SpeechRecognitionId)
  299. if e != nil {
  300. if e.Error() == utils.ErrNoRow() {
  301. br.Msg = "转写文件不存在,请刷新页面"
  302. return
  303. }
  304. br.Msg = "操作失败"
  305. br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
  306. return
  307. }
  308. if req.FileName != speechItem.FileName {
  309. // 校验重名
  310. {
  311. cond := fmt.Sprintf(` AND %s = ? AND %s <> ?`, speech_recognition.SpeechRecognitionCols.FileName, speech_recognition.SpeechRecognitionCols.SpeechRecognitionId)
  312. pars := make([]interface{}, 0)
  313. pars = append(pars, req.FileName, req.SpeechRecognitionId)
  314. exists, e := speechOb.GetItemByCondition(cond, pars, "")
  315. if e != nil && e.Error() != utils.ErrNoRow() {
  316. br.Msg = "操作失败"
  317. br.ErrMsg = "获取同名转写文件失败, Err: " + e.Error()
  318. return
  319. }
  320. if exists != nil && exists.SpeechRecognitionId > 0 {
  321. br.Msg = "文件名称已存在,请重新输入"
  322. return
  323. }
  324. }
  325. speechItem.FileName = req.FileName
  326. speechItem.ModifyTime = time.Now().Local()
  327. updateCols := []string{speech_recognition.SpeechRecognitionCols.FileName, speech_recognition.SpeechRecognitionCols.ModifyTime}
  328. if e = speechItem.Update(updateCols); e != nil {
  329. br.Msg = "操作失败"
  330. br.ErrMsg = "更新转写文件名称失败, Err: " + e.Error()
  331. return
  332. }
  333. }
  334. // 批量修改内容
  335. contentOb := new(speech_recognition.SpeechRecognitionContent)
  336. if e = contentOb.BatchUpdateContents(req.Contents); e != nil {
  337. br.Msg = "操作失败"
  338. br.ErrMsg = "批量修改内容失败, Err: " + e.Error()
  339. return
  340. }
  341. // 更新标签
  342. mappingOb := new(speech_recognition.SpeechRecognitionTagMapping)
  343. if e = mappingOb.ClearMappingBySpeechId(req.SpeechRecognitionId); e != nil {
  344. br.Msg = "操作失败"
  345. br.ErrMsg = "清除语音识别标签失败, Err: " + e.Error()
  346. return
  347. }
  348. tagMappings := make([]*speech_recognition.SpeechRecognitionTagMapping, 0)
  349. for _, v := range req.TagIds {
  350. tagMappings = append(tagMappings, &speech_recognition.SpeechRecognitionTagMapping{
  351. SpeechRecognitionId: req.SpeechRecognitionId,
  352. TagId: v,
  353. })
  354. }
  355. if e = mappingOb.CreateMulti(tagMappings); e != nil {
  356. br.Msg = "操作失败"
  357. br.ErrMsg = "批量新增语音识别标签失败, Err: " + e.Error()
  358. return
  359. }
  360. br.Ret = 200
  361. br.Success = true
  362. br.Msg = "操作成功"
  363. }
  364. // RemoveFile
  365. // @Title (软)删除文件
  366. // @Description (软)删除文件
  367. // @Param request body speech_recognition.SpeechRecognitionRemoveFileReq true "type json string"
  368. // @Success 200 string "操作成功"
  369. // @router /remove_file [post]
  370. func (this *SpeechRecognitionController) RemoveFile() {
  371. br := new(models.BaseResponse).Init()
  372. defer func() {
  373. if br.ErrMsg == "" {
  374. br.IsSendEmail = false
  375. }
  376. this.Data["json"] = br
  377. this.ServeJSON()
  378. }()
  379. sysUser := this.SysUser
  380. if sysUser == nil {
  381. br.Msg = "请登录"
  382. br.ErrMsg = "请登录,SysUser Is Empty"
  383. br.Ret = 408
  384. return
  385. }
  386. var req speech_recognition.SpeechRecognitionRemoveFileReq
  387. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  388. br.Msg = "参数有误"
  389. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  390. return
  391. }
  392. if req.SpeechRecognitionId <= 0 {
  393. br.Msg = "参数有误"
  394. br.ErrMsg = fmt.Sprintf("参数有误, SpeechRecognitionId: %d", req.SpeechRecognitionId)
  395. return
  396. }
  397. speechOb := new(speech_recognition.SpeechRecognition)
  398. speechItem, e := speechOb.GetItemById(req.SpeechRecognitionId)
  399. if e != nil {
  400. if e.Error() == utils.ErrNoRow() {
  401. br.Msg = "转写文件不存在,请刷新页面"
  402. return
  403. }
  404. br.Msg = "操作失败"
  405. br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
  406. return
  407. }
  408. speechItem.FileState = speech_recognition.SpeechRecognitionFileRemoveFlag
  409. speechItem.ModifyTime = time.Now().Local()
  410. updateCols := []string{speech_recognition.SpeechRecognitionCols.FileState, speech_recognition.SpeechRecognitionCols.ModifyTime}
  411. if e = speechItem.Update(updateCols); e != nil {
  412. br.Msg = "操作失败"
  413. br.ErrMsg = "软删除转写文件失败, Err: " + e.Error()
  414. return
  415. }
  416. br.Ret = 200
  417. br.Success = true
  418. br.Msg = "操作成功"
  419. }
  420. // Rename
  421. // @Title 重命名
  422. // @Description 重命名
  423. // @Param request body speech_recognition.SpeechRecognitionRenameReq true "type json string"
  424. // @Success 200 string "操作成功"
  425. // @router /rename [post]
  426. func (this *SpeechRecognitionController) Rename() {
  427. br := new(models.BaseResponse).Init()
  428. defer func() {
  429. if br.ErrMsg == "" {
  430. br.IsSendEmail = false
  431. }
  432. this.Data["json"] = br
  433. this.ServeJSON()
  434. }()
  435. sysUser := this.SysUser
  436. if sysUser == nil {
  437. br.Msg = "请登录"
  438. br.ErrMsg = "请登录,SysUser Is Empty"
  439. br.Ret = 408
  440. return
  441. }
  442. var req speech_recognition.SpeechRecognitionRenameReq
  443. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  444. br.Msg = "参数有误"
  445. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  446. return
  447. }
  448. if req.SpeechRecognitionId <= 0 {
  449. br.Msg = "参数有误"
  450. br.ErrMsg = fmt.Sprintf("参数有误, SpeechRecognitionId: %d", req.SpeechRecognitionId)
  451. return
  452. }
  453. req.FileName = strings.TrimSpace(req.FileName)
  454. if req.FileName == "" {
  455. br.Msg = "请输入文件名称"
  456. return
  457. }
  458. speechOb := new(speech_recognition.SpeechRecognition)
  459. speechItem, e := speechOb.GetItemById(req.SpeechRecognitionId)
  460. if e != nil {
  461. if e.Error() == utils.ErrNoRow() {
  462. br.Msg = "转写文件不存在,请刷新页面"
  463. return
  464. }
  465. br.Msg = "操作失败"
  466. br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
  467. return
  468. }
  469. // 重名校验
  470. {
  471. cond := fmt.Sprintf(` AND %s = ? AND %s <> ?`, speech_recognition.SpeechRecognitionCols.FileName, speech_recognition.SpeechRecognitionCols.SpeechRecognitionId)
  472. pars := make([]interface{}, 0)
  473. pars = append(pars, req.FileName, req.SpeechRecognitionId)
  474. exists, e := speechOb.GetItemByCondition(cond, pars, "")
  475. if e != nil && e.Error() != utils.ErrNoRow() {
  476. br.Msg = "操作失败"
  477. br.ErrMsg = "获取同名转写文件失败, Err: " + e.Error()
  478. return
  479. }
  480. if exists != nil && exists.SpeechRecognitionId > 0 {
  481. br.Msg = "文件名称已存在,请重新输入"
  482. return
  483. }
  484. }
  485. speechItem.FileName = req.FileName
  486. speechItem.ModifyTime = time.Now().Local()
  487. updateCols := []string{speech_recognition.SpeechRecognitionCols.FileName, speech_recognition.SpeechRecognitionCols.ModifyTime}
  488. if e = speechItem.Update(updateCols); e != nil {
  489. br.Msg = "操作失败"
  490. br.ErrMsg = "转写文件重命名失败, Err: " + e.Error()
  491. return
  492. }
  493. br.Ret = 200
  494. br.Success = true
  495. br.Msg = "操作成功"
  496. }
  497. // Remove
  498. // @Title 删除
  499. // @Description 删除
  500. // @Param request body speech_recognition.SpeechRecognitionRemoveReq true "type json string"
  501. // @Success 200 string "操作成功"
  502. // @router /remove [post]
  503. func (this *SpeechRecognitionController) Remove() {
  504. br := new(models.BaseResponse).Init()
  505. defer func() {
  506. if br.ErrMsg == "" {
  507. br.IsSendEmail = false
  508. }
  509. this.Data["json"] = br
  510. this.ServeJSON()
  511. }()
  512. sysUser := this.SysUser
  513. if sysUser == nil {
  514. br.Msg = "请登录"
  515. br.ErrMsg = "请登录,SysUser Is Empty"
  516. br.Ret = 408
  517. return
  518. }
  519. var req speech_recognition.SpeechRecognitionRemoveReq
  520. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  521. br.Msg = "参数有误"
  522. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  523. return
  524. }
  525. if req.SpeechRecognitionId <= 0 {
  526. br.Msg = "参数有误"
  527. br.ErrMsg = fmt.Sprintf("参数有误, SpeechRecognitionId: %d", req.SpeechRecognitionId)
  528. return
  529. }
  530. speechOb := new(speech_recognition.SpeechRecognition)
  531. speechItem, e := speechOb.GetItemById(req.SpeechRecognitionId)
  532. if e != nil {
  533. if e.Error() == utils.ErrNoRow() {
  534. br.Ret = 200
  535. br.Success = true
  536. br.Msg = "操作成功"
  537. return
  538. }
  539. br.Msg = "操作失败"
  540. br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
  541. return
  542. }
  543. if e = speechItem.Del(); e != nil {
  544. br.Msg = "操作失败"
  545. br.ErrMsg = "删除转写文件失败, Err: " + e.Error()
  546. return
  547. }
  548. // 清除关联
  549. go func() {
  550. contentOb := new(speech_recognition.SpeechRecognitionContent)
  551. _ = contentOb.ClearContentBySpeechId(req.SpeechRecognitionId)
  552. mappingOb := new(speech_recognition.SpeechRecognitionTagMapping)
  553. _ = mappingOb.ClearMappingBySpeechId(req.SpeechRecognitionId)
  554. }()
  555. br.Ret = 200
  556. br.Success = true
  557. br.Msg = "操作成功"
  558. }
  559. // SaveTag
  560. // @Title 保存标签
  561. // @Description 保存标签
  562. // @Param request body speech_recognition.SpeechRecognitionSaveTagReq true "type json string"
  563. // @Success 200 string "操作成功"
  564. // @router /save_tag [post]
  565. func (this *SpeechRecognitionController) SaveTag() {
  566. br := new(models.BaseResponse).Init()
  567. defer func() {
  568. if br.ErrMsg == "" {
  569. br.IsSendEmail = false
  570. }
  571. this.Data["json"] = br
  572. this.ServeJSON()
  573. }()
  574. sysUser := this.SysUser
  575. if sysUser == nil {
  576. br.Msg = "请登录"
  577. br.ErrMsg = "请登录,SysUser Is Empty"
  578. br.Ret = 408
  579. return
  580. }
  581. var req speech_recognition.SpeechRecognitionSaveTagReq
  582. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  583. br.Msg = "参数有误"
  584. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  585. return
  586. }
  587. if req.SpeechRecognitionId <= 0 {
  588. br.Msg = "参数有误"
  589. br.ErrMsg = fmt.Sprintf("参数有误, SpeechRecognitionId: %d", req.SpeechRecognitionId)
  590. return
  591. }
  592. speechOb := new(speech_recognition.SpeechRecognition)
  593. _, e := speechOb.GetItemById(req.SpeechRecognitionId)
  594. if e != nil {
  595. if e.Error() == utils.ErrNoRow() {
  596. br.Msg = "转写文件不存在,请刷新页面"
  597. return
  598. }
  599. br.Msg = "操作失败"
  600. br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
  601. return
  602. }
  603. // 清除原标签
  604. mappingOb := new(speech_recognition.SpeechRecognitionTagMapping)
  605. if e = mappingOb.ClearMappingBySpeechId(req.SpeechRecognitionId); e != nil {
  606. br.Msg = "操作失败"
  607. br.ErrMsg = "清除转写文件标签失败, Err: " + e.Error()
  608. return
  609. }
  610. // 保存新标签
  611. if len(req.TagIds) > 0 {
  612. mappings := make([]*speech_recognition.SpeechRecognitionTagMapping, 0)
  613. for _, v := range req.TagIds {
  614. if v <= 0 {
  615. continue
  616. }
  617. mappings = append(mappings, &speech_recognition.SpeechRecognitionTagMapping{
  618. TagId: v,
  619. SpeechRecognitionId: req.SpeechRecognitionId,
  620. })
  621. }
  622. if e = mappingOb.CreateMulti(mappings); e != nil {
  623. br.Msg = "操作失败"
  624. br.ErrMsg = "批量新增转写文件标签失败, Err: " + e.Error()
  625. return
  626. }
  627. }
  628. br.Ret = 200
  629. br.Success = true
  630. br.Msg = "操作成功"
  631. }
  632. // List
  633. // @Title 语音识别列表
  634. // @Description 语音识别列表
  635. // @Param FileName query string false "文件名称"
  636. // @Param StartTime query string false "开始时间"
  637. // @Param EndTime query string false "结束时间"
  638. // @Param CreateUserIds query string false "创建人ID"
  639. // @Param TagId query int false "标签ID"
  640. // @Param TagIds query string false "标签ID"
  641. // @Param MenuId query int false "目录ID"
  642. // @Param IsTagMenu query bool false "是否为标签目录"
  643. // @Success 200 {object} speech_recognition.SpeechRecognitionListResp
  644. // @router /list [get]
  645. func (this *SpeechRecognitionController) List() {
  646. br := new(models.BaseResponse).Init()
  647. defer func() {
  648. if br.ErrMsg == "" {
  649. br.IsSendEmail = false
  650. }
  651. this.Data["json"] = br
  652. this.ServeJSON()
  653. }()
  654. sysUser := this.SysUser
  655. if sysUser == nil {
  656. br.Msg = "请登录"
  657. br.ErrMsg = "请登录,SysUser Is Empty"
  658. br.Ret = 408
  659. return
  660. }
  661. params := new(speech_recognition.SpeechRecognitionListReq)
  662. if e := this.ParseForm(params); e != nil {
  663. br.Msg = "获取失败"
  664. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  665. return
  666. }
  667. params.FileName = strings.TrimSpace(params.FileName)
  668. dataResp := new(speech_recognition.SpeechRecognitionListResp)
  669. cond := ``
  670. pars := make([]interface{}, 0)
  671. // 筛选项
  672. {
  673. if params.FileName != "" {
  674. cond += fmt.Sprintf(` AND %s LIKE ?`, speech_recognition.SpeechRecognitionCols.FileName)
  675. pars = append(pars, fmt.Sprint("%", params.FileName, "%"))
  676. }
  677. if params.StartTime != "" && params.EndTime != "" {
  678. _, e := time.Parse(utils.FormatDate, params.StartTime)
  679. if e != nil {
  680. br.Msg = "开始时间格式有误"
  681. return
  682. }
  683. _, e = time.Parse(utils.FormatDate, params.EndTime)
  684. if e != nil {
  685. br.Msg = "结束时间格式有误"
  686. return
  687. }
  688. st := fmt.Sprintf("%s 00:00:00", params.StartTime)
  689. ed := fmt.Sprintf("%s 23:59:59", params.EndTime)
  690. cond += fmt.Sprintf(` AND (%s BETWEEN ? AND ?)`, speech_recognition.SpeechRecognitionCols.CreateTime)
  691. pars = append(pars, st, ed)
  692. }
  693. if params.CreateUserId != "" {
  694. userArr := strings.Split(strings.TrimSpace(params.CreateUserId), ",")
  695. if len(userArr) > 0 {
  696. userIds := make([]int, 0)
  697. for _, v := range userArr {
  698. t, _ := strconv.Atoi(v)
  699. userIds = append(userIds, t)
  700. }
  701. if len(userIds) == 0 {
  702. br.Data = dataResp
  703. br.Ret = 200
  704. br.Success = true
  705. br.Msg = "获取成功"
  706. return
  707. }
  708. cond += fmt.Sprintf(` AND %s IN (%s)`, speech_recognition.SpeechRecognitionCols.SysUserId, utils.GetOrmInReplace(len(userIds)))
  709. pars = append(pars, userIds)
  710. }
  711. }
  712. // 语音识别目录-筛选子目录集合
  713. if params.MenuId > 0 && !params.IsTagMenu {
  714. {
  715. menuOb := new(speech_recognition.SpeechRecognitionMenu)
  716. menus, e := menuOb.GetItemsByCondition(``, make([]interface{}, 0), []string{}, "")
  717. if e != nil {
  718. br.Msg = "获取失败"
  719. br.ErrMsg = "获取语音识别目录列表失败, Err: " + e.Error()
  720. return
  721. }
  722. childIds := services.GetSpeechRecognitionMenuChildrenRecursive(menus, params.MenuId)
  723. menuIds := make([]int, 0)
  724. menuIds = append(menuIds, params.MenuId)
  725. if len(childIds) > 0 {
  726. menuIds = append(menuIds, childIds...)
  727. }
  728. cond += fmt.Sprintf(` AND %s IN (%s)`, speech_recognition.SpeechRecognitionCols.MenuId, utils.GetOrmInReplace(len(menuIds)))
  729. pars = append(pars, menuIds)
  730. }
  731. }
  732. // 标签目录-筛选目录下所有标签
  733. tagIds := make([]int, 0)
  734. if params.MenuId > 0 && params.IsTagMenu {
  735. {
  736. menuOb := new(speech_recognition.SpeechRecognitionTagMenu)
  737. menus, e := menuOb.GetItemsByCondition(``, make([]interface{}, 0), []string{}, "")
  738. if e != nil {
  739. br.Msg = "获取失败"
  740. br.ErrMsg = "获取标签目录列表失败, Err: " + e.Error()
  741. return
  742. }
  743. childIds := services.GetSpeechRecognitionTagMenuChildrenRecursive(menus, params.MenuId)
  744. menuIds := make([]int, 0)
  745. menuIds = append(menuIds, params.MenuId)
  746. if len(childIds) > 0 {
  747. menuIds = append(menuIds, childIds...)
  748. }
  749. // 获取目录下所有标签
  750. tagOb := new(speech_recognition.SpeechRecognitionTag)
  751. ids, e := tagOb.GetTagIdsByMenuIds(menuIds)
  752. if e != nil {
  753. br.Msg = "获取失败"
  754. br.ErrMsg = "通过目录IDs获取标签IDs失败, Err: " + e.Error()
  755. return
  756. }
  757. // 此处查询无结果直接返回
  758. if len(ids) == 0 {
  759. br.Data = dataResp
  760. br.Ret = 200
  761. br.Success = true
  762. br.Msg = "获取成功"
  763. return
  764. }
  765. tagIds = ids
  766. }
  767. }
  768. // 标签筛选
  769. if params.TagId > 0 && params.TagIds == "" {
  770. tagIds = append(tagIds, params.TagId)
  771. }
  772. if params.TagId <= 0 && params.TagIds != "" {
  773. tagArr := strings.Split(params.TagIds, ",")
  774. if len(tagArr) > 0 {
  775. for _, v := range tagArr {
  776. t, _ := strconv.Atoi(v)
  777. tagIds = append(tagIds, t)
  778. }
  779. }
  780. }
  781. if len(tagIds) > 0 {
  782. mappingOb := new(speech_recognition.SpeechRecognitionTagMapping)
  783. tagSpeechIds, e := mappingOb.GetSpeechIdsByTagIds(tagIds)
  784. if e != nil {
  785. br.Msg = "获取失败"
  786. br.ErrMsg = "获取标签关联语音识别失败, Err: " + e.Error()
  787. return
  788. }
  789. if len(tagSpeechIds) == 0 {
  790. br.Data = dataResp
  791. br.Ret = 200
  792. br.Success = true
  793. br.Msg = "获取成功"
  794. return
  795. }
  796. cond += fmt.Sprintf(` AND %s IN (%s)`, speech_recognition.SpeechRecognitionCols.SpeechRecognitionId, utils.GetOrmInReplace(len(tagSpeechIds)))
  797. pars = append(pars, tagSpeechIds)
  798. }
  799. }
  800. // 分页列表
  801. speechOb := new(speech_recognition.SpeechRecognition)
  802. total, e := speechOb.GetCountByCondition(cond, pars)
  803. if e != nil {
  804. br.Msg = "获取失败"
  805. br.ErrMsg = "获取语音识别列表总数失败, Err: " + e.Error()
  806. return
  807. }
  808. var startSize int
  809. if params.PageSize <= 0 {
  810. params.PageSize = utils.PageSize20
  811. }
  812. if params.CurrentIndex <= 0 {
  813. params.CurrentIndex = 1
  814. }
  815. startSize = utils.StartIndex(params.CurrentIndex, params.PageSize)
  816. list, e := speechOb.GetPageItemsByCondition(cond, pars, []string{}, "", startSize, params.PageSize)
  817. if e != nil {
  818. br.Msg = "获取失败"
  819. br.ErrMsg = "获取语音识别列表失败, Err: " + e.Error()
  820. return
  821. }
  822. // 获取标签
  823. speechIds := make([]int, 0)
  824. for _, v := range list {
  825. speechIds = append(speechIds, v.SpeechRecognitionId)
  826. }
  827. mappingTags, e := speech_recognition.GetSpeechRecognitionTagsBySpeechIds(speechIds)
  828. if e != nil {
  829. br.Msg = "获取失败"
  830. br.ErrMsg = "获取语音识别列表标签失败, Err: " + e.Error()
  831. return
  832. }
  833. speechDetailTags := make(map[int][]*speech_recognition.SpeechRecognitionDetailTag)
  834. for _, v := range mappingTags {
  835. if speechDetailTags[v.SpeechRecognitionId] == nil {
  836. speechDetailTags[v.SpeechRecognitionId] = make([]*speech_recognition.SpeechRecognitionDetailTag, 0)
  837. }
  838. speechDetailTags[v.SpeechRecognitionId] = append(speechDetailTags[v.SpeechRecognitionId], &speech_recognition.SpeechRecognitionDetailTag{
  839. TagId: v.TagId,
  840. TagName: v.TagName,
  841. })
  842. }
  843. respList := make([]*speech_recognition.SpeechRecognitionDetailItem, 0)
  844. for _, v := range list {
  845. t := speech_recognition.FormatSpeechRecognition2DetailItem(v, make([]*speech_recognition.SpeechRecognitionContentItem, 0), speechDetailTags[v.SpeechRecognitionId], make([]*speech_recognition.SpeechRecognitionMenuItem, 0))
  846. respList = append(respList, t)
  847. }
  848. page := paging.GetPaging(params.CurrentIndex, params.PageSize, total)
  849. dataResp.Paging = page
  850. dataResp.List = respList
  851. br.Data = dataResp
  852. br.Ret = 200
  853. br.Success = true
  854. br.Msg = "获取成功"
  855. }
  856. // Detail
  857. // @Title 语音识别详情
  858. // @Description 语音识别详情
  859. // @Param SpeechRecognitionId query int true "语音识别ID"
  860. // @Success 200 {object} speech_recognition.SpeechRecognitionDetailItem
  861. // @router /detail [get]
  862. func (this *SpeechRecognitionController) Detail() {
  863. br := new(models.BaseResponse).Init()
  864. defer func() {
  865. if br.ErrMsg == "" {
  866. br.IsSendEmail = false
  867. }
  868. this.Data["json"] = br
  869. this.ServeJSON()
  870. }()
  871. sysUser := this.SysUser
  872. if sysUser == nil {
  873. br.Msg = "请登录"
  874. br.ErrMsg = "请登录,SysUser Is Empty"
  875. br.Ret = 408
  876. return
  877. }
  878. speechId, _ := this.GetInt("SpeechRecognitionId")
  879. if speechId <= 0 {
  880. br.Msg = "参数有误"
  881. br.ErrMsg = fmt.Sprintf("参数有误, SpeechRecognitionId: %d", speechId)
  882. return
  883. }
  884. speechOb := new(speech_recognition.SpeechRecognition)
  885. speechItem, e := speechOb.GetItemById(speechId)
  886. if e != nil {
  887. if e.Error() == utils.ErrNoRow() {
  888. br.Msg = "转写文件不存在,请刷新页面"
  889. return
  890. }
  891. br.Msg = "获取失败"
  892. br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
  893. return
  894. }
  895. // 获取内容
  896. contents := make([]*speech_recognition.SpeechRecognitionContentItem, 0)
  897. {
  898. contentOb := new(speech_recognition.SpeechRecognitionContent)
  899. cond := fmt.Sprintf(` AND %s = ?`, speech_recognition.SpeechRecognitionContentCols.SpeechRecognitionId)
  900. pars := make([]interface{}, 0)
  901. pars = append(pars, speechId)
  902. list, e := contentOb.GetItemsByCondition(cond, pars, []string{}, fmt.Sprintf("%s ASC", speech_recognition.SpeechRecognitionContentCols.Sort))
  903. if e != nil {
  904. br.Msg = "获取失败"
  905. br.ErrMsg = "获取语音识别内容失败, Err: " + e.Error()
  906. return
  907. }
  908. for _, v := range list {
  909. if v.Content == "" {
  910. continue
  911. }
  912. contents = append(contents, speech_recognition.FormatSpeechRecognitionContent2Item(v))
  913. }
  914. }
  915. // 跟踪目录路径
  916. menuPath := make([]*speech_recognition.SpeechRecognitionMenuItem, 0)
  917. {
  918. menuOb := new(speech_recognition.SpeechRecognitionMenu)
  919. menus, e := menuOb.GetItemsByCondition(``, make([]interface{}, 0), []string{}, fmt.Sprintf("%s ASC, %s ASC", speech_recognition.SpeechRecognitionMenuCols.ParentId, speech_recognition.SpeechRecognitionMenuCols.Sort))
  920. if e != nil {
  921. br.Msg = "获取失败"
  922. br.ErrMsg = "获取目录列表失败, Err: " + e.Error()
  923. return
  924. }
  925. menuPath = services.GetSpeechRecognitionMenuPathRecursive(menus, speechItem.MenuId)
  926. sort.Slice(menuPath, func(i, j int) bool {
  927. return menuPath[i].Level < menuPath[j].Level
  928. })
  929. }
  930. // 获取标签
  931. tags, e := speech_recognition.GetSpeechRecognitionTagBySpeechId(speechId)
  932. if e != nil {
  933. br.Msg = "获取失败"
  934. br.ErrMsg = "获取语音识别标签失败, Err: " + e.Error()
  935. return
  936. }
  937. detail := speech_recognition.FormatSpeechRecognition2DetailItem(speechItem, contents, tags, menuPath)
  938. br.Data = detail
  939. br.Ret = 200
  940. br.Success = true
  941. br.Msg = "获取成功"
  942. }
  943. // Export
  944. // @Title 导出内容
  945. // @Description 导出内容
  946. // @Param request body speech_recognition.SpeechRecognitionContentExportReq true "type json string"
  947. // @Success 200 string "操作成功"
  948. // @router /export [get]
  949. func (this *SpeechRecognitionController) Export() {
  950. br := new(models.BaseResponse).Init()
  951. defer func() {
  952. if br.ErrMsg == "" {
  953. br.IsSendEmail = false
  954. }
  955. this.Data["json"] = br
  956. this.ServeJSON()
  957. }()
  958. sysUser := this.SysUser
  959. if sysUser == nil {
  960. br.Msg = "请登录"
  961. br.ErrMsg = "请登录,SysUser Is Empty"
  962. br.Ret = 408
  963. return
  964. }
  965. req := new(speech_recognition.SpeechRecognitionContentExportReq)
  966. if e := this.ParseForm(req); e != nil {
  967. br.Msg = "参数有误"
  968. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  969. return
  970. }
  971. if req.SpeechRecognitionId <= 0 {
  972. br.Msg = "参数有误"
  973. br.ErrMsg = fmt.Sprintf("参数有误, SpeechRecognitionId: %d", req.SpeechRecognitionId)
  974. return
  975. }
  976. speechOb := new(speech_recognition.SpeechRecognition)
  977. speechItem, e := speechOb.GetItemById(req.SpeechRecognitionId)
  978. if e != nil {
  979. if e.Error() == utils.ErrNoRow() {
  980. br.Msg = "转写文件不存在,请刷新页面"
  981. return
  982. }
  983. br.Msg = "获取失败"
  984. br.ErrMsg = "获取转写文件失败, Err: " + e.Error()
  985. return
  986. }
  987. contentOb := new(speech_recognition.SpeechRecognitionContent)
  988. cond := fmt.Sprintf(` AND %s = ?`, speech_recognition.SpeechRecognitionContentCols.SpeechRecognitionId)
  989. pars := make([]interface{}, 0)
  990. pars = append(pars, req.SpeechRecognitionId)
  991. contents, e := contentOb.GetItemsByCondition(cond, pars, []string{}, fmt.Sprintf("%s ASC", speech_recognition.SpeechRecognitionContentCols.Sort))
  992. if e != nil {
  993. br.Msg = "导出失败"
  994. br.ErrMsg = "获取语音识别内容失败, Err: " + e.Error()
  995. return
  996. }
  997. if len(contents) == 0 {
  998. br.Msg = "无内容导出"
  999. return
  1000. }
  1001. if req.ExportType != services.SpeechRecognitionExportTypeTxt && req.ExportType != services.SpeechRecognitionExportTypeDocx && req.ExportType != services.SpeechRecognitionExportTypePdf {
  1002. br.Msg = "导出类型有误"
  1003. return
  1004. }
  1005. suffixMap := map[int]string{services.SpeechRecognitionExportTypeTxt: ".txt", services.SpeechRecognitionExportTypeDocx: ".docx", services.SpeechRecognitionExportTypePdf: ".pdf"}
  1006. suffix := suffixMap[req.ExportType]
  1007. if suffix == "" {
  1008. suffix = ".txt"
  1009. }
  1010. downloadPath, e := services.SpeechRecognitionContentExport(req.ExportType, req.Timestamp, speechItem.FileName, contents)
  1011. if e != nil {
  1012. br.Msg = "导出文件失败"
  1013. br.ErrMsg = "导出语音识别内容文件失败, Err: " + e.Error()
  1014. _ = os.Remove(downloadPath)
  1015. return
  1016. }
  1017. defer func() {
  1018. _ = os.Remove(downloadPath)
  1019. }()
  1020. downloadName := fmt.Sprintf("%s%s", speechItem.FileName, suffix)
  1021. this.Ctx.Output.Download(downloadPath, downloadName)
  1022. }