Browse Source

no message

zhangchuanxing 2 days ago
parent
commit
83ea64aac6
4 changed files with 59 additions and 3 deletions
  1. 15 0
      controllers/article.go
  2. 4 0
      controllers/home.go
  3. 37 3
      controllers/yanxuan_special.go
  4. 3 0
      services/es_comprehensive.go

+ 15 - 0
controllers/article.go

@@ -72,6 +72,21 @@ func (this *ArticleController) Detail() {
 	var haveResearch bool
 
 	resp := new(models.ArticleDetailResp)
+	if user.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
+		hasPermission, err = services.GetUserDetailPermissionCode(user.UserId, user.CompanyId)
+		if err != nil && err.Error() != utils.ErrNoRow() {
+			br.Msg = "获取信息失败"
+			br.ErrMsg = "获取信息失败,GetUserDetailPermissionCode Err:" + err.Error()
+			return
+		}
+		resp.HasPermission = hasPermission
+		br.Ret = 200
+		br.Success = true
+		br.Msg = "获取成功"
+		br.Data = resp
+		return
+	}
+
 	detail, err = models.GetArticleDetailById(articleId)
 	if err != nil {
 		br.Msg = "获取信息失败"

+ 4 - 0
controllers/home.go

@@ -102,6 +102,10 @@ func (this *HomeController) NewList() {
 		condition += `  AND IF ( source = 'activity' , source_id   IN (` + utils.GetOrmInReplace(len(yanxuanActivityIds)) + `) ,1=1 ) `
 		pars = append(pars, yanxuanActivityIds)
 
+		if user.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
+			condition += ` AND source != 'yanxuanspecial'   AND    source != 'article'   `
+		}
+
 		total, err = models.GetResourceDataCount(condition, pars)
 		if err != nil {
 			br.Msg = "获取失败"

+ 37 - 3
controllers/yanxuan_special.go

@@ -54,6 +54,15 @@ func (this *BaseAuthMobileController) List() {
 	}
 	startSize = utils.StartIndex(currentIndex, pageSize)
 	resp := new(models.SpecialListResp)
+	if sysUser.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
+		resp.List = make([]*models.CygxYanxuanSpecialCenterResp, 0)
+		resp.Paging = paging.GetPaging(currentIndex, pageSize, 0)
+		br.Ret = 200
+		br.Success = true
+		br.Msg = "获取成功"
+		br.Data = resp
+		return
+	}
 	var condition string
 	var pars []interface{}
 
@@ -176,6 +185,22 @@ func (this *BaseAuthMobileController) Detail() {
 		return
 	}
 	userId := user.UserId
+	var resp models.CygxYanxuanSpecialResp
+	if user.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
+		hasPermission, err := services.GetUserDetailPermissionCode(user.UserId, user.CompanyId)
+		if err != nil && err.Error() != utils.ErrNoRow() {
+			br.Msg = "获取信息失败"
+			br.ErrMsg = "获取信息失败,GetUserDetailPermissionCode Err:" + err.Error()
+			return
+		}
+		resp.HasPermission = hasPermission
+		br.Ret = 200
+		br.Success = true
+		br.Msg = "获取成功"
+		br.Data = resp
+		return
+	}
+
 	item, tmpErr := models.GetYanxuanSpecialById(specialId, userId)
 	if tmpErr != nil {
 		br.Msg = "获取失败"
@@ -206,7 +231,7 @@ func (this *BaseAuthMobileController) Detail() {
 	if userId == 0 {
 		item.Content = utils.InterceptHtmlLength(item.Content, 150)
 	}
-	var resp models.CygxYanxuanSpecialResp
+
 	resp.HasPermission = 1
 	resp.CygxYanxuanSpecialItem = *item
 	if item.DocUrl != "" {
@@ -1039,8 +1064,17 @@ func (this *YanxuanSpecialController) AuthorList() {
 	startSize = utils.StartIndex(currentIndex, pageSize)
 	var condition string
 	var pars []interface{}
+	resp := new(models.SpecialAuthorListResp)
+	if sysUser.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
+		resp.List = make([]*models.CygxYanxuanSpecialAuthorItem, 0)
+		resp.Paging = paging.GetPaging(currentIndex, pageSize, 0)
+		br.Ret = 200
+		br.Success = true
+		br.Msg = "获取成功"
+		br.Data = resp
+		return
+	}
 	condition += ` AND  a.nick_name <> ''   `
-
 	total, err := models.GetCygxYanxuanSpecialAuthorCount(condition, pars)
 	if err != nil {
 		br.Msg = "获取失败"
@@ -1065,7 +1099,7 @@ func (this *YanxuanSpecialController) AuthorList() {
 	for _, v := range list {
 		v.YanxuanSpecialCenter = bestNew[v.UserId]
 	}
-	resp := new(models.SpecialAuthorListResp)
+
 	isAuthor, _ := services.GetYanxuanSpecialAuthorInfo(sysUser) //用户是否没开通研选专栏以及,专栏信息是否完善
 	resp.MomentsImg = services.GetSpecialAuthorListMomentsImg()  //获取作者列表朋友圈分享封面图
 	resp.IsAuthor = isAuthor

+ 3 - 0
services/es_comprehensive.go

@@ -729,6 +729,9 @@ func GetResourceDataEsList(list []*SearchComprehensiveItem, user *models.WxUserI
 func SqlComprehensiveSearch(user *models.WxUserItem, keyWord string, startSize, pageSize int) (result []*SearchComprehensiveItem, total int, err error) {
 	yanxuanActivityIds := GetYanxuanActivityIds(user, "") // 获取所有的研选活动ID
 	yanxuanArticleIds := GetYanxuanArticleIds()           //获取所有研选文章ID
+	if user.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
+		yanxuanArticleIds = make([]int, 0)
+	}
 	yanxuanArticleIds = append(yanxuanArticleIds, 0)
 	yanxuanActivityIds = append(yanxuanActivityIds, 0)