From e527b6bbe4335f685528d305f8700d555420cf8e Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Wed, 28 Jun 2017 10:28:17 -0400 Subject: PLT-6931 Properly parse request body in post search (#6768) * Properly parse request body in post search * Update driver to use correct body --- api4/post.go | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'api4/post.go') diff --git a/api4/post.go b/api4/post.go index 65a508df7..3d1077358 100644 --- a/api4/post.go +++ b/api4/post.go @@ -277,18 +277,14 @@ func searchPosts(c *Context, w http.ResponseWriter, r *http.Request) { return } - props := model.MapFromJson(r.Body) - terms := props["terms"] - - if len(terms) == 0 { + props := model.StringInterfaceFromJson(r.Body) + terms, ok := props["terms"].(string) + if !ok || len(terms) == 0 { c.SetInvalidParam("terms") return } - isOrSearch := false - if val, ok := props["is_or_search"]; ok && val != "" { - isOrSearch, _ = strconv.ParseBool(val) - } + isOrSearch, _ := props["is_or_search"].(bool) posts, err := app.SearchPostsInTeam(terms, c.Session.UserId, c.Params.TeamId, isOrSearch) if err != nil { -- cgit v1.2.3-1-g7c22