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