|
@@ -656,3 +656,170 @@ func (this *ArticleController) ArticleHotList() {
|
|
|
br.Msg = "获取成功"
|
|
|
br.Data = resp
|
|
|
}
|
|
|
+
|
|
|
+// @Title 上传文章阅读时间
|
|
|
+// @Description 上传文章阅读时间接口
|
|
|
+// @Param request body models.AddStopTimeRep true "type json string"
|
|
|
+// @Success 200 {object} models.ArticleDetailResp
|
|
|
+// @router /addStopTime [post]
|
|
|
+func (this *ArticleController) AddStopTime() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+ user := this.User
|
|
|
+ if user == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录,用户信息为空"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+ var req models.AddStopTimeRep
|
|
|
+ err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "参数解析异常!"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ uid := user.UserId
|
|
|
+ articleId := req.ArticleId
|
|
|
+ stopTime := req.StopTime
|
|
|
+ outType := req.OutType
|
|
|
+ source := req.Source
|
|
|
+ if articleId <= 0 {
|
|
|
+ br.Msg = "参数错误"
|
|
|
+ br.ErrMsg = "参数错误"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if stopTime == 0 {
|
|
|
+ stopTime = 1
|
|
|
+ }
|
|
|
+ if outType != 2 {
|
|
|
+ outType = 1
|
|
|
+ }
|
|
|
+ source = "WEB"
|
|
|
+ detail := new(models.ArticleDetail)
|
|
|
+ hasPermission := 0
|
|
|
+ hasFree := 0
|
|
|
+
|
|
|
+ //判断是否已经申请过
|
|
|
+ applyCount, err := models.GetApplyRecordCount(uid)
|
|
|
+ if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
|
|
|
+ if user.CompanyId > 1 {
|
|
|
+ companyPermission, err := models.GetCompanyPermission(user.CompanyId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ detail, err = models.GetArticleDetailById(articleId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取文章信息失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if companyPermission == "" {
|
|
|
+ if applyCount > 0 {
|
|
|
+ hasPermission = 5
|
|
|
+ } else {
|
|
|
+ hasPermission = 2
|
|
|
+ }
|
|
|
+ hasFree = 2
|
|
|
+ goto Loop
|
|
|
+ } else {
|
|
|
+ hasFree = 1
|
|
|
+ var articlePermissionPermissionName string
|
|
|
+ if detail.CategoryId > 0 {
|
|
|
+ articlePermission, err := models.GetArticlePermission(detail.CategoryId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if articlePermission == nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ articlePermissionPermissionName = articlePermission.PermissionName
|
|
|
+ } else {
|
|
|
+ articlePermissionPermissionName = detail.CategoryName
|
|
|
+ }
|
|
|
+ var hasPersion bool
|
|
|
+ slice := strings.Split(articlePermissionPermissionName, ",")
|
|
|
+ for _, v := range slice {
|
|
|
+ if strings.Contains(companyPermission, v) {
|
|
|
+ hasPersion = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if hasPersion {
|
|
|
+ detailNew, err := models.GetNewArticleHistoryRecord(uid, articleId)
|
|
|
+ if err == nil {
|
|
|
+ hasPermission = 1
|
|
|
+ historyRecord := new(models.AddStopTimeNewRep)
|
|
|
+ historyRecord.StopTime = detailNew.StopTime + stopTime
|
|
|
+ historyRecord.Id = detailNew.Id
|
|
|
+ historyRecord.OutType = outType
|
|
|
+ go models.UpdateArticleStopTime(historyRecord)
|
|
|
+ }
|
|
|
+
|
|
|
+ //不统计本公司的阅读记录、正常退出的不做时间差统计
|
|
|
+ if stopTime > 4 {
|
|
|
+ key := "CYGX_ARTICLE_PV" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid) + "_" + strconv.Itoa(user.CompanyId) + "_" + strconv.Itoa(outType)
|
|
|
+ record := new(models.CygxArticleHistoryRecordNewpv)
|
|
|
+ record.UserId = uid
|
|
|
+ record.ArticleId = articleId
|
|
|
+ record.CreateTime = time.Now().Add(-time.Second * time.Duration(stopTime))
|
|
|
+ record.ModifyTime = time.Now()
|
|
|
+ record.Mobile = user.Mobile
|
|
|
+ record.Email = user.Email
|
|
|
+ record.CompanyId = user.CompanyId
|
|
|
+ record.CompanyName = user.CompanyName
|
|
|
+ record.StopTime = stopTime
|
|
|
+ record.OutType = outType
|
|
|
+ record.Source = source
|
|
|
+ if !utils.Rc.IsExist(key) || outType != 2 {
|
|
|
+ //新增浏览记录
|
|
|
+ go models.AddCygxArticleViewRecordNewpv(record)
|
|
|
+ recordRedis := new(services.ReportViewRecord)
|
|
|
+ recordRedis.UserId = user.UserId
|
|
|
+ recordRedis.ReportId = articleId
|
|
|
+ recordRedis.Mobile = user.Mobile
|
|
|
+ recordRedis.Email = user.Email
|
|
|
+ recordRedis.RealName = user.RealName
|
|
|
+ recordRedis.CompanyName = user.CompanyName
|
|
|
+ recordRedis.CreateTime = time.Now().Add(-time.Second * time.Duration(stopTime))
|
|
|
+ go services.PushViewRecordNewRedisData(recordRedis, user.CompanyId)
|
|
|
+ } else {
|
|
|
+ go models.UpdateCygxArticleViewRecordNewpv(record, stopTime)
|
|
|
+ }
|
|
|
+ utils.Rc.Put(key, 1, 10*time.Minute)
|
|
|
+ }
|
|
|
+
|
|
|
+ models.ModifyReportLastViewTime(uid)
|
|
|
+ } else { //无该行业权限
|
|
|
+ hasPermission = 3
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else { //潜在客户
|
|
|
+ if applyCount > 0 {
|
|
|
+ hasPermission = 5
|
|
|
+ } else {
|
|
|
+ hasPermission = 4
|
|
|
+ }
|
|
|
+ }
|
|
|
+Loop:
|
|
|
+ resp := new(models.ArticleDetailAddStopTimeRep)
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ resp.HasFree = hasFree
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "操作成功"
|
|
|
+ br.Data = resp
|
|
|
+}
|