diff options
author | Wim <wim@42.be> | 2018-08-06 21:47:05 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2018-08-06 21:47:05 +0200 |
commit | 51062863a5c34d81e296cf15c61140911037cf3b (patch) | |
tree | 9b5e044672486326c7a0ca8fb26430f37bf4d83c /vendor/github.com/peterhellberg/giphy/random.go | |
parent | 4fb4b7aa6c02a54db8ad8dd98e4d321396926c0d (diff) | |
download | matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.gz matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.bz2 matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.zip |
Use mod vendor for vendored directory (backwards compatible)
Diffstat (limited to 'vendor/github.com/peterhellberg/giphy/random.go')
-rw-r--r-- | vendor/github.com/peterhellberg/giphy/random.go | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/github.com/peterhellberg/giphy/random.go b/vendor/github.com/peterhellberg/giphy/random.go deleted file mode 100644 index 1374ed24..00000000 --- a/vendor/github.com/peterhellberg/giphy/random.go +++ /dev/null @@ -1,37 +0,0 @@ -package giphy - -import ( - "encoding/json" - "strings" -) - -// Random returns a random response from the Giphy API -func (c *Client) Random(args []string) (Random, error) { - argsStr := strings.Join(args, " ") - - req, err := c.NewRequest("/gifs/random?tag=" + argsStr) - if err != nil { - return Random{}, err - } - - var random Random - if _, err = c.Do(req, &random); err != nil { - return Random{}, err - } - - // Check if the first character in Data is a [ - if random.RawData == nil || random.RawData[0] == '[' { - return Random{}, ErrNoImageFound - } - - var d RandomData - - err = json.Unmarshal(random.RawData, &d) - if err != nil { - return Random{}, err - } - - random.Data = d - - return random, nil -} |