From 592b7830e3e0c824abcfd9dcd81ff077e4e2a73f Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Tue, 21 Feb 2017 10:15:13 +0000 Subject: [PATCH] Refactor to reduce cyclomatic complexity --- .../matrix-org/go-neb/services/imgur/imgur.go | 70 +++++++++++-------- 1 file changed, 42 insertions(+), 28 deletions(-) diff --git a/src/github.com/matrix-org/go-neb/services/imgur/imgur.go b/src/github.com/matrix-org/go-neb/services/imgur/imgur.go index 2d5da05..04a075c 100644 --- a/src/github.com/matrix-org/go-neb/services/imgur/imgur.go +++ b/src/github.com/matrix-org/go-neb/services/imgur/imgur.go @@ -190,39 +190,14 @@ func (s *Service) cmdImgSearch(client *gomatrix.Client, roomID, userID string, a // text2img returns info about an image or an album func (s *Service) text2img(query string) (*imgurGalleryImage, *imgurGalleryAlbum, error) { log.Info("Searching Imgur for an image of a ", query) - - query = url.QueryEscape(query) - - var sort = "time" // time | viral | top - var window = "all" // day | week | month | year | all - var page = 1 - var urlString = fmt.Sprintf("%s/%s/%s/%d?q=%s", "https://api.imgur.com/3/gallery/search", sort, window, page, query) - // var urlString = fmt.Sprintf("%s?q=%s", base, query) - - u, err := url.Parse(urlString) - if err != nil { - return nil, nil, err - } - - req, err := http.NewRequest("GET", u.String(), nil) + bytes, err := queryImgur(query, s) if err != nil { return nil, nil, err } - req.Header.Add("Authorization", "Client-ID "+s.ClientID) - res, err := httpClient.Do(req) - if res != nil { - defer res.Body.Close() - } - if err != nil { - return nil, nil, err - } - if res.StatusCode < 200 || res.StatusCode >= 300 { - return nil, nil, fmt.Errorf("Request error: %d, %s", res.StatusCode, response2String(res)) - } - var searchResults imgurSearchResponse - if err := json.NewDecoder(res.Body).Decode(&searchResults); err != nil { + // if err := json.NewDecoder(res.Body).Decode(&searchResults); err != nil { + if err := json.Unmarshal(bytes, &searchResults); err != nil { return nil, nil, fmt.Errorf("No images found - %s", err.Error()) } else if len(searchResults.Data) < 1 { return nil, nil, fmt.Errorf("No images found") @@ -248,6 +223,45 @@ func (s *Service) text2img(query string) (*imgurGalleryImage, *imgurGalleryAlbum return nil, nil, fmt.Errorf("No images found") } +// Query imgur and return HTTP response or error +func queryImgur(query string, s *Service) ([]byte, error) { + query = url.QueryEscape(query) + + var sort = "time" // time | viral | top + var window = "all" // day | week | month | year | all + var page = 1 + var urlString = fmt.Sprintf("%s/%s/%s/%d?q=%s", "https://api.imgur.com/3/gallery/search", sort, window, page, query) + // var urlString = fmt.Sprintf("%s?q=%s", base, query) + + u, err := url.Parse(urlString) + if err != nil { + return nil, err + } + + req, err := http.NewRequest("GET", u.String(), nil) + if err != nil { + return nil, err + } + + req.Header.Add("Authorization", "Client-ID "+s.ClientID) + res, err := httpClient.Do(req) + if res != nil { + defer res.Body.Close() + } + if err != nil { + return nil, err + } + if res.StatusCode < 200 || res.StatusCode >= 300 { + return nil, fmt.Errorf("Request error: %d, %s", res.StatusCode, response2String(res)) + } + + bytes, err := ioutil.ReadAll(res.Body) + if err != nil { + return nil, err + } + return bytes, nil +} + // response2String returns a string representation of an HTTP response body func response2String(res *http.Response) string { bs, err := ioutil.ReadAll(res.Body)