|
@@ -23,7 +23,7 @@ import (
|
|
)
|
|
)
|
|
|
|
|
|
// Comment 发布留言
|
|
// Comment 发布留言
|
|
-func Comment(user user.UserInfo, communityQuestionID uint32, content string, sourceAgent, isShowName int8, qaAvatarUrl string) (ybCommunityQuestionComment *yb_community_question_comment.YbCommunityQuestionComment, err error, errMsg string) {
|
|
|
|
|
|
+func Comment(user user.UserInfo, communityQuestionID uint32, content string, sourceAgent, isShowName, source int8, qaAvatarUrl string) (ybCommunityQuestionComment *yb_community_question_comment.YbCommunityQuestionComment, err error, errMsg string) {
|
|
errMsg = "发布留言失败"
|
|
errMsg = "发布留言失败"
|
|
defer func() {
|
|
defer func() {
|
|
if err != nil {
|
|
if err != nil {
|
|
@@ -51,6 +51,12 @@ func Comment(user user.UserInfo, communityQuestionID uint32, content string, sou
|
|
err = errors.New(errMsg)
|
|
err = errors.New(errMsg)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ if source <= 0 {
|
|
|
|
+ errMsg = "来源有误"
|
|
|
|
+ err = errors.New(errMsg)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
// 敏感词过滤
|
|
// 敏感词过滤
|
|
if user.RecordInfo.OpenID != "" && user.RecordInfo.CreatePlatform == 6 { //只有小程序的用户才能走敏感词过滤接口
|
|
if user.RecordInfo.OpenID != "" && user.RecordInfo.CreatePlatform == 6 { //只有小程序的用户才能走敏感词过滤接口
|
|
checkResult, tErr := wx_app.MsgSecCheck(user.RecordInfo.OpenID, content)
|
|
checkResult, tErr := wx_app.MsgSecCheck(user.RecordInfo.OpenID, content)
|
|
@@ -95,6 +101,7 @@ func Comment(user user.UserInfo, communityQuestionID uint32, content string, sou
|
|
ModifyTime: now,
|
|
ModifyTime: now,
|
|
CreateTime: now,
|
|
CreateTime: now,
|
|
QaAvatarUrl: qaAvatarUrl,
|
|
QaAvatarUrl: qaAvatarUrl,
|
|
|
|
+ Source: source,
|
|
}
|
|
}
|
|
err = ybCommunityQuestionComment.Create()
|
|
err = ybCommunityQuestionComment.Create()
|
|
if err != nil {
|
|
if err != nil {
|
|
@@ -155,8 +162,8 @@ func Delete(user user.UserInfo, communityQuestionCommentID uint64) (err error, e
|
|
}
|
|
}
|
|
|
|
|
|
// MyList 我的留言列表
|
|
// MyList 我的留言列表
|
|
-func MyList(userId uint64, communityQuestionID int, page, pageSize int) (list []*response.RespCommunityQuestionCommentItem, hotTotal, myTotal int64, err error, errMsg string) {
|
|
|
|
- list, hotTotal, myTotal, err, errMsg = List(userId, communityQuestionID, false, page, pageSize)
|
|
|
|
|
|
+func MyList(userId uint64, communityQuestionID, source int, page, pageSize int) (list []*response.RespCommunityQuestionCommentItem, hotTotal, myTotal int64, err error, errMsg string) {
|
|
|
|
+ list, hotTotal, myTotal, err, errMsg = List(userId, communityQuestionID, source, false, page, pageSize)
|
|
if err != nil {
|
|
if err != nil {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
@@ -164,7 +171,7 @@ func MyList(userId uint64, communityQuestionID int, page, pageSize int) (list []
|
|
}
|
|
}
|
|
|
|
|
|
// List 查询精选留言列表或我的留言列表
|
|
// List 查询精选留言列表或我的留言列表
|
|
-func List(userId uint64, communityQuestionID int, hotFlag bool, page, pageSize int) (list []*response.RespCommunityQuestionCommentItem, hotTotal, myTotal int64, err error, errMsg string) {
|
|
|
|
|
|
+func List(userId uint64, communityQuestionID, source int, hotFlag bool, page, pageSize int) (list []*response.RespCommunityQuestionCommentItem, hotTotal, myTotal int64, err error, errMsg string) {
|
|
defer func() {
|
|
defer func() {
|
|
if err != nil {
|
|
if err != nil {
|
|
global.LOG.Critical(fmt.Sprintf("comment List: userId=%d, err:%s, errMsg:%s", userId, err.Error(), errMsg))
|
|
global.LOG.Critical(fmt.Sprintf("comment List: userId=%d, err:%s, errMsg:%s", userId, err.Error(), errMsg))
|
|
@@ -178,14 +185,14 @@ func List(userId uint64, communityQuestionID int, hotFlag bool, page, pageSize i
|
|
}
|
|
}
|
|
|
|
|
|
//精选留言数
|
|
//精选留言数
|
|
- hotTotal, err = yb_community_question_comment.GetHotListTotalByCommunityQuestionID(communityQuestionID)
|
|
|
|
|
|
+ hotTotal, err = yb_community_question_comment.GetHotListTotalByCommunityQuestionID(communityQuestionID, source)
|
|
if err != nil {
|
|
if err != nil {
|
|
errMsg = `查询精选留言总数出错`
|
|
errMsg = `查询精选留言总数出错`
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
// 我的留言数
|
|
// 我的留言数
|
|
- myTotal, err = yb_community_question_comment.GetListTotalByUserIdCommunityQuestionID(userId, communityQuestionID)
|
|
|
|
|
|
+ myTotal, err = yb_community_question_comment.GetListTotalByUserIdCommunityQuestionID(userId, communityQuestionID, source)
|
|
if err != nil {
|
|
if err != nil {
|
|
errMsg = `查询我的留言总数出错`
|
|
errMsg = `查询我的留言总数出错`
|
|
return
|
|
return
|
|
@@ -194,7 +201,7 @@ func List(userId uint64, communityQuestionID int, hotFlag bool, page, pageSize i
|
|
var commentList []*yb_community_question_comment.YbCommunityQuestionComment
|
|
var commentList []*yb_community_question_comment.YbCommunityQuestionComment
|
|
//查询精选留言
|
|
//查询精选留言
|
|
if hotFlag {
|
|
if hotFlag {
|
|
- commentList, err = yb_community_question_comment.GetHotListByCommunityQuestionID(communityQuestionID, (page-1)*pageSize, pageSize)
|
|
|
|
|
|
+ commentList, err = yb_community_question_comment.GetHotListByCommunityQuestionID(communityQuestionID, (page-1)*pageSize, pageSize, source)
|
|
if err != nil {
|
|
if err != nil {
|
|
errMsg = `查询精选留言列表出错`
|
|
errMsg = `查询精选留言列表出错`
|
|
return
|
|
return
|
|
@@ -202,7 +209,7 @@ func List(userId uint64, communityQuestionID int, hotFlag bool, page, pageSize i
|
|
|
|
|
|
} else {
|
|
} else {
|
|
//查询个人留言
|
|
//查询个人留言
|
|
- commentList, err = yb_community_question_comment.GetListByUserIdCommunityQuestionID(userId, communityQuestionID)
|
|
|
|
|
|
+ commentList, err = yb_community_question_comment.GetListByUserIdCommunityQuestionID(userId, communityQuestionID, source)
|
|
if err != nil {
|
|
if err != nil {
|
|
errMsg = `查询我的留言列表出错`
|
|
errMsg = `查询我的留言列表出错`
|
|
return
|
|
return
|
|
@@ -329,14 +336,14 @@ func HandleCommentByCommunityQuestionItemList(userId uint64, questionList []*res
|
|
}
|
|
}
|
|
|
|
|
|
// 精选评论数据
|
|
// 精选评论数据
|
|
- hotList, err := yb_community_question_comment.GetHotListByCommunityQuestionIds(idArr)
|
|
|
|
|
|
+ hotList, err := yb_community_question_comment.GetHotListByCommunityQuestionIds(idArr, yb_community_question_comment.SourceQuestion)
|
|
if err != nil {
|
|
if err != nil {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
for _, v := range hotList {
|
|
for _, v := range hotList {
|
|
questionIdCommentsMap[v.CommunityQuestionID] = append(questionIdCommentsMap[v.CommunityQuestionID], &response.CommunityQuestionCommentListItem{
|
|
questionIdCommentsMap[v.CommunityQuestionID] = append(questionIdCommentsMap[v.CommunityQuestionID], &response.CommunityQuestionCommentListItem{
|
|
QaAvatarUrl: v.QaAvatarUrl,
|
|
QaAvatarUrl: v.QaAvatarUrl,
|
|
- Comment: v.Content,
|
|
|
|
|
|
+ Comment: v.Content,
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|