Change repo search to use exact match for topic search. (#7941)

Signed-off-by: David Svantesson <davidsvantesson@gmail.com>
pull/7933/head^2
David Svantesson 2019-08-23 04:37:35 +02:00 committed by techknowlogick
parent 4ea9a377db
commit ca6fb004ac
1 changed files with 5 additions and 1 deletions

View File

@ -248,7 +248,11 @@ func SearchRepositoryByName(opts *SearchRepoOptions) (RepositoryList, int64, err
// separate keyword
var subQueryCond = builder.NewCond()
for _, v := range strings.Split(opts.Keyword, ",") {
subQueryCond = subQueryCond.Or(builder.Like{"topic.name", strings.ToLower(v)})
if opts.TopicOnly {
subQueryCond = subQueryCond.Or(builder.Eq{"topic.name": strings.ToLower(v)})
} else {
subQueryCond = subQueryCond.Or(builder.Like{"topic.name", strings.ToLower(v)})
}
}
subQuery := builder.Select("repo_topic.repo_id").From("repo_topic").
Join("INNER", "topic", "topic.id = repo_topic.topic_id").