speech_recognition_menu.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  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/utils"
  9. "fmt"
  10. "sort"
  11. "strconv"
  12. "strings"
  13. "time"
  14. )
  15. type SpeechRecognitionMenuController struct {
  16. controllers.BaseAuthController
  17. }
  18. // Add
  19. // @Title 新增分类
  20. // @Description 新增分类
  21. // @Param request body speech_recognition.SpeechRecognitionMenuAddReq true "type json string"
  22. // @Success 200 string "操作成功"
  23. // @router /menu/add [post]
  24. func (this *SpeechRecognitionMenuController) Add() {
  25. br := new(models.BaseResponse).Init()
  26. defer func() {
  27. if br.ErrMsg == "" {
  28. br.IsSendEmail = false
  29. }
  30. this.Data["json"] = br
  31. this.ServeJSON()
  32. }()
  33. sysUser := this.SysUser
  34. if sysUser == nil {
  35. br.Msg = "请登录"
  36. br.ErrMsg = "请登录,SysUser Is Empty"
  37. br.Ret = 408
  38. return
  39. }
  40. var req speech_recognition.SpeechRecognitionMenuAddReq
  41. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  42. br.Msg = "参数有误"
  43. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  44. return
  45. }
  46. req.MenuName = strings.TrimSpace(req.MenuName)
  47. if req.MenuName == "" {
  48. br.Msg = "请输入目录名称"
  49. return
  50. }
  51. // 校验同级目录是否有重名
  52. menuOb := new(speech_recognition.SpeechRecognitionMenu)
  53. {
  54. cond := fmt.Sprintf(` AND %s = ? AND %s = ?`, speech_recognition.SpeechRecognitionMenuCols.MenuName, speech_recognition.SpeechRecognitionMenuCols.ParentId)
  55. pars := make([]interface{}, 0)
  56. pars = append(pars, req.MenuName, req.ParentId)
  57. exists, e := menuOb.GetItemByCondition(cond, pars, "")
  58. if e != nil && e.Error() != utils.ErrNoRow() {
  59. br.Msg = "操作失败"
  60. br.ErrMsg = "获取同名目录失败, Err: " + e.Error()
  61. return
  62. }
  63. if exists != nil && exists.SpeechRecognitionMenuId > 0 {
  64. br.Msg = "分类名称已存在,请重新输入"
  65. return
  66. }
  67. }
  68. // 获取目录层级和同级最大排序
  69. level := 1
  70. rootId := 0
  71. {
  72. if req.ParentId > 0 {
  73. parentMenu, e := menuOb.GetItemById(req.ParentId)
  74. if e != nil {
  75. br.Msg = "操作失败"
  76. br.ErrMsg = "获取父级目录失败, Err: " + e.Error()
  77. return
  78. }
  79. level += parentMenu.Level
  80. rootId = parentMenu.RootId
  81. }
  82. }
  83. sortMax, e := services.GetSpeechMenuMaxSort(req.ParentId)
  84. if e != nil {
  85. br.Msg = "操作失败"
  86. br.ErrMsg = "获取语音识别目录下最大排序失败, Err: " + e.Error()
  87. return
  88. }
  89. timestamp := strconv.FormatInt(time.Now().UnixNano(), 10)
  90. menuOb.UniqueCode = utils.MD5(fmt.Sprintf("%s_%s", menuOb.TableName(), timestamp))
  91. menuOb.MenuName = req.MenuName
  92. menuOb.ParentId = req.ParentId
  93. menuOb.Level = level
  94. menuOb.Sort = sortMax + 1
  95. menuOb.RootId = rootId
  96. menuOb.CreateTime = time.Now().Local()
  97. menuOb.ModifyTime = time.Now().Local()
  98. if e = menuOb.Create(); e != nil {
  99. br.Msg = "操作失败"
  100. br.ErrMsg = "新增目录失败, Err: " + e.Error()
  101. return
  102. }
  103. br.Ret = 200
  104. br.Success = true
  105. br.Msg = "操作成功"
  106. }
  107. // Edit
  108. // @Title 编辑分类
  109. // @Description 编辑分类
  110. // @Param request body speech_recognition.SpeechRecognitionMenuEditReq true "type json string"
  111. // @Success 200 string "操作成功"
  112. // @router /menu/edit [post]
  113. func (this *SpeechRecognitionMenuController) Edit() {
  114. br := new(models.BaseResponse).Init()
  115. defer func() {
  116. if br.ErrMsg == "" {
  117. br.IsSendEmail = false
  118. }
  119. this.Data["json"] = br
  120. this.ServeJSON()
  121. }()
  122. sysUser := this.SysUser
  123. if sysUser == nil {
  124. br.Msg = "请登录"
  125. br.ErrMsg = "请登录,SysUser Is Empty"
  126. br.Ret = 408
  127. return
  128. }
  129. var req speech_recognition.SpeechRecognitionMenuEditReq
  130. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  131. br.Msg = "参数有误"
  132. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  133. return
  134. }
  135. if req.MenuId <= 0 {
  136. br.Msg = "参数有误"
  137. br.ErrMsg = fmt.Sprintf("参数有误, MenuId: %d", req.MenuId)
  138. return
  139. }
  140. req.MenuName = strings.TrimSpace(req.MenuName)
  141. if req.MenuName == "" {
  142. br.Msg = "请输入目录名称"
  143. return
  144. }
  145. menuOb := new(speech_recognition.SpeechRecognitionMenu)
  146. menuItem, e := menuOb.GetItemById(req.MenuId)
  147. if e != nil {
  148. if e.Error() == utils.ErrNoRow() {
  149. br.Msg = "目录不存在,请刷新页面"
  150. return
  151. }
  152. br.Msg = "操作失败"
  153. br.ErrMsg = "获取目录失败, Err: " + e.Error()
  154. return
  155. }
  156. // 校验同级目录是否有重名
  157. {
  158. cond := fmt.Sprintf(` AND %s = ? AND %s = ? AND %s <> ?`, speech_recognition.SpeechRecognitionMenuCols.MenuName, speech_recognition.SpeechRecognitionMenuCols.ParentId, speech_recognition.SpeechRecognitionMenuCols.SpeechRecognitionMenuId)
  159. pars := make([]interface{}, 0)
  160. pars = append(pars, req.MenuName, menuItem.ParentId, req.MenuId)
  161. exists, e := menuOb.GetItemByCondition(cond, pars, "")
  162. if e != nil && e.Error() != utils.ErrNoRow() {
  163. br.Msg = "操作失败"
  164. br.ErrMsg = "获取同名目录失败, Err: " + e.Error()
  165. return
  166. }
  167. if exists != nil && exists.SpeechRecognitionMenuId > 0 {
  168. br.Msg = "分类名称已存在,请重新输入"
  169. return
  170. }
  171. }
  172. menuItem.MenuName = req.MenuName
  173. menuItem.ModifyTime = time.Now().Local()
  174. updateCols := []string{speech_recognition.SpeechRecognitionMenuCols.MenuName, speech_recognition.SpeechRecognitionMenuCols.ModifyTime}
  175. if e = menuItem.Update(updateCols); e != nil {
  176. br.Msg = "操作失败"
  177. br.ErrMsg = "更新目录失败, Err: " + e.Error()
  178. return
  179. }
  180. br.Ret = 200
  181. br.Success = true
  182. br.Msg = "操作成功"
  183. }
  184. // Remove
  185. // @Title 删除分类
  186. // @Description 删除分类
  187. // @Param request body speech_recognition.SpeechRecognitionMenuRemoveReq true "type json string"
  188. // @Success 200 string "操作成功"
  189. // @router /menu/remove [post]
  190. func (this *SpeechRecognitionMenuController) Remove() {
  191. br := new(models.BaseResponse).Init()
  192. defer func() {
  193. if br.ErrMsg == "" {
  194. br.IsSendEmail = false
  195. }
  196. this.Data["json"] = br
  197. this.ServeJSON()
  198. }()
  199. sysUser := this.SysUser
  200. if sysUser == nil {
  201. br.Msg = "请登录"
  202. br.ErrMsg = "请登录,SysUser Is Empty"
  203. br.Ret = 408
  204. return
  205. }
  206. var req speech_recognition.SpeechRecognitionMenuRemoveReq
  207. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  208. br.Msg = "参数有误"
  209. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  210. return
  211. }
  212. if req.MenuId <= 0 {
  213. br.Msg = "参数有误"
  214. br.ErrMsg = fmt.Sprintf("参数有误, MenuId: %d", req.MenuId)
  215. return
  216. }
  217. menuOb := new(speech_recognition.SpeechRecognitionMenu)
  218. menuItem, e := menuOb.GetItemById(req.MenuId)
  219. if e != nil {
  220. if e.Error() == utils.ErrNoRow() {
  221. br.Ret = 200
  222. br.Success = true
  223. br.Msg = "操作成功"
  224. return
  225. }
  226. br.Msg = "操作失败"
  227. br.ErrMsg = "获取目录失败, Err: " + e.Error()
  228. return
  229. }
  230. // 校验目录下是否有内容
  231. {
  232. speechOb := new(speech_recognition.SpeechRecognition)
  233. cond := fmt.Sprintf(` AND %s = ?`, speech_recognition.SpeechRecognitionCols.MenuId)
  234. pars := make([]interface{}, 0)
  235. pars = append(pars, req.MenuId)
  236. count, e := speechOb.GetCountByCondition(cond, pars)
  237. if e != nil {
  238. br.Msg = "操作失败"
  239. br.ErrMsg = "获取目录下的语音识别数失败, Err: " + e.Error()
  240. return
  241. }
  242. if count > 0 {
  243. br.Msg = "该分类关联转写文件,删除失败!"
  244. return
  245. }
  246. cond = fmt.Sprintf(` AND %s = ?`, speech_recognition.SpeechRecognitionMenuCols.ParentId)
  247. pars = make([]interface{}, 0)
  248. pars = append(pars, req.MenuId)
  249. count, e = menuOb.GetCountByCondition(cond, pars)
  250. if e != nil {
  251. br.Msg = "操作失败"
  252. br.ErrMsg = "获取下级目录数失败, Err: " + e.Error()
  253. return
  254. }
  255. if count > 0 {
  256. br.Msg = "该分类含下级目录,删除失败!"
  257. return
  258. }
  259. }
  260. if e = menuItem.Del(); e != nil {
  261. br.Msg = "操作失败"
  262. br.ErrMsg = "删除目录失败, Err: " + e.Error()
  263. return
  264. }
  265. br.Ret = 200
  266. br.Success = true
  267. br.Msg = "操作成功"
  268. }
  269. // Tree
  270. // @Title 目录树
  271. // @Description 目录树
  272. // @Param ParentId query int false "父级ID"
  273. // @Success 200 {object} speech_recognition.SpeechRecognitionMenuNodeItem
  274. // @router /menu/tree [get]
  275. func (this *SpeechRecognitionMenuController) Tree() {
  276. br := new(models.BaseResponse).Init()
  277. defer func() {
  278. if br.ErrMsg == "" {
  279. br.IsSendEmail = false
  280. }
  281. this.Data["json"] = br
  282. this.ServeJSON()
  283. }()
  284. sysUser := this.SysUser
  285. if sysUser == nil {
  286. br.Msg = "请登录"
  287. br.ErrMsg = "请登录,SysUser Is Empty"
  288. br.Ret = 408
  289. return
  290. }
  291. // 前端采用懒加载, 所以只查询目录及当前目录下的语音识别
  292. parentId, _ := this.GetInt("ParentId")
  293. // 获取所有目录
  294. menus := make([]*speech_recognition.SpeechRecognitionMenu, 0)
  295. {
  296. menuOb := new(speech_recognition.SpeechRecognitionMenu)
  297. list, e := menuOb.GetItemsByCondition(``, make([]interface{}, 0), []string{}, fmt.Sprintf("%s ASC", speech_recognition.SpeechRecognitionMenuCols.Sort))
  298. if e != nil {
  299. br.Msg = "获取失败"
  300. br.ErrMsg = "获取目录列表失败, Err: " + e.Error()
  301. return
  302. }
  303. menus = list
  304. }
  305. topMenus := make([]*speech_recognition.SpeechRecognitionMenu, 0) // 顶部节点
  306. menuChildren := make(map[int][]*speech_recognition.SpeechRecognitionMenuNodeItem) // 子目录节点
  307. menuIdLevel := make(map[int]int) // 目录对应层级
  308. for _, v := range menus {
  309. menuIdLevel[v.SpeechRecognitionMenuId] = v.Level
  310. if v.ParentId == parentId {
  311. topMenus = append(topMenus, v)
  312. }
  313. if menuChildren[v.ParentId] == nil {
  314. menuChildren[v.ParentId] = make([]*speech_recognition.SpeechRecognitionMenuNodeItem, 0)
  315. }
  316. menuChildren[v.ParentId] = append(menuChildren[v.ParentId], &speech_recognition.SpeechRecognitionMenuNodeItem{
  317. UniqueCode: v.UniqueCode,
  318. NodeType: speech_recognition.SpeechRecognitionMenuNodeTypeDefault,
  319. MenuId: v.SpeechRecognitionMenuId,
  320. MenuName: v.MenuName,
  321. ParentId: v.ParentId,
  322. Level: v.Level,
  323. Sort: v.Sort,
  324. CreateTime: utils.TimeTransferString(utils.FormatDateTime, v.CreateTime),
  325. })
  326. }
  327. resp := make([]*speech_recognition.SpeechRecognitionMenuNodeItem, 0)
  328. if len(topMenus) == 0 {
  329. br.Data = resp
  330. br.Ret = 200
  331. br.Success = true
  332. br.Msg = "获取成功"
  333. return
  334. }
  335. // 目录下的语音识别
  336. menuIds := make([]int, 0)
  337. for _, m := range topMenus {
  338. menuIds = append(menuIds, m.SpeechRecognitionMenuId)
  339. }
  340. speeches := make([]*speech_recognition.SpeechRecognition, 0)
  341. {
  342. speechOb := new(speech_recognition.SpeechRecognition)
  343. cond := fmt.Sprintf(` AND %s IN (%s)`, speech_recognition.SpeechRecognitionCols.MenuId, utils.GetOrmInReplace(len(menuIds)))
  344. pars := make([]interface{}, 0)
  345. pars = append(pars, menuIds)
  346. list, e := speechOb.GetItemsByCondition(cond, pars, []string{}, fmt.Sprintf("%s ASC, %s DESC", speech_recognition.SpeechRecognitionCols.Sort, speech_recognition.SpeechRecognitionCols.CreateTime))
  347. if e != nil {
  348. br.Msg = "获取失败"
  349. br.ErrMsg = "获取语音识别列表失败, Err: " + e.Error()
  350. return
  351. }
  352. speeches = list
  353. }
  354. menuSpeeches := make(map[int][]*speech_recognition.SpeechRecognitionMenuNodeItem)
  355. for _, s := range speeches {
  356. if menuSpeeches[s.MenuId] == nil {
  357. menuSpeeches[s.MenuId] = make([]*speech_recognition.SpeechRecognitionMenuNodeItem, 0)
  358. }
  359. menuSpeeches[s.MenuId] = append(menuSpeeches[s.MenuId], &speech_recognition.SpeechRecognitionMenuNodeItem{
  360. UniqueCode: s.UniqueCode,
  361. NodeType: speech_recognition.SpeechRecognitionMenuNodeTypeSpeech,
  362. SpeechRecognitionId: s.SpeechRecognitionId,
  363. SpeechRecognitionName: s.FileName,
  364. ParentId: s.MenuId,
  365. Level: menuIdLevel[s.MenuId] + 1,
  366. Sort: s.Sort,
  367. CreateTime: utils.TimeTransferString(utils.FormatDateTime, s.CreateTime),
  368. })
  369. }
  370. for _, m := range topMenus {
  371. child := make([]*speech_recognition.SpeechRecognitionMenuNodeItem, 0)
  372. if menuSpeeches[m.SpeechRecognitionMenuId] != nil {
  373. child = append(child, menuSpeeches[m.SpeechRecognitionMenuId]...)
  374. }
  375. if menuChildren[m.SpeechRecognitionMenuId] != nil {
  376. child = append(child, menuChildren[m.SpeechRecognitionMenuId]...)
  377. }
  378. sort.Slice(child, func(i, j int) bool {
  379. return child[i].Sort < child[j].Sort
  380. })
  381. t := &speech_recognition.SpeechRecognitionMenuNodeItem{
  382. UniqueCode: m.UniqueCode,
  383. NodeType: speech_recognition.SpeechRecognitionMenuNodeTypeDefault,
  384. MenuId: m.SpeechRecognitionMenuId,
  385. MenuName: m.MenuName,
  386. ParentId: m.ParentId,
  387. Level: m.Level,
  388. Sort: m.Sort,
  389. CreateTime: utils.TimeTransferString(utils.FormatDateTime, m.CreateTime),
  390. Children: child,
  391. }
  392. resp = append(resp, t)
  393. }
  394. br.Data = resp
  395. br.Ret = 200
  396. br.Success = true
  397. br.Msg = "获取成功"
  398. }
  399. // Move
  400. // @Title 移动目录/语音识别
  401. // @Description 移动目录/语音识别
  402. // @Param request body speech_recognition.SpeechRecognitionMenuMoveReq true "type json string"
  403. // @Success 200 string "操作成功"
  404. // @router /menu/move [post]
  405. func (this *SpeechRecognitionMenuController) Move() {
  406. br := new(models.BaseResponse).Init()
  407. defer func() {
  408. if br.ErrMsg == "" {
  409. br.IsSendEmail = false
  410. }
  411. this.Data["json"] = br
  412. this.ServeJSON()
  413. }()
  414. sysUser := this.SysUser
  415. if sysUser == nil {
  416. br.Msg = "请登录"
  417. br.ErrMsg = "请登录,SysUser Is Empty"
  418. br.Ret = 408
  419. return
  420. }
  421. var req speech_recognition.SpeechRecognitionMenuMoveReq
  422. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  423. br.Msg = "参数有误"
  424. br.ErrMsg = "参数解析失败, Err: " + e.Error()
  425. return
  426. }
  427. if req.MenuId <= 0 && req.SpeechId <= 0 {
  428. br.Msg = "请选择目录或语音识别"
  429. return
  430. }
  431. e, _ := services.MoveSpeechMenu(req)
  432. if e != nil {
  433. br.Msg = "操作失败"
  434. br.ErrMsg = "移动目录/语音识别失败, Err: " + e.Error()
  435. return
  436. }
  437. br.Ret = 200
  438. br.Success = true
  439. br.Msg = "操作成功"
  440. }