summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/peterhellberg/giphy/search.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/peterhellberg/giphy/search.go')
-rw-r--r--vendor/github.com/peterhellberg/giphy/search.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/github.com/peterhellberg/giphy/search.go b/vendor/github.com/peterhellberg/giphy/search.go
new file mode 100644
index 00000000..ca5af117
--- /dev/null
+++ b/vendor/github.com/peterhellberg/giphy/search.go
@@ -0,0 +1,24 @@
+package giphy
+
+import (
+ "fmt"
+ "strings"
+)
+
+// Search returns a search response from the Giphy API
+func (c *Client) Search(args []string) (Search, error) {
+ argsStr := strings.Join(args, " ")
+
+ path := fmt.Sprintf("/gifs/search?limit=%v&q=%s", c.Limit, argsStr)
+ req, err := c.NewRequest(path)
+ if err != nil {
+ return Search{}, err
+ }
+
+ var search Search
+ if _, err = c.Do(req, &search); err != nil {
+ return Search{}, err
+ }
+
+ return search, nil
+}