From 65a543478a4fc7472e08c3e7cb55890cb0e2d745 Mon Sep 17 00:00:00 2001 From: akuma06 Date: Mon, 8 May 2017 19:42:18 +0200 Subject: [PATCH] Added user torrents search --- util/search/search.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/util/search/search.go b/util/search/search.go index cf89477f..18929435 100644 --- a/util/search/search.go +++ b/util/search/search.go @@ -19,6 +19,7 @@ type SearchParam struct { Max int Status string Sort string + UserId string } func SearchByQuery(r *http.Request, pagenum int) (SearchParam, []model.Torrents, int) { @@ -37,6 +38,7 @@ func SearchByQuery(r *http.Request, pagenum int) (SearchParam, []model.Torrents, search_param.Status = r.URL.Query().Get("s") search_param.Sort = r.URL.Query().Get("sort") search_param.Order = r.URL.Query().Get("order") + search_param.UserId = r.URL.Query().Get("userId") catsSplit := strings.Split(search_param.Category, "_") // need this to prevent out of index panics @@ -93,6 +95,11 @@ func SearchByQuery(r *http.Request, pagenum int) (SearchParam, []model.Torrents, } parameters.Params = append(parameters.Params, search_param.Status) } + if search_param.UserId != "" { + + conditions = append(conditions, "owner_id = ?") + parameters.Params = append(parameters.Params, search_param.UserId) + } searchQuerySplit := strings.Fields(search_param.Query) for i, word := range searchQuerySplit { firstRune, _ := utf8.DecodeRuneInString(word)