report_chapter.go 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "eta_gn/eta_api/models"
  5. "eta_gn/eta_api/models/report"
  6. "eta_gn/eta_api/services"
  7. "eta_gn/eta_api/services/data"
  8. "eta_gn/eta_api/utils"
  9. "html"
  10. "os"
  11. "path"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. // @router /chapter/add [post]
  17. func (this *ReportController) AddChapter() {
  18. br := new(models.BaseResponse).Init()
  19. defer func() {
  20. this.Data["json"] = br
  21. this.ServeJSON()
  22. }()
  23. sysUser := this.SysUser
  24. if sysUser == nil {
  25. br.Msg = "请登录"
  26. br.ErrMsg = "请登录,SysUser Is Empty"
  27. br.Ret = 408
  28. return
  29. }
  30. var req models.AddReportChapterReq
  31. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  32. if err != nil {
  33. br.Msg = "参数解析异常!"
  34. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  35. return
  36. }
  37. if req.ReportId <= 0 {
  38. br.Msg = "报告ID有误"
  39. return
  40. }
  41. req.Title = strings.TrimSpace(req.Title)
  42. if req.Title == `` {
  43. br.Msg = "章节名称不能为空"
  44. return
  45. }
  46. reportInfo, err := models.GetReportByReportId(req.ReportId)
  47. if err != nil {
  48. br.Msg = "报告信息有误"
  49. br.ErrMsg = "报告信息有误, Err: " + err.Error()
  50. return
  51. }
  52. if reportInfo.State == 2 {
  53. br.Msg = "该报告已发布,不允许新增"
  54. br.ErrMsg = "该报告已发布,不允许新增"
  55. return
  56. }
  57. var minClassifyId int
  58. var minClassifyName string
  59. if reportInfo.ClassifyIdThird > 0 {
  60. minClassifyId = reportInfo.ClassifyIdThird
  61. minClassifyName = reportInfo.ClassifyNameThird
  62. } else if reportInfo.ClassifyIdSecond > 0 {
  63. minClassifyId = reportInfo.ClassifyIdSecond
  64. minClassifyName = reportInfo.ClassifyNameSecond
  65. } else {
  66. minClassifyId = reportInfo.ClassifyIdFirst
  67. minClassifyName = reportInfo.ClassifyNameFirst
  68. }
  69. {
  70. var condition string
  71. var pars []interface{}
  72. condition += " AND report_id = ? AND title=? "
  73. pars = append(pars, req.ReportId, req.Title)
  74. count, err := models.GetCountReportChapterByCondition(condition, pars)
  75. if err != nil {
  76. br.Msg = "新增失败"
  77. br.ErrMsg = "判断章节名称是否存在失败,Err:" + err.Error()
  78. return
  79. }
  80. if count > 0 {
  81. br.Msg = "章节名称不允许重复"
  82. br.ErrMsg = "章节名称不允许重复"
  83. br.IsSendEmail = false
  84. return
  85. }
  86. }
  87. reportChapterInfo := new(models.ReportChapter)
  88. reportChapterInfo.ReportId = reportInfo.Id
  89. reportChapterInfo.ClassifyIdFirst = minClassifyId
  90. reportChapterInfo.ClassifyNameFirst = minClassifyName
  91. reportChapterInfo.Title = req.Title
  92. reportChapterInfo.AddType = 1
  93. reportChapterInfo.PublishState = 1
  94. reportChapterInfo.IsEdit = 1
  95. reportChapterInfo.CreateTime = reportInfo.CreateTime
  96. reportChapterInfo.ModifyTime = time.Now()
  97. reportChapterInfo.ReportCreateTime = time.Now()
  98. reportChapterInfo.VideoKind = 2
  99. reportChapterInfo.Stage = reportInfo.Stage
  100. reportChapterInfo.LastModifyAdminId = sysUser.AdminId
  101. reportChapterInfo.LastModifyAdminName = sysUser.RealName
  102. reportChapterInfo.ContentModifyTime = time.Now()
  103. err, errMsg := services.AddChapterBaseInfoAndPermission(reportInfo, reportChapterInfo, req.PermissionIdList, req.AdminIdList)
  104. if err != nil {
  105. br.Msg = "保存失败"
  106. if errMsg != "" {
  107. br.Msg = errMsg
  108. }
  109. br.ErrMsg = "保存失败,Err:" + err.Error()
  110. return
  111. }
  112. br.Ret = 200
  113. br.Success = true
  114. br.Msg = "保存成功"
  115. }
  116. // @router /chapter/base_info/edit [post]
  117. func (this *ReportController) EditChapterBaseInfoAndPermission() {
  118. br := new(models.BaseResponse).Init()
  119. defer func() {
  120. this.Data["json"] = br
  121. this.ServeJSON()
  122. }()
  123. sysUser := this.SysUser
  124. if sysUser == nil {
  125. br.Msg = "请登录"
  126. br.ErrMsg = "请登录,SysUser Is Empty"
  127. br.Ret = 408
  128. return
  129. }
  130. var req models.EditReportChapterBaseInfoAndPermissionReq
  131. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  132. if err != nil {
  133. br.Msg = "参数解析异常!"
  134. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  135. return
  136. }
  137. reportChapterId := req.ReportChapterId
  138. if reportChapterId <= 0 {
  139. br.Msg = "报告章节ID有误"
  140. return
  141. }
  142. req.Title = strings.TrimSpace(req.Title)
  143. if req.Title == `` {
  144. br.Msg = "章节名称不能为空"
  145. return
  146. }
  147. reportChapterInfo, err := models.GetReportChapterInfoById(reportChapterId)
  148. if err != nil {
  149. br.Msg = "报告章节信息有误"
  150. br.ErrMsg = "报告章节信息有误, Err: " + err.Error()
  151. return
  152. }
  153. {
  154. var condition string
  155. var pars []interface{}
  156. condition += " AND report_id = ? AND title=? AND report_chapter_id != ? "
  157. pars = append(pars, reportChapterInfo.ReportId, req.Title, reportChapterId)
  158. count, err := models.GetCountReportChapterByCondition(condition, pars)
  159. if err != nil {
  160. br.Msg = "新增失败"
  161. br.ErrMsg = "判断章节名称是否存在失败,Err:" + err.Error()
  162. return
  163. }
  164. if count > 0 {
  165. br.Msg = "章节名称不允许重复"
  166. br.ErrMsg = "章节名称不允许重复"
  167. br.IsSendEmail = false
  168. return
  169. }
  170. }
  171. reportInfo, err := models.GetReportByReportId(reportChapterInfo.ReportId)
  172. if err != nil {
  173. br.Msg = "报告信息有误"
  174. br.ErrMsg = "报告信息有误, Err: " + err.Error()
  175. return
  176. }
  177. if reportInfo.State == 2 {
  178. br.Msg = "该报告已发布,不允许编辑"
  179. br.ErrMsg = "该报告已发布,不允许编辑"
  180. br.IsSendEmail = false
  181. return
  182. }
  183. reportInfo.LastModifyAdminId = sysUser.AdminId
  184. reportInfo.LastModifyAdminName = sysUser.RealName
  185. reportInfo.ModifyTime = time.Now()
  186. err, errMsg := services.EditChapterBaseInfoAndPermission(reportInfo, reportChapterInfo, req.Title, req.PermissionIdList, req.AdminIdList)
  187. if err != nil {
  188. br.Msg = "保存失败"
  189. if errMsg != "" {
  190. br.Msg = errMsg
  191. }
  192. br.ErrMsg = "保存失败,Err:" + err.Error()
  193. return
  194. }
  195. br.Ret = 200
  196. br.Success = true
  197. br.Msg = "保存成功"
  198. }
  199. // @router /editDayWeekChapter [post]
  200. func (this *ReportController) EditDayWeekChapter() {
  201. br := new(models.BaseResponse).Init()
  202. defer func() {
  203. this.Data["json"] = br
  204. this.ServeJSON()
  205. }()
  206. sysUser := this.SysUser
  207. if sysUser == nil {
  208. br.Msg = "请登录"
  209. br.ErrMsg = "请登录,SysUser Is Empty"
  210. br.Ret = 408
  211. return
  212. }
  213. var req models.EditReportChapterReq
  214. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  215. if err != nil {
  216. br.Msg = "参数解析异常!"
  217. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  218. return
  219. }
  220. reportChapterId := req.ReportChapterId
  221. if reportChapterId <= 0 {
  222. br.Msg = "报告章节ID有误"
  223. return
  224. }
  225. if req.Content == "" {
  226. br.Msg = "请输入内容"
  227. return
  228. }
  229. reportChapterInfo, err := models.GetReportChapterInfoById(reportChapterId)
  230. if err != nil {
  231. br.Msg = "报告章节信息有误"
  232. br.ErrMsg = "报告章节信息有误, Err: " + err.Error()
  233. return
  234. }
  235. reportInfo, err := models.GetReportByReportId(reportChapterInfo.ReportId)
  236. if err != nil {
  237. br.Msg = "报告信息有误"
  238. br.ErrMsg = "报告信息有误, Err: " + err.Error()
  239. return
  240. }
  241. {
  242. if reportInfo.AdminId != sysUser.AdminId {
  243. chapterGrantObj := report.ReportChapterGrant{}
  244. _, tmpErr := chapterGrantObj.GetGrantByIdAndAdmin(reportChapterInfo.ReportChapterId, sysUser.AdminId)
  245. if tmpErr != nil {
  246. if utils.IsErrNoRow(tmpErr) {
  247. br.Msg = "没有权限"
  248. br.ErrMsg = "没有权限"
  249. br.IsSendEmail = false
  250. return
  251. }
  252. br.Msg = "获取章节id授权用户失败"
  253. br.ErrMsg = "获取章节id授权用户失败, Err: " + tmpErr.Error()
  254. return
  255. }
  256. }
  257. {
  258. markStatus, err := services.UpdateReportEditMark(reportChapterInfo.ReportId, reportChapterInfo.ReportChapterId, sysUser.AdminId, 1, sysUser.RealName, this.Lang)
  259. if err != nil {
  260. br.Msg = err.Error()
  261. return
  262. }
  263. if markStatus.Status == 1 {
  264. br.Msg = markStatus.Msg
  265. br.IsSendEmail = false
  266. return
  267. }
  268. }
  269. }
  270. if reportInfo.State == 2 {
  271. br.Msg = "该报告已发布,不允许编辑"
  272. br.ErrMsg = "该报告已发布,不允许编辑"
  273. br.IsSendEmail = false
  274. return
  275. }
  276. reportInfo.LastModifyAdminId = sysUser.AdminId
  277. reportInfo.LastModifyAdminName = sysUser.RealName
  278. reportInfo.ModifyTime = time.Now()
  279. updateCols := make([]string, 0)
  280. reqTickerList := req.TickerList
  281. contentSub := ""
  282. if req.Content != "" {
  283. e := utils.ContentXssCheck(req.Content)
  284. if e != nil {
  285. br.Msg = "存在非法标签"
  286. br.ErrMsg = "存在非法标签, Err: " + e.Error()
  287. return
  288. }
  289. contentClean, e := services.FilterReportContentBr(req.Content)
  290. if e != nil {
  291. br.Msg = "内容去除前后空格失败"
  292. br.ErrMsg = "内容去除前后空格失败, Err: " + e.Error()
  293. return
  294. }
  295. req.Content = contentClean
  296. contentSub, err = services.GetReportContentSub(req.Content)
  297. if err != nil {
  298. br.Msg = "内容分段解析失败"
  299. br.ErrMsg = "编辑报告章节-解析 ContentSub 失败, Err: " + err.Error()
  300. return
  301. }
  302. }
  303. if req.Title != "" {
  304. reportChapterInfo.Title = req.Title
  305. updateCols = append(updateCols, "Title")
  306. }
  307. reportChapterInfo.Author = req.Author
  308. reportChapterInfo.Content = html.EscapeString(req.Content)
  309. reportChapterInfo.ContentSub = html.EscapeString(contentSub)
  310. reportChapterInfo.IsEdit = 1
  311. reportChapterInfo.ModifyTime = time.Now()
  312. if req.CreateTime != `` {
  313. formatDate := utils.FormatDateTime
  314. if !strings.Contains(req.CreateTime, ":") {
  315. formatDate = utils.FormatDate
  316. }
  317. createTime, tmpErr := time.ParseInLocation(formatDate, req.CreateTime, time.Local)
  318. if tmpErr != nil {
  319. err = tmpErr
  320. return
  321. }
  322. reportChapterInfo.CreateTime = createTime
  323. updateCols = append(updateCols, "CreateTime")
  324. }
  325. reportChapterInfo.LastModifyAdminId = sysUser.AdminId
  326. reportChapterInfo.LastModifyAdminName = sysUser.RealName
  327. reportChapterInfo.ContentModifyTime = time.Now()
  328. reportChapterInfo.ContentStruct = html.EscapeString(req.ContentStruct)
  329. updateCols = append(updateCols, "Author", "Content", "ContentSub", "IsEdit", "ModifyTime")
  330. updateCols = append(updateCols, "LastModifyAdminId", "LastModifyAdminName", "ContentModifyTime", "ContentStruct")
  331. tickerList := make([]*models.ReportChapterTicker, 0)
  332. if len(reqTickerList) > 0 {
  333. nowTime := time.Now()
  334. for i := 0; i < len(reqTickerList); i++ {
  335. tickerList = append(tickerList, &models.ReportChapterTicker{
  336. ReportChapterId: reportChapterInfo.ReportChapterId,
  337. Sort: reqTickerList[i].Sort,
  338. Ticker: reqTickerList[i].Ticker,
  339. CreateTime: nowTime,
  340. UpdateTime: nowTime,
  341. })
  342. }
  343. }
  344. err = models.UpdateChapterAndTicker(reportInfo, reportChapterInfo, updateCols, tickerList)
  345. if err != nil {
  346. br.Msg = "保存失败"
  347. br.ErrMsg = "报告章节内容保存失败, Err: " + err.Error()
  348. return
  349. }
  350. {
  351. markStatus, err := services.UpdateReportEditMark(reportChapterInfo.ReportId, reportChapterInfo.ReportChapterId, sysUser.AdminId, 1, sysUser.RealName, this.Lang)
  352. if err != nil {
  353. br.Msg = err.Error()
  354. return
  355. }
  356. if markStatus.Status == 1 {
  357. br.Msg = markStatus.Msg
  358. return
  359. }
  360. }
  361. chapters := make([]*models.ReportChapter, 0)
  362. chapters = append(chapters, reportChapterInfo)
  363. go services.SaveReportLogs(nil, chapters, sysUser.AdminId, sysUser.RealName)
  364. br.Ret = 200
  365. br.Success = true
  366. br.Msg = "保存成功"
  367. }
  368. // @router /chapter/del [post]
  369. func (this *ReportController) DelChapter() {
  370. br := new(models.BaseResponse).Init()
  371. defer func() {
  372. this.Data["json"] = br
  373. this.ServeJSON()
  374. }()
  375. sysUser := this.SysUser
  376. if sysUser == nil {
  377. br.Msg = "请登录"
  378. br.ErrMsg = "请登录,SysUser Is Empty"
  379. br.Ret = 408
  380. return
  381. }
  382. var req models.DelReportChapterReq
  383. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  384. if err != nil {
  385. br.Msg = "参数解析异常!"
  386. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  387. return
  388. }
  389. reportChapterId := req.ReportChapterId
  390. if reportChapterId <= 0 {
  391. br.Msg = "报告章节ID有误"
  392. return
  393. }
  394. reportChapterInfo, err := models.GetReportChapterInfoById(reportChapterId)
  395. if err != nil {
  396. br.Msg = "报告章节信息有误"
  397. br.ErrMsg = "报告章节信息有误, Err: " + err.Error()
  398. return
  399. }
  400. reportInfo, err := models.GetReportByReportId(reportChapterInfo.ReportId)
  401. if err != nil {
  402. br.Msg = "报告信息有误"
  403. br.ErrMsg = "报告信息有误, Err: " + err.Error()
  404. return
  405. }
  406. {
  407. if reportInfo.AdminId != sysUser.AdminId {
  408. chapterGrantObj := report.ReportChapterGrant{}
  409. _, tmpErr := chapterGrantObj.GetGrantByIdAndAdmin(reportChapterInfo.ReportChapterId, sysUser.AdminId)
  410. if tmpErr != nil {
  411. if utils.IsErrNoRow(tmpErr) {
  412. br.Msg = "没有权限"
  413. br.ErrMsg = "没有权限"
  414. br.IsSendEmail = false
  415. return
  416. }
  417. br.Msg = "获取章节id授权用户失败"
  418. br.ErrMsg = "获取章节id授权用户失败, Err: " + tmpErr.Error()
  419. return
  420. }
  421. }
  422. {
  423. markStatus, err := services.UpdateReportEditMark(reportChapterInfo.ReportId, reportChapterInfo.ReportChapterId, sysUser.AdminId, 1, sysUser.RealName, this.Lang)
  424. if err != nil {
  425. br.Msg = err.Error()
  426. return
  427. }
  428. if markStatus.Status == 1 {
  429. br.Msg = markStatus.Msg
  430. br.IsSendEmail = false
  431. return
  432. }
  433. }
  434. }
  435. if reportInfo.State == 2 {
  436. br.Msg = "该报告已发布,不允许编辑"
  437. br.ErrMsg = "该报告已发布,不允许编辑"
  438. br.IsSendEmail = false
  439. return
  440. }
  441. err, errMsg := services.DelChapter(reportInfo, reportChapterInfo, sysUser)
  442. if err != nil {
  443. br.Msg = "删除失败"
  444. if errMsg != "" {
  445. br.Msg = errMsg
  446. }
  447. br.ErrMsg = "删除失败,Err:" + err.Error()
  448. return
  449. }
  450. chapters := make([]*models.ReportChapter, 0)
  451. chapters = append(chapters, reportChapterInfo)
  452. go services.SaveReportLogs(nil, chapters, sysUser.AdminId, sysUser.RealName)
  453. br.Ret = 200
  454. br.Success = true
  455. br.Msg = "删除成功"
  456. }
  457. // @router /getReportChapterList [get]
  458. func (this *ReportController) GetReportChapterList() {
  459. br := new(models.BaseResponse).Init()
  460. defer func() {
  461. this.Data["json"] = br
  462. this.ServeJSON()
  463. }()
  464. sysUser := this.SysUser
  465. if sysUser == nil {
  466. br.Msg = "请登录"
  467. br.ErrMsg = "请登录,SysUser Is Empty"
  468. br.Ret = 408
  469. return
  470. }
  471. reqReportId := this.GetString("ReportId")
  472. reportId, _ := strconv.Atoi(reqReportId)
  473. if reportId <= 0 {
  474. br.Msg = "报告ID有误"
  475. return
  476. }
  477. reportInfo, err := models.GetReportByReportId(reportId)
  478. if err != nil {
  479. br.Msg = "获取报告信息失败"
  480. br.ErrMsg = "获取报告信息失败, Err: " + err.Error()
  481. return
  482. }
  483. isAuth, err := services.CheckReportAuthByReportChapterInfo(sysUser.AdminId, reportInfo.AdminId, reportId)
  484. if err != nil {
  485. br.Msg = "获取报告权限失败"
  486. br.ErrMsg = "获取报告权限失败,Err:" + err.Error()
  487. return
  488. }
  489. if !isAuth {
  490. br.Msg = "无操作权限"
  491. br.ErrMsg = "无操作权限"
  492. return
  493. }
  494. chapterList, err := models.GetChapterListByReportId(reportId)
  495. if err != nil {
  496. br.Msg = "获取章节列表失败"
  497. br.ErrMsg = "获取章节列表失败, Err: " + err.Error()
  498. return
  499. }
  500. typeList, err := models.GetReportChapterTypeList()
  501. if err != nil {
  502. br.Msg = "获取章节类型列表失败"
  503. br.ErrMsg = "获取章节类型列表失败, Err: " + err.Error()
  504. return
  505. }
  506. typeIdImg := make(map[int]string)
  507. for i := 0; i < len(typeList); i++ {
  508. typeIdImg[typeList[i].ReportChapterTypeId] = typeList[i].EditImgUrl
  509. }
  510. resp := make([]models.ReportChapterResp, 0)
  511. if len(chapterList) > 0 {
  512. chapterIdList := make([]int, 0)
  513. chapterIdGrandListMap := make(map[int][]int)
  514. chapterIdPermissionListMap := make(map[int][]int)
  515. for _, v := range chapterList {
  516. chapterIdList = append(chapterIdList, v.ReportChapterId)
  517. }
  518. {
  519. chapterGrantObj := report.ReportChapterGrant{}
  520. chapterGrantList, tmpErr := chapterGrantObj.GetGrantListByIdList(chapterIdList)
  521. if tmpErr != nil {
  522. br.Msg = "获取章节id授权用户列表失败"
  523. br.ErrMsg = "获取章节id授权用户列表失败, Err: " + tmpErr.Error()
  524. return
  525. }
  526. for _, v := range chapterGrantList {
  527. tmpChapterIdGrandList, ok := chapterIdGrandListMap[v.ReportChapterId]
  528. if !ok {
  529. tmpChapterIdGrandList = make([]int, 0)
  530. }
  531. chapterIdGrandListMap[v.ReportChapterId] = append(tmpChapterIdGrandList, v.AdminId)
  532. }
  533. }
  534. {
  535. obj := report.ReportChapterPermissionMapping{}
  536. chapterPermissionList, tmpErr := obj.GetPermissionListByIdList(chapterIdList)
  537. if tmpErr != nil {
  538. br.Msg = "获取章节id关联品种列表失败"
  539. br.ErrMsg = "获取章节id关联品种列表失败, Err: " + tmpErr.Error()
  540. return
  541. }
  542. for _, v := range chapterPermissionList {
  543. tmpChapterIdPermissionList, ok := chapterIdPermissionListMap[v.ReportChapterId]
  544. if !ok {
  545. tmpChapterIdPermissionList = make([]int, 0)
  546. }
  547. chapterIdPermissionListMap[v.ReportChapterId] = append(tmpChapterIdPermissionList, v.ChartPermissionId)
  548. }
  549. }
  550. for _, item := range chapterList {
  551. tmpChapterIdGrandList, ok := chapterIdGrandListMap[item.ReportChapterId]
  552. if !ok {
  553. tmpChapterIdGrandList = make([]int, 0)
  554. }
  555. tmpChapterIdPermissionList, ok := chapterIdPermissionListMap[item.ReportChapterId]
  556. if !ok {
  557. tmpChapterIdPermissionList = make([]int, 0)
  558. }
  559. tmpChapterItem := models.ReportChapterResp{
  560. ReportChapterId: item.ReportChapterId,
  561. ReportId: item.ReportId,
  562. ReportType: item.ReportType,
  563. TypeId: item.TypeId,
  564. TypeName: item.TypeName,
  565. TypeEditImg: typeIdImg[item.TypeId],
  566. Title: item.Title,
  567. IsEdit: item.IsEdit,
  568. Trend: item.Trend,
  569. Sort: item.Sort,
  570. PublishState: item.PublishState,
  571. VideoUrl: item.VideoUrl,
  572. VideoName: item.VideoName,
  573. VideoPlaySeconds: item.VideoPlaySeconds,
  574. VideoSize: item.VideoSize,
  575. VideoKind: item.VideoKind,
  576. ModifyTime: item.ModifyTime.Format(utils.FormatDate),
  577. GrandAdminIdList: tmpChapterIdGrandList,
  578. PermissionIdList: tmpChapterIdPermissionList,
  579. }
  580. markStatus, err := services.UpdateReportEditMark(item.ReportId, item.ReportChapterId, this.SysUser.AdminId, 2, this.SysUser.RealName, this.Lang)
  581. if err != nil {
  582. br.Msg = "查询标记状态失败"
  583. br.ErrMsg = "查询标记状态失败,Err:" + err.Error()
  584. return
  585. }
  586. if markStatus.Status == 0 {
  587. tmpChapterItem.CanEdit = true
  588. } else {
  589. tmpChapterItem.Editor = markStatus.Editor
  590. }
  591. tmpChapterItem.IsAuth = services.CheckChapterAuthByAdminIdList(sysUser.AdminId, reportInfo.AdminId, tmpChapterIdGrandList)
  592. resp = append(resp, tmpChapterItem)
  593. }
  594. }
  595. br.Ret = 200
  596. br.Success = true
  597. br.Msg = "获取成功"
  598. br.Data = resp
  599. }
  600. // @router /getDayWeekChapter [get]
  601. func (this *ReportController) GetDayWeekChapter() {
  602. br := new(models.BaseResponse).Init()
  603. defer func() {
  604. this.Data["json"] = br
  605. this.ServeJSON()
  606. }()
  607. sysUser := this.SysUser
  608. if sysUser == nil {
  609. br.Msg = "请登录"
  610. br.ErrMsg = "请登录,SysUser Is Empty"
  611. br.Ret = 408
  612. return
  613. }
  614. reportChapterId, _ := this.GetInt("ReportChapterId")
  615. if reportChapterId <= 0 {
  616. br.Msg = "参数有误"
  617. return
  618. }
  619. chapterItem, err := models.GetReportChapterItemById(reportChapterId)
  620. if err != nil {
  621. br.Msg = "获取章节信息失败"
  622. br.ErrMsg = "获取章节信息失败, Err: " + err.Error()
  623. return
  624. }
  625. reportInfo, err := models.GetReportById(chapterItem.ReportId)
  626. if err != nil {
  627. br.Msg = "获取报告信息失败"
  628. br.ErrMsg = "获取报告信息失败, Err: " + err.Error()
  629. return
  630. }
  631. isAuth, err := services.CheckReportAuthByReportChapterInfo(sysUser.AdminId, reportInfo.AdminId, reportInfo.Id)
  632. if err != nil {
  633. br.Msg = "获取报告权限失败"
  634. br.ErrMsg = "获取报告权限失败,Err:" + err.Error()
  635. return
  636. }
  637. if !isAuth {
  638. br.Msg = "无操作权限"
  639. br.ErrMsg = "无操作权限"
  640. return
  641. }
  642. chapterItem.Content = html.UnescapeString(chapterItem.Content)
  643. chapterItem.ContentSub = html.UnescapeString(chapterItem.ContentSub)
  644. chapterItem.ContentStruct = html.UnescapeString(chapterItem.ContentStruct)
  645. chapterGrantIdList := make([]int, 0)
  646. chapterPermissionIdList := make([]int, 0)
  647. {
  648. chapterGrantObj := report.ReportChapterGrant{}
  649. chapterGrantList, tmpErr := chapterGrantObj.GetGrantListById(chapterItem.ReportChapterId)
  650. if tmpErr != nil {
  651. br.Msg = "获取章节id授权用户列表失败"
  652. br.ErrMsg = "获取章节id授权用户列表失败, Err: " + tmpErr.Error()
  653. return
  654. }
  655. for _, v := range chapterGrantList {
  656. chapterGrantIdList = append(chapterGrantIdList, v.AdminId)
  657. }
  658. }
  659. {
  660. obj := report.ReportChapterPermissionMapping{}
  661. chapterPermissionList, tmpErr := obj.GetPermissionListById(chapterItem.ReportChapterId)
  662. if tmpErr != nil {
  663. br.Msg = "获取章节id关联品种列表失败"
  664. br.ErrMsg = "获取章节id关联品种列表失败, Err: " + tmpErr.Error()
  665. return
  666. }
  667. for _, v := range chapterPermissionList {
  668. chapterPermissionIdList = append(chapterPermissionIdList, v.ChartPermissionId)
  669. }
  670. }
  671. resp := models.ReportChapterItemResp{
  672. ReportChapterItem: *chapterItem,
  673. GrandAdminIdList: chapterGrantIdList,
  674. PermissionIdList: chapterPermissionIdList,
  675. }
  676. {
  677. markStatus, err := services.UpdateReportEditMark(chapterItem.ReportId, chapterItem.ReportChapterId, this.SysUser.AdminId, 2, this.SysUser.RealName, this.Lang)
  678. if err != nil {
  679. br.Msg = "查询标记状态失败"
  680. br.ErrMsg = "查询标记状态失败,Err:" + err.Error()
  681. return
  682. }
  683. if markStatus.Status == 0 {
  684. resp.CanEdit = true
  685. } else {
  686. resp.Editor = markStatus.Editor
  687. }
  688. }
  689. br.Ret = 200
  690. br.Success = true
  691. br.Msg = "获取成功"
  692. br.Data = resp
  693. }
  694. // @router /chapter/move [post]
  695. func (this *ReportController) ChapterMove() {
  696. br := new(models.BaseResponse).Init()
  697. defer func() {
  698. if br.ErrMsg == "" {
  699. br.IsSendEmail = false
  700. }
  701. this.Data["json"] = br
  702. this.ServeJSON()
  703. }()
  704. sysUser := this.SysUser
  705. if sysUser == nil {
  706. br.Msg = "请登录"
  707. br.ErrMsg = "请登录,SysUser Is Empty"
  708. br.Ret = 408
  709. return
  710. }
  711. var req models.ReportChapterMoveReq
  712. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  713. br.Msg = "参数解析异常!"
  714. br.ErrMsg = "参数解析失败,Err:" + e.Error()
  715. return
  716. }
  717. if req.ReportChapterId == 0 {
  718. br.Msg = "请选择要移动的章节"
  719. return
  720. }
  721. e, msg := services.MoveReportChapter(&req)
  722. if e != nil {
  723. br.Msg = msg
  724. br.ErrMsg = "移动品种失败, Err: " + e.Error()
  725. return
  726. }
  727. br.Ret = 200
  728. br.Success = true
  729. br.Msg = "操作成功"
  730. }
  731. // @router /editChapterTrendTag [post]
  732. func (this *ReportController) EditChapterTrendTag() {
  733. br := new(models.BaseResponse).Init()
  734. defer func() {
  735. this.Data["json"] = br
  736. this.ServeJSON()
  737. }()
  738. sysUser := this.SysUser
  739. if sysUser == nil {
  740. br.Msg = "请登录"
  741. br.ErrMsg = "请登录,SysUser Is Empty"
  742. br.Ret = 408
  743. return
  744. }
  745. var req models.EditChapterTrendTagReq
  746. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  747. if err != nil {
  748. br.Msg = "参数解析异常!"
  749. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  750. return
  751. }
  752. if req.ReportChapterId <= 0 {
  753. br.Msg = "章节ID有误"
  754. return
  755. }
  756. if req.Trend == "" {
  757. br.Msg = "请输入标签"
  758. return
  759. }
  760. chapterInfo, err := models.GetReportChapterInfoById(req.ReportChapterId)
  761. if err != nil {
  762. br.Msg = "获取章节信息失败"
  763. br.ErrMsg = "获取章节信息失败, Err: " + err.Error()
  764. return
  765. }
  766. reportInfo, err := models.GetReportByReportId(chapterInfo.ReportId)
  767. if err != nil {
  768. br.Msg = "报告信息有误"
  769. br.ErrMsg = "报告信息有误, Err: " + err.Error()
  770. return
  771. }
  772. {
  773. if reportInfo.AdminId != sysUser.AdminId {
  774. chapterGrantObj := report.ReportChapterGrant{}
  775. _, tmpErr := chapterGrantObj.GetGrantByIdAndAdmin(chapterInfo.ReportChapterId, sysUser.AdminId)
  776. if tmpErr != nil {
  777. if utils.IsErrNoRow(tmpErr) {
  778. br.Msg = "没有权限"
  779. br.ErrMsg = "没有权限"
  780. br.IsSendEmail = false
  781. return
  782. }
  783. br.Msg = "获取章节id授权用户失败"
  784. br.ErrMsg = "获取章节id授权用户失败, Err: " + tmpErr.Error()
  785. return
  786. }
  787. }
  788. }
  789. chapterInfo.Trend = req.Trend
  790. updateCols := make([]string, 0)
  791. updateCols = append(updateCols, "Trend")
  792. if err = chapterInfo.UpdateChapter(updateCols); err != nil {
  793. br.Msg = "更新标签失败"
  794. br.ErrMsg = "更新标签失败, Err: " + err.Error()
  795. return
  796. }
  797. if err = models.AddTrendTagKeyWord(req.Trend); err != nil {
  798. br.Msg = "添加标签关键词失败"
  799. br.ErrMsg = "添加标签关键词失败, Err: " + err.Error()
  800. return
  801. }
  802. br.Ret = 200
  803. br.Success = true
  804. br.Msg = "保存成功"
  805. }
  806. // @router /getSunCode [post]
  807. func (this *ReportController) GetSunCode() {
  808. br := new(models.BaseResponse).Init()
  809. defer func() {
  810. this.Data["json"] = br
  811. this.ServeJSON()
  812. }()
  813. sysUser := this.SysUser
  814. if sysUser == nil {
  815. br.Msg = "请登录"
  816. br.ErrMsg = "请登录,SysUser Is Empty"
  817. br.Ret = 408
  818. return
  819. }
  820. var req models.SunCodeReq
  821. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  822. if err != nil {
  823. br.Msg = "参数解析异常!"
  824. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  825. return
  826. }
  827. var sunCodeUrl string
  828. item, err := models.GetYbPcSunCode(req.CodeScene, req.CodePage)
  829. if err != nil && !utils.IsErrNoRow(err) {
  830. br.Msg = "查询太阳码失败!"
  831. br.ErrMsg = "查询太阳码失败,Err:" + err.Error()
  832. return
  833. }
  834. if item != nil {
  835. sunCodeUrl = item.SuncodeUrl
  836. }
  837. if sunCodeUrl == "" {
  838. sunCodeUrl, err = services.PcCreateAndUploadSunCode(req.CodeScene, req.CodePage)
  839. if err != nil {
  840. br.Msg = "生成太阳码失败!"
  841. br.ErrMsg = "生成太阳码失败,Err:" + err.Error()
  842. return
  843. }
  844. }
  845. br.Data = sunCodeUrl
  846. br.Ret = 200
  847. br.Success = true
  848. br.Msg = "操作成功"
  849. }
  850. // @router /chapter/voice/upload [post]
  851. func (this *ReportController) VoiceUpload() {
  852. br := new(models.BaseResponse).Init()
  853. defer func() {
  854. this.Data["json"] = br
  855. this.ServeJSON()
  856. }()
  857. f, h, err := this.GetFile("file")
  858. if err != nil {
  859. br.Msg = "获取资源信息失败"
  860. br.ErrMsg = "获取资源信息失败,Err:" + err.Error()
  861. return
  862. }
  863. reportChapterId, err := this.GetInt("ReportChapterId", 0)
  864. if err != nil {
  865. br.Msg = "报告章节ID异常"
  866. br.ErrMsg = "报告章节ID异常,Err:" + err.Error()
  867. return
  868. }
  869. reportChapterInfo, err := models.GetReportChapterInfoById(reportChapterId)
  870. if err != nil {
  871. br.Msg = "获取报告章节信息失败"
  872. br.ErrMsg = "获取报告章节信息失败,Err:" + err.Error()
  873. return
  874. }
  875. reportInfo, err := models.GetReportByReportId(reportChapterInfo.ReportId)
  876. if err != nil {
  877. br.Msg = "获取报告信息失败"
  878. br.ErrMsg = "获取报告信息失败,Err:" + err.Error()
  879. return
  880. }
  881. isAuth, err := services.CheckChapterAuthByReportChapterInfo(this.SysUser.AdminId, reportInfo.AdminId, reportChapterInfo)
  882. if err != nil {
  883. br.Msg = "获取报告权限失败"
  884. br.ErrMsg = "获取报告权限失败,Err:" + err.Error()
  885. return
  886. }
  887. if !isAuth {
  888. br.Msg = "无操作权限"
  889. br.ErrMsg = "无操作权限"
  890. return
  891. }
  892. ext := path.Ext(h.Filename)
  893. dateDir := time.Now().Format("20060102")
  894. uploadDir := utils.STATIC_DIR + "hongze/" + dateDir
  895. err = os.MkdirAll(uploadDir, utils.DIR_MOD)
  896. if err != nil {
  897. br.Msg = "存储目录创建失败"
  898. br.ErrMsg = "存储目录创建失败,Err:" + err.Error()
  899. return
  900. }
  901. randStr := utils.GetRandStringNoSpecialChar(28)
  902. fileName := randStr + ext
  903. fPath := uploadDir + "/" + fileName
  904. defer f.Close() //关闭上传文件
  905. err = this.SaveToFile("file", fPath)
  906. if err != nil {
  907. br.Msg = "文件上传失败"
  908. br.ErrMsg = "文件上传失败,Err:" + err.Error()
  909. return
  910. }
  911. resourceUrl := ``
  912. ossClient := services.NewOssClient()
  913. if ossClient == nil {
  914. br.Msg = "上传失败"
  915. br.ErrMsg = "初始化OSS服务失败"
  916. return
  917. }
  918. resourceUrl, err = ossClient.UploadFile(fileName, fPath, "")
  919. if err != nil {
  920. br.Msg = "文件上传失败"
  921. br.ErrMsg = "文件上传失败,Err:" + err.Error()
  922. return
  923. }
  924. defer func() {
  925. os.Remove(fPath)
  926. }()
  927. item := new(models.Resource)
  928. item.ResourceUrl = resourceUrl
  929. item.ResourceType = 2
  930. item.CreateTime = time.Now()
  931. newId, err := models.AddResource(item)
  932. if err != nil {
  933. br.Msg = "资源上传失败"
  934. br.ErrMsg = "资源上传失败,Err:" + err.Error()
  935. return
  936. }
  937. playSecondsStr, err := utils.GetDuration(fPath) //mp3duration.Calculate(fPath)
  938. if err != nil {
  939. utils.FileLog.Info("获取音频时间失败,Err:" + err.Error())
  940. }
  941. fileBody, err := os.ReadFile(fPath)
  942. videoSize := len(fileBody)
  943. sizeFloat := (float64(videoSize) / float64(1024)) / float64(1024)
  944. sizeStr := utils.SubFloatToFloatStr(sizeFloat, 2)
  945. {
  946. createTimeStr := reportChapterInfo.CreateTime.Format("0102")
  947. videoName := reportChapterInfo.Title + "(" + createTimeStr + ")"
  948. reportChapterInfo.VideoUrl = resourceUrl
  949. reportChapterInfo.VideoName = videoName
  950. reportChapterInfo.VideoPlaySeconds = playSecondsStr //fmt.Sprint(playSeconds)
  951. reportChapterInfo.VideoSize = sizeStr
  952. reportChapterInfo.VideoKind = 1
  953. reportChapterInfo.LastModifyAdminId = this.SysUser.AdminId
  954. reportChapterInfo.LastModifyAdminName = this.SysUser.RealName
  955. reportInfo.VoiceGenerateType = 1
  956. reportChapterInfo.ModifyTime = time.Now()
  957. err = reportChapterInfo.UpdateChapter([]string{"VideoUrl", "VideoName", "VideoPlaySeconds", "VideoSize", "VideoKind", "LastModifyAdminId", "LastModifyAdminName", "VoiceGenerateType", "ModifyTime"})
  958. if err != nil {
  959. br.Msg = "上传失败"
  960. br.ErrMsg = "修改报告章节的音频信息失败,Err:" + err.Error()
  961. return
  962. }
  963. reportInfo.LastModifyAdminId = this.SysUser.AdminId
  964. reportInfo.LastModifyAdminName = this.SysUser.RealName
  965. reportInfo.ModifyTime = time.Now()
  966. err = reportInfo.UpdateReport([]string{"LastModifyAdminId", "LastModifyAdminName", "ModifyTime"})
  967. if err != nil {
  968. br.Msg = "上传失败"
  969. br.ErrMsg = "修改报告最后更新人信息失败,Err:" + err.Error()
  970. return
  971. }
  972. }
  973. go services.HandleVideoDecibel(reportChapterInfo)
  974. resp := new(models.ResourceResp)
  975. resp.Id = newId
  976. resp.ResourceUrl = resourceUrl
  977. br.Msg = "上传成功"
  978. br.Ret = 200
  979. br.Success = true
  980. br.Data = resp
  981. return
  982. }
  983. // @router /publishDayWeekReportChapter [post]
  984. func (this *ReportController) PublishDayWeekReportChapter() {
  985. br := new(models.BaseResponse).Init()
  986. defer func() {
  987. this.Data["json"] = br
  988. this.ServeJSON()
  989. }()
  990. sysUser := this.SysUser
  991. if sysUser == nil {
  992. br.Msg = "请登录"
  993. br.ErrMsg = "请登录,SysUser Is Empty"
  994. br.Ret = 408
  995. return
  996. }
  997. var req models.PublishReportChapterReq
  998. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  999. if err != nil {
  1000. br.Msg = "参数解析异常!"
  1001. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1002. return
  1003. }
  1004. if req.ReportChapterId <= 0 {
  1005. br.Msg = "参数有误"
  1006. return
  1007. }
  1008. chapterInfo, err := models.GetReportChapterInfoById(req.ReportChapterId)
  1009. if err != nil {
  1010. br.Msg = "章节信息有误"
  1011. br.ErrMsg = "获取章节信息失败, Err: " + err.Error()
  1012. return
  1013. }
  1014. reportInfo, err := models.GetReportByReportId(chapterInfo.ReportId)
  1015. if err != nil {
  1016. br.Msg = "查询报告有误"
  1017. br.ErrMsg = "查询报告信息失败, Err: " + err.Error()
  1018. return
  1019. }
  1020. if reportInfo.State == 2 {
  1021. br.Msg = "该报告已发布,不允许编辑"
  1022. br.ErrMsg = "该报告已发布,不允许编辑"
  1023. br.IsSendEmail = false
  1024. return
  1025. }
  1026. refreshResult := data.CheckBatchChartRefreshResult("report", chapterInfo.ReportId, chapterInfo.ReportChapterId)
  1027. if !refreshResult {
  1028. br.Msg = "图表刷新未完成,请稍后操作"
  1029. br.ErrMsg = "图表刷新未完成,请稍后操作"
  1030. br.IsSendEmail = false
  1031. return
  1032. }
  1033. if chapterInfo.TypeId > 0 {
  1034. reportChapterTypeRule, err := models.GetReportChapterTypeById(chapterInfo.TypeId)
  1035. if err != nil {
  1036. br.Msg = "获取配置信息异常"
  1037. br.ErrMsg = "获取配置信息异常, Err: " + err.Error()
  1038. return
  1039. }
  1040. if reportChapterTypeRule.Enabled == 0 {
  1041. br.Msg = "该章节已永久停更"
  1042. br.ErrMsg = "该章节已永久停更 "
  1043. br.IsSendEmail = false
  1044. return
  1045. }
  1046. }
  1047. var publishTime time.Time
  1048. if reportInfo.MsgIsSend == 1 && reportInfo.PublishTime.IsZero() { //如果报告曾经发布过,并且已经发送过模版消息,则章节的发布时间为报告的发布时间
  1049. publishTime = reportInfo.PublishTime
  1050. } else {
  1051. publishTime = time.Now()
  1052. }
  1053. reportInfo.LastModifyAdminId = sysUser.AdminId
  1054. reportInfo.LastModifyAdminName = sysUser.RealName
  1055. reportInfo.ModifyTime = time.Now()
  1056. err = reportInfo.UpdateReport([]string{"LastModifyAdminId", "LastModifyAdminName", "ModifyTime"})
  1057. if err != nil {
  1058. br.Msg = "发布失败"
  1059. br.ErrMsg = "报告最后编辑人保存失败, Err: " + err.Error()
  1060. return
  1061. }
  1062. chapterInfo.IsEdit = 1
  1063. chapterInfo.PublishState = 2
  1064. chapterInfo.PublishTime = publishTime
  1065. chapterInfo.LastModifyAdminId = this.SysUser.AdminId
  1066. chapterInfo.LastModifyAdminName = this.SysUser.RealName
  1067. chapterInfo.ModifyTime = time.Now()
  1068. updateCols := make([]string, 0)
  1069. updateCols = append(updateCols, "IsEdit", "PublishState", "PublishTime", "LastModifyAdminId", "LastModifyAdminName", "ModifyTime")
  1070. err = chapterInfo.UpdateChapter(updateCols)
  1071. if err != nil {
  1072. br.Msg = "发布失败"
  1073. br.ErrMsg = "报告章节内容保存失败, Err: " + err.Error()
  1074. return
  1075. }
  1076. go func() {
  1077. reportInfo.LastModifyAdminId = this.SysUser.AdminId
  1078. reportInfo.LastModifyAdminName = this.SysUser.RealName
  1079. reportInfo.ModifyTime = time.Now()
  1080. err = reportInfo.UpdateReport([]string{"LastModifyAdminId", "LastModifyAdminName", "ModifyTime"})
  1081. if err != nil {
  1082. br.Msg = "上传失败"
  1083. br.ErrMsg = "修改报告最后更新人信息失败,Err:" + err.Error()
  1084. return
  1085. }
  1086. }()
  1087. go services.UpdateChaptersVideo([]int{chapterInfo.ReportChapterId})
  1088. {
  1089. go services.UpdateReportChapterEs(chapterInfo.ReportChapterId)
  1090. }
  1091. br.Ret = 200
  1092. br.Success = true
  1093. br.Msg = "操作成功"
  1094. }
  1095. // @router /chapter/un_publish/list [get]
  1096. func (this *ReportController) GetUnPublishReportChapterList() {
  1097. br := new(models.BaseResponse).Init()
  1098. defer func() {
  1099. this.Data["json"] = br
  1100. this.ServeJSON()
  1101. }()
  1102. sysUser := this.SysUser
  1103. if sysUser == nil {
  1104. br.Msg = "请登录"
  1105. br.ErrMsg = "请登录,SysUser Is Empty"
  1106. br.Ret = 408
  1107. return
  1108. }
  1109. reportId, _ := this.GetInt("ReportId")
  1110. if reportId <= 0 {
  1111. br.Msg = "参数有误"
  1112. br.IsSendEmail = false
  1113. return
  1114. }
  1115. reportInfo, err := models.GetReportById(reportId)
  1116. if err != nil {
  1117. br.Msg = "报告有误"
  1118. br.ErrMsg = "报告有误, Err: " + err.Error()
  1119. return
  1120. }
  1121. if reportInfo.HasChapter == 0 {
  1122. br.Msg = "报告未包含章节"
  1123. br.IsSendEmail = false
  1124. return
  1125. }
  1126. unPublishedList, err := models.GetUnPublishedChapterList(reportInfo.Id)
  1127. if err != nil {
  1128. br.Msg = "获取未发布的章节数失败"
  1129. br.ErrMsg = "获取未发布的章节数失败, Err: " + err.Error()
  1130. return
  1131. }
  1132. br.Ret = 200
  1133. br.Success = true
  1134. br.Msg = "获取成功"
  1135. br.Data = unPublishedList
  1136. }
  1137. // @router /chapter/title/edit [post]
  1138. func (this *ReportController) EditChapterTitle() {
  1139. br := new(models.BaseResponse).Init()
  1140. defer func() {
  1141. this.Data["json"] = br
  1142. this.ServeJSON()
  1143. }()
  1144. sysUser := this.SysUser
  1145. if sysUser == nil {
  1146. br.Msg = "请登录"
  1147. br.ErrMsg = "请登录,SysUser Is Empty"
  1148. br.Ret = 408
  1149. return
  1150. }
  1151. var req models.EditReportChapterReq
  1152. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1153. if err != nil {
  1154. br.Msg = "参数解析异常!"
  1155. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1156. return
  1157. }
  1158. reportChapterId := req.ReportChapterId
  1159. if reportChapterId <= 0 {
  1160. br.Msg = "报告章节ID有误"
  1161. return
  1162. }
  1163. req.Title = strings.TrimSpace(req.Title)
  1164. if req.Title == `` {
  1165. br.Msg = "章节名称不能为空"
  1166. return
  1167. }
  1168. reportChapterInfo, err := models.GetReportChapterInfoById(reportChapterId)
  1169. if err != nil {
  1170. br.Msg = "报告章节信息有误"
  1171. br.ErrMsg = "报告章节信息有误, Err: " + err.Error()
  1172. return
  1173. }
  1174. {
  1175. var condition string
  1176. var pars []interface{}
  1177. condition += " AND report_id = ? AND title=? AND report_chapter_id != ? "
  1178. pars = append(pars, reportChapterInfo.ReportId, req.Title, reportChapterId)
  1179. count, err := models.GetCountReportChapterByCondition(condition, pars)
  1180. if err != nil {
  1181. br.Msg = "新增失败"
  1182. br.ErrMsg = "判断章节名称是否存在失败,Err:" + err.Error()
  1183. return
  1184. }
  1185. if count > 0 {
  1186. br.Msg = "章节名称不允许重复"
  1187. br.ErrMsg = "章节名称不允许重复"
  1188. br.IsSendEmail = false
  1189. return
  1190. }
  1191. }
  1192. reportInfo, err := models.GetReportByReportId(reportChapterInfo.ReportId)
  1193. if err != nil {
  1194. br.Msg = "报告信息有误"
  1195. br.ErrMsg = "报告信息有误, Err: " + err.Error()
  1196. return
  1197. }
  1198. {
  1199. if reportInfo.AdminId != sysUser.AdminId {
  1200. chapterGrantObj := report.ReportChapterGrant{}
  1201. _, tmpErr := chapterGrantObj.GetGrantByIdAndAdmin(reportChapterInfo.ReportChapterId, sysUser.AdminId)
  1202. if tmpErr != nil {
  1203. if utils.IsErrNoRow(tmpErr) {
  1204. br.Msg = "没有权限"
  1205. br.ErrMsg = "没有权限"
  1206. br.IsSendEmail = false
  1207. return
  1208. }
  1209. br.Msg = "获取章节id授权用户失败"
  1210. br.ErrMsg = "获取章节id授权用户失败, Err: " + tmpErr.Error()
  1211. return
  1212. }
  1213. }
  1214. {
  1215. markStatus, err := services.UpdateReportEditMark(reportChapterInfo.ReportId, reportChapterInfo.ReportChapterId, sysUser.AdminId, 1, sysUser.RealName, this.Lang)
  1216. if err != nil {
  1217. br.Msg = err.Error()
  1218. return
  1219. }
  1220. if markStatus.Status == 1 {
  1221. br.Msg = markStatus.Msg
  1222. br.IsSendEmail = false
  1223. return
  1224. }
  1225. }
  1226. }
  1227. if reportInfo.State == 2 {
  1228. br.Msg = "该报告已发布,不允许编辑"
  1229. br.ErrMsg = "该报告已发布,不允许编辑"
  1230. br.IsSendEmail = false
  1231. return
  1232. }
  1233. reportInfo.LastModifyAdminId = sysUser.AdminId
  1234. reportInfo.LastModifyAdminName = sysUser.RealName
  1235. reportInfo.ModifyTime = time.Now()
  1236. reportChapterInfo.Title = req.Title
  1237. reportChapterInfo.LastModifyAdminId = sysUser.AdminId
  1238. reportChapterInfo.LastModifyAdminName = sysUser.RealName
  1239. reportChapterInfo.ModifyTime = time.Now()
  1240. updateCols := make([]string, 0)
  1241. updateCols = append(updateCols, "Title", "LastModifyAdminId", "LastModifyAdminName", "ModifyTime")
  1242. if err = reportInfo.UpdateReport([]string{"LastModifyAdminId", "LastModifyAdminName", "ModifyTime"}); err != nil {
  1243. br.Msg = "保存失败"
  1244. br.ErrMsg = "报告章节内容保存失败, Err: " + err.Error()
  1245. return
  1246. }
  1247. if err = reportChapterInfo.UpdateChapter(updateCols); err != nil {
  1248. br.Msg = "保存失败"
  1249. br.ErrMsg = "报告章节内容保存失败, Err: " + err.Error()
  1250. return
  1251. }
  1252. {
  1253. markStatus, err := services.UpdateReportEditMark(reportChapterInfo.ReportId, reportChapterInfo.ReportChapterId, sysUser.AdminId, 1, sysUser.RealName, this.Lang)
  1254. if err != nil {
  1255. br.Msg = err.Error()
  1256. return
  1257. }
  1258. if markStatus.Status == 1 {
  1259. br.Msg = markStatus.Msg
  1260. return
  1261. }
  1262. }
  1263. br.Ret = 200
  1264. br.Success = true
  1265. br.Msg = "保存成功"
  1266. }