mirror of https://gitee.com/answerdev/answer.git
update search
This commit is contained in:
parent
c95af94cd0
commit
bcc732d89c
|
@ -233,6 +233,7 @@ func (qr *questionRepo) GetQuestionIDsPage(ctx context.Context, page, pageSize i
|
||||||
offset := page * pageSize
|
offset := page * pageSize
|
||||||
session := qr.data.DB.Table("question")
|
session := qr.data.DB.Table("question")
|
||||||
session = session.In("question.status", []int{entity.QuestionStatusAvailable, entity.QuestionStatusClosed})
|
session = session.In("question.status", []int{entity.QuestionStatusAvailable, entity.QuestionStatusClosed})
|
||||||
|
session.And("question.show = ?", entity.QuestionShow)
|
||||||
session = session.Limit(pageSize, offset)
|
session = session.Limit(pageSize, offset)
|
||||||
session = session.OrderBy("question.created_at asc")
|
session = session.OrderBy("question.created_at asc")
|
||||||
err = session.Select("id,title,created_at,post_update_time").Find(&rows)
|
err = session.Select("id,title,created_at,post_update_time").Find(&rows)
|
||||||
|
|
|
@ -94,12 +94,14 @@ func (sr *searchRepo) SearchContents(ctx context.Context, words []string, tagIDs
|
||||||
ub = builder.MySQL().Select(afs...).From("`answer`").
|
ub = builder.MySQL().Select(afs...).From("`answer`").
|
||||||
LeftJoin("`question`", "`question`.id = `answer`.question_id")
|
LeftJoin("`question`", "`question`.id = `answer`.question_id")
|
||||||
|
|
||||||
b.Where(builder.Lt{"`question`.`status`": entity.QuestionStatusDeleted})
|
b.Where(builder.Lt{"`question`.`status`": entity.QuestionStatusDeleted}).
|
||||||
|
And(builder.Eq{"`question`.`show`": entity.QuestionShow})
|
||||||
ub.Where(builder.Lt{"`question`.`status`": entity.QuestionStatusDeleted}).
|
ub.Where(builder.Lt{"`question`.`status`": entity.QuestionStatusDeleted}).
|
||||||
And(builder.Lt{"`answer`.`status`": entity.AnswerStatusDeleted})
|
And(builder.Lt{"`answer`.`status`": entity.AnswerStatusDeleted}).
|
||||||
|
And(builder.Eq{"`question`.`show`": entity.QuestionShow})
|
||||||
|
|
||||||
argsQ = append(argsQ, entity.QuestionStatusDeleted)
|
argsQ = append(argsQ, entity.QuestionStatusDeleted, entity.QuestionShow)
|
||||||
argsA = append(argsA, entity.QuestionStatusDeleted, entity.AnswerStatusDeleted)
|
argsA = append(argsA, entity.QuestionStatusDeleted, entity.AnswerStatusDeleted, entity.QuestionShow)
|
||||||
|
|
||||||
for i, word := range words {
|
for i, word := range words {
|
||||||
if i == 0 {
|
if i == 0 {
|
||||||
|
@ -228,8 +230,8 @@ func (sr *searchRepo) SearchQuestions(ctx context.Context, words []string, tagID
|
||||||
|
|
||||||
b := builder.MySQL().Select(qfs...).From("question")
|
b := builder.MySQL().Select(qfs...).From("question")
|
||||||
|
|
||||||
b.Where(builder.Lt{"`question`.`status`": entity.QuestionStatusDeleted})
|
b.Where(builder.Lt{"`question`.`status`": entity.QuestionStatusDeleted}).And(builder.Eq{"`question`.`show`": entity.QuestionShow})
|
||||||
args = append(args, entity.QuestionStatusDeleted)
|
args = append(args, entity.QuestionStatusDeleted, entity.QuestionShow)
|
||||||
|
|
||||||
for i, word := range words {
|
for i, word := range words {
|
||||||
if i == 0 {
|
if i == 0 {
|
||||||
|
@ -343,8 +345,8 @@ func (sr *searchRepo) SearchAnswers(ctx context.Context, words []string, tagIDs
|
||||||
LeftJoin("`question`", "`question`.id = `answer`.question_id")
|
LeftJoin("`question`", "`question`.id = `answer`.question_id")
|
||||||
|
|
||||||
b.Where(builder.Lt{"`question`.`status`": entity.QuestionStatusDeleted}).
|
b.Where(builder.Lt{"`question`.`status`": entity.QuestionStatusDeleted}).
|
||||||
And(builder.Lt{"`answer`.`status`": entity.AnswerStatusDeleted})
|
And(builder.Lt{"`answer`.`status`": entity.AnswerStatusDeleted}).And(builder.Eq{"`question`.`show`": entity.QuestionShow})
|
||||||
args = append(args, entity.QuestionStatusDeleted, entity.AnswerStatusDeleted)
|
args = append(args, entity.QuestionStatusDeleted, entity.AnswerStatusDeleted, entity.QuestionShow)
|
||||||
|
|
||||||
for i, word := range words {
|
for i, word := range words {
|
||||||
if i == 0 {
|
if i == 0 {
|
||||||
|
|
Loading…
Reference in New Issue