speech_recognition.go 31 KB

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