|
@@ -984,3 +984,430 @@ func (this *ArticleController) Pdfwatermark() {
|
|
|
br.Msg = "获取成功"
|
|
|
br.Data = resp
|
|
|
}
|
|
|
+
|
|
|
+// @Title 获取报告详情(无需token)
|
|
|
+// @Description 获取报告详情接口
|
|
|
+// @Param ArticleId query int true "报告ID"
|
|
|
+// @Param CompanyCode query string false "机构编号"
|
|
|
+// @Param CompanyName query string false "机构名称"
|
|
|
+// @Param Email query string false "邮箱"
|
|
|
+// @Param Sign query string false "加密签名"
|
|
|
+// @Success 200 {object} models.ArticleDetailHtgjResp
|
|
|
+// @router /detailPublic [get]
|
|
|
+func (this *ArticleCommonController) DetailPublic() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+
|
|
|
+ articleId, _ := this.GetInt("ArticleId")
|
|
|
+ companyCode := this.GetString("CompanyCode")
|
|
|
+ companyNameHt := this.GetString("CompanyName")
|
|
|
+ email := this.GetString("Email")
|
|
|
+ sign := this.GetString("Sign")
|
|
|
+ resp := new(models.ArticleDetailHtgjResp)
|
|
|
+ if companyCode == "" || email == "" {
|
|
|
+ resp.HasPermission = 2
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if articleId <= 0 {
|
|
|
+ br.Msg = "文章不存在"
|
|
|
+ br.ErrMsg = "文章不存在,文章ID错误"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ errMsg, err, wxUser, companyName := services.CheckHtgj(companyCode, companyNameHt, email, sign)
|
|
|
+
|
|
|
+ if errMsg != "" {
|
|
|
+ br.Msg = errMsg
|
|
|
+ return
|
|
|
+ }
|
|
|
+ companyPermission, err := models.GetCompanyPermission(wxUser.CompanyId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取用户权限失败,Err:" + err.Error() + ";articleId" + strconv.Itoa(articleId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ hasPermission := 0
|
|
|
+
|
|
|
+ detail, err := models.GetArticleDetailById(articleId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ detail.Body = html.UnescapeString(detail.Body)
|
|
|
+ detail.Body = strings.Replace(detail.Body, "<p data-f-id=\"pbf\" style=\"text-align: center; font-size: 14px; margin-top: 30px; opacity: 0.65; font-family: sans-serif;\">Powered by <a href=\"https://www.froala.com/wysiwyg-editor?pb=1\" title=\"Froala Editor\">Froala Editor</a></p>", "", -1)
|
|
|
+ detail.Body = strings.Replace(detail.Body, "pre", "div", -1)
|
|
|
+ detail.Abstract, _ = services.GetReportContentTextSub(detail.Abstract)
|
|
|
+
|
|
|
+ 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(wxUser.UserId) + ";articleId" + strconv.Itoa(articleId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if articlePermission == nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(wxUser.UserId) + ";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 {
|
|
|
+ hasPermission = 1
|
|
|
+ }
|
|
|
+ if strings.Contains(detail.CategoryName, "研选") {
|
|
|
+ detail.IsResearch = true
|
|
|
+ }
|
|
|
+
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ if hasPermission == 1 {
|
|
|
+ //获取销售手机号
|
|
|
+ sellerItem, err := models.GetSellerByCompanyId(wxUser.CompanyId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取销售数据失败2,Err:" + strconv.Itoa(wxUser.UserId) + ";articleId" + strconv.Itoa(articleId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if sellerItem != nil {
|
|
|
+ detail.SellerMobile = sellerItem.Mobile
|
|
|
+ detail.SellerName = sellerItem.RealName
|
|
|
+ }
|
|
|
+ sellerList, err := models.GetSellerList(articleId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取销售数据失败,Err:" + err.Error() + strconv.Itoa(wxUser.UserId) + ";articleId" + strconv.Itoa(articleId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if detail.ArticleId >= utils.SummaryArticleId && strings.Contains(detail.SellerAndMobile, "-") {
|
|
|
+ strnum := strings.Index(detail.SellerAndMobile, "-")
|
|
|
+ detail.SellerAndMobile = detail.SellerAndMobile[0:strnum]
|
|
|
+ if strnum > 0 {
|
|
|
+ nickName := detail.SellerAndMobile[0:strnum]
|
|
|
+ sellerAndMobile := &models.SellerRep{
|
|
|
+ SellerMobile: "",
|
|
|
+ SellerName: nickName,
|
|
|
+ }
|
|
|
+ sellerList = append(sellerList, sellerAndMobile)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ detail.SellerList = sellerList
|
|
|
+ resp.Detail = detail
|
|
|
+ historyRecord := new(models.CygxArticleHistoryRecord)
|
|
|
+ historyRecord.UserId = wxUser.UserId
|
|
|
+ historyRecord.ArticleId = articleId
|
|
|
+ historyRecord.CreateTime = time.Now()
|
|
|
+ historyRecord.Mobile = wxUser.Mobile
|
|
|
+ historyRecord.Email = wxUser.Email
|
|
|
+ historyRecord.CompanyId = wxUser.CompanyId
|
|
|
+ historyRecord.CompanyName = companyName
|
|
|
+ recordCount, _ := models.GetNoAddStoptimeArticleCount(wxUser.UserId, articleId)
|
|
|
+ if recordCount == 0 {
|
|
|
+ go models.AddCygxArticleHistoryRecord(historyRecord)
|
|
|
+ } else {
|
|
|
+ detailNew, err := models.GetNewArticleHistoryRecord(wxUser.UserId, articleId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if detailNew.StopTime > 0 {
|
|
|
+ go models.AddCygxArticleHistoryRecord(historyRecord)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ key := "CYGX_ARTICLE_" + strconv.Itoa(articleId) + "_" + strconv.Itoa(wxUser.UserId)
|
|
|
+ if !utils.Rc.IsExist(key) {
|
|
|
+ //新增浏览记录
|
|
|
+ record := new(models.CygxArticleViewRecord)
|
|
|
+ record.UserId = wxUser.UserId
|
|
|
+ record.ArticleId = articleId
|
|
|
+ record.CreateTime = time.Now()
|
|
|
+ record.Mobile = wxUser.Mobile
|
|
|
+ record.Email = wxUser.Email
|
|
|
+ record.CompanyId = wxUser.CompanyId
|
|
|
+ record.CompanyName = companyName
|
|
|
+ go models.AddCygxArticleViewRecord(record)
|
|
|
+ utils.Rc.Put(key, 1, 5*time.Second)
|
|
|
+ models.ModifyReportLastViewTime(wxUser.UserId)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ resp.CompanyName = companyName
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+}
|
|
|
+
|
|
|
+// @Title 上传文章阅读时间(无需token)
|
|
|
+// @Description 上传文章阅读时间接口(无需token)
|
|
|
+// @Param request body models.AddStopTimeHtgjRep true "type json string"
|
|
|
+// @Success 200 {object} models.ArticleDetailResp
|
|
|
+// @router /addStopTimePublic [post]
|
|
|
+func (this *ArticleCommonController) AddStopTimePublic() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+
|
|
|
+ var req models.AddStopTimeHtgjRep
|
|
|
+ err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "参数解析异常!"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ articleId := req.ArticleId
|
|
|
+ stopTime := req.StopTime
|
|
|
+ outType := req.OutType
|
|
|
+ source := req.Source
|
|
|
+ companyCode := req.CompanyCode
|
|
|
+ companyName := req.CompanyName
|
|
|
+ wxuUserName := req.Email
|
|
|
+ sign := req.Sign
|
|
|
+ if companyCode == "" || companyName == "" || wxuUserName == "" || sign == "" {
|
|
|
+ br.Msg = "上传失败"
|
|
|
+ br.ErrMsg = "必填参数不能为空"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ companyNameHt := companyCode + "_" + companyName
|
|
|
+ errMsg := services.CheckSign(companyCode+companyName+wxuUserName, sign)
|
|
|
+ if errMsg != "" {
|
|
|
+ br.Msg = errMsg
|
|
|
+ return
|
|
|
+ }
|
|
|
+ companyInfo, err := models.GetCompanyByThirdName(companyNameHt)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ user, err := models.GetUserByThirdName(companyInfo.CompanyId, wxuUserName)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ uid := user.UserId
|
|
|
+ if articleId <= 0 {
|
|
|
+ br.Msg = "文章ID不存在"
|
|
|
+ br.ErrMsg = "参数错误"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if stopTime == 0 {
|
|
|
+ stopTime = 1
|
|
|
+ }
|
|
|
+ if outType != 2 {
|
|
|
+ outType = 1
|
|
|
+ }
|
|
|
+ if source != "PC" {
|
|
|
+ source = "MOBILE"
|
|
|
+ }
|
|
|
+ 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 user.CompanyId != 16 && stopTime > 3 {
|
|
|
+ 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 = companyInfo.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 = 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
|
|
|
+}
|
|
|
+
|
|
|
+// @Title 页面访问统计(无需token)
|
|
|
+// @Description 上传页面访问统计(无需token)
|
|
|
+// @Param request body models.CygxPageHistoryRecordHtgjRep true "type json string"
|
|
|
+// @Success Ret=200 新增成功
|
|
|
+// @router /pageHistoryPublic [post]
|
|
|
+func (this *ArticleCommonController) PageHistoryPublic() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+
|
|
|
+ var req models.CygxPageHistoryRecordHtgjRep
|
|
|
+ err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "参数解析异常!"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ companyCode := req.CompanyCode
|
|
|
+ companyName := req.CompanyName
|
|
|
+ wxuUserName := req.Email
|
|
|
+ sign := req.Sign
|
|
|
+ if companyCode == "" || companyName == "" || wxuUserName == "" || sign == "" {
|
|
|
+ br.Msg = "上传失败"
|
|
|
+ br.ErrMsg = "必填参数不能为空"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ companyNameHt := companyCode + "_" + companyName
|
|
|
+ errMsg := services.CheckSign(companyCode+companyName+wxuUserName, sign)
|
|
|
+ if errMsg != "" {
|
|
|
+ br.Msg = errMsg
|
|
|
+ return
|
|
|
+ }
|
|
|
+ companyInfo, err := models.GetCompanyByThirdName(companyNameHt)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ user, err := models.GetUserByThirdName(companyInfo.CompanyId, wxuUserName)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ item := new(models.CygxPageHistoryRecord)
|
|
|
+ item.UserId = user.UserId
|
|
|
+ item.CreateTime = time.Now()
|
|
|
+ item.Mobile = user.Mobile
|
|
|
+ item.Email = user.Email
|
|
|
+ item.CompanyId = user.CompanyId
|
|
|
+ item.CompanyName = companyName
|
|
|
+ item.DetailId = req.DetailId
|
|
|
+ item.ChartPermissionId = req.ChartPermissionId
|
|
|
+ item.IndustrialManagementId = req.IndustrialManagementId
|
|
|
+ item.PageType = "ArticleCopy"
|
|
|
+ _, err = models.AddCygxPageHistoryRecord(item)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "记录信息失败"
|
|
|
+ br.ErrMsg = "新增访问记录失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "新增成功"
|
|
|
+}
|