|
@@ -5,6 +5,7 @@ import (
|
|
|
"eta/eta_api/models"
|
|
|
"eta/eta_api/models/report"
|
|
|
"eta/eta_api/services"
|
|
|
+ "eta/eta_api/services/data"
|
|
|
"eta/eta_api/utils"
|
|
|
"fmt"
|
|
|
"github.com/kgiannakakis/mp3duration/src/mp3duration"
|
|
@@ -505,7 +506,6 @@ func (this *ReportController) DelChapter() {
|
|
|
// @Success 200 {object} company.CompanyListResp
|
|
|
// @router /getReportChapterList [get]
|
|
|
func (this *ReportController) GetReportChapterList() {
|
|
|
- // TODO 授权用户校验
|
|
|
br := new(models.BaseResponse).Init()
|
|
|
defer func() {
|
|
|
this.Data["json"] = br
|
|
@@ -527,6 +527,7 @@ func (this *ReportController) GetReportChapterList() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ // 获取报告信息
|
|
|
reportInfo, err := models.GetReportByReportId(reportId)
|
|
|
if err != nil {
|
|
|
br.Msg = "获取报告信息失败"
|
|
@@ -534,6 +535,19 @@ func (this *ReportController) GetReportChapterList() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ // 权限校验
|
|
|
+ isAuth, err := services.CheckReportAuthByReportChapterInfo(sysUser.AdminId, reportInfo.AdminId, reportId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取报告权限失败"
|
|
|
+ br.ErrMsg = "获取报告权限失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !isAuth {
|
|
|
+ br.Msg = "无操作权限"
|
|
|
+ br.ErrMsg = "无操作权限"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
// 获取章节列表
|
|
|
chapterList, err := models.GetChapterListByReportId(reportId)
|
|
|
if err != nil {
|
|
@@ -708,7 +722,6 @@ func (this *ReportController) GetReportChapterList() {
|
|
|
// @Success 200 Ret=200 保存成功
|
|
|
// @router /getDayWeekChapter [get]
|
|
|
func (this *ReportController) GetDayWeekChapter() {
|
|
|
- // TODO 授权用户校验
|
|
|
br := new(models.BaseResponse).Init()
|
|
|
defer func() {
|
|
|
this.Data["json"] = br
|
|
@@ -727,6 +740,7 @@ func (this *ReportController) GetDayWeekChapter() {
|
|
|
br.Msg = "参数有误"
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
chapterInfo, err := models.GetReportChapterInfoById(reportChapterId)
|
|
|
if err != nil {
|
|
|
br.Msg = "获取章节信息失败"
|
|
@@ -739,6 +753,27 @@ func (this *ReportController) GetDayWeekChapter() {
|
|
|
chapterInfo.ContentStruct = html.UnescapeString(chapterInfo.ContentStruct)
|
|
|
}
|
|
|
|
|
|
+ // 获取报告详情
|
|
|
+ reportInfo, err := models.GetReportById(chapterInfo.ReportId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取报告信息失败"
|
|
|
+ br.ErrMsg = "获取报告信息失败, Err: " + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ // 权限校验
|
|
|
+ isAuth, err := services.CheckReportAuthByReportChapterInfo(sysUser.AdminId, reportInfo.AdminId, reportInfo.Id)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取报告权限失败"
|
|
|
+ br.ErrMsg = "获取报告权限失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !isAuth {
|
|
|
+ br.Msg = "无操作权限"
|
|
|
+ br.ErrMsg = "无操作权限"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
chapterInfo.Content = html.UnescapeString(chapterInfo.Content)
|
|
|
chapterInfo.ContentSub = html.UnescapeString(chapterInfo.ContentSub)
|
|
|
chapterInfo.ContentStruct = html.UnescapeString(chapterInfo.ContentStruct)
|
|
@@ -1044,19 +1079,17 @@ func (this *ReportController) VoiceUpload() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- // 如果不是自己创建的报告,那么要去校验是否属于授权用户
|
|
|
- if this.SysUser.AdminId != reportInfo.AdminId {
|
|
|
- isAuth, err := services.CheckChapterAuthByReportChapterInfo(this.SysUser.AdminId, reportChapterInfo)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "获取报告权限失败"
|
|
|
- br.ErrMsg = "获取报告权限失败,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
- if !isAuth {
|
|
|
- br.Msg = "无操作权限"
|
|
|
- br.ErrMsg = "无操作权限"
|
|
|
- return
|
|
|
- }
|
|
|
+ // 权限校验
|
|
|
+ isAuth, err := services.CheckChapterAuthByReportChapterInfo(this.SysUser.AdminId, reportInfo.AdminId, reportChapterInfo)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取报告权限失败"
|
|
|
+ br.ErrMsg = "获取报告权限失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !isAuth {
|
|
|
+ br.Msg = "无操作权限"
|
|
|
+ br.ErrMsg = "无操作权限"
|
|
|
+ return
|
|
|
}
|
|
|
|
|
|
ext := path.Ext(h.Filename)
|
|
@@ -1164,6 +1197,7 @@ func (this *ReportController) VoiceUpload() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ // 修改报告的最近更新人信息
|
|
|
reportInfo.LastModifyAdminId = this.SysUser.AdminId
|
|
|
reportInfo.LastModifyAdminName = this.SysUser.RealName
|
|
|
reportInfo.ModifyTime = time.Now()
|
|
@@ -1175,6 +1209,9 @@ func (this *ReportController) VoiceUpload() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ // 处理报告中的音频文件分贝
|
|
|
+ go services.HandleVideoDecibel(reportChapterInfo)
|
|
|
+
|
|
|
resp := new(models.ResourceResp)
|
|
|
resp.Id = newId
|
|
|
resp.ResourceUrl = resourceUrl
|
|
@@ -1184,3 +1221,134 @@ func (this *ReportController) VoiceUpload() {
|
|
|
br.Data = resp
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+// PublishDayWeekReportChapter
|
|
|
+// @Title 发布章节
|
|
|
+// @Description 发布章节
|
|
|
+// @Param request body models.PublishReportChapterReq true "type json string"
|
|
|
+// @Success 200 Ret=200 操作成功
|
|
|
+// @router /publishDayWeekReportChapter [post]
|
|
|
+func (this *ReportController) PublishDayWeekReportChapter() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+ sysUser := this.SysUser
|
|
|
+ if sysUser == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录,SysUser Is Empty"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ var req models.PublishReportChapterReq
|
|
|
+ err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "参数解析异常!"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if req.ReportChapterId <= 0 {
|
|
|
+ br.Msg = "参数有误"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ // 获取报告详情
|
|
|
+ chapterInfo, err := models.GetReportChapterInfoById(req.ReportChapterId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "章节信息有误"
|
|
|
+ br.ErrMsg = "获取章节信息失败, Err: " + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ reportInfo, err := models.GetReportByReportId(chapterInfo.ReportId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "查询报告有误"
|
|
|
+ br.ErrMsg = "查询报告信息失败, Err: " + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if reportInfo.State == 2 {
|
|
|
+ br.Msg = "该报告已发布,不允许编辑"
|
|
|
+ br.ErrMsg = "该报告已发布,不允许编辑"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ // 图表刷新状态
|
|
|
+ refreshResult := data.CheckBatchChartRefreshResult("report", chapterInfo.ReportId, chapterInfo.ReportChapterId)
|
|
|
+ if !refreshResult {
|
|
|
+ br.Msg = "图表刷新未完成,请稍后操作"
|
|
|
+ br.ErrMsg = "图表刷新未完成,请稍后操作"
|
|
|
+ br.IsSendEmail = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ // 获取规则配置
|
|
|
+ reportChapterTypeRule, err := models.GetReportChapterTypeById(chapterInfo.TypeId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取配置信息异常"
|
|
|
+ br.ErrMsg = "获取配置信息异常, Err: " + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if reportChapterTypeRule.Enabled == 0 {
|
|
|
+ br.Msg = "该章节已永久停更"
|
|
|
+ br.ErrMsg = "该章节已永久停更 "
|
|
|
+ br.IsSendEmail = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ var publishTime time.Time
|
|
|
+ if reportInfo.MsgIsSend == 1 && reportInfo.PublishTime.IsZero() { //如果报告曾经发布过,并且已经发送过模版消息,则章节的发布时间为报告的发布时间
|
|
|
+ publishTime = reportInfo.PublishTime
|
|
|
+ } else {
|
|
|
+ publishTime = time.Now()
|
|
|
+ }
|
|
|
+
|
|
|
+ // 更新章节信息
|
|
|
+ chapterInfo.IsEdit = 1
|
|
|
+ chapterInfo.PublishState = 2
|
|
|
+ chapterInfo.PublishTime = publishTime
|
|
|
+ chapterInfo.LastModifyAdminId = this.SysUser.AdminId
|
|
|
+ chapterInfo.LastModifyAdminName = this.SysUser.RealName
|
|
|
+ chapterInfo.ModifyTime = time.Now()
|
|
|
+
|
|
|
+ updateCols := make([]string, 0)
|
|
|
+ updateCols = append(updateCols, "IsEdit", "PublishState", "PublishTime", "LastModifyAdminId", "LastModifyAdminName", "ModifyTime")
|
|
|
+ err = chapterInfo.UpdateChapter(updateCols)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "发布失败"
|
|
|
+ br.ErrMsg = "报告章节内容保存失败, Err: " + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ // 修改报告的最近更新人信息
|
|
|
+ go func() {
|
|
|
+ reportInfo.LastModifyAdminId = this.SysUser.AdminId
|
|
|
+ reportInfo.LastModifyAdminName = this.SysUser.RealName
|
|
|
+ reportInfo.ModifyTime = time.Now()
|
|
|
+ err = reportInfo.UpdateReport([]string{"LastModifyAdminId", "LastModifyAdminName", "ModifyTime"})
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "上传失败"
|
|
|
+ br.ErrMsg = "修改报告最后更新人信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }()
|
|
|
+
|
|
|
+ // 更新章节ES
|
|
|
+ {
|
|
|
+ go services.UpdateReportChapterEs(chapterInfo.ReportChapterId)
|
|
|
+ }
|
|
|
+
|
|
|
+ // 同时发布报告
|
|
|
+ if req.PublishReport == 1 {
|
|
|
+ if _, e := services.PublishDayWeekReport(chapterInfo.ReportId); e != nil {
|
|
|
+ br.Msg = "章节发布成功,报告发布失败,请手动发布报告"
|
|
|
+ br.ErrMsg = "发布晨/周报失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "操作成功"
|
|
|
+}
|