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/cmd | |
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/cmd')
-rw-r--r-- | vendor/github.com/peterhellberg/giphy/cmd/giphy/main.go | 140 |
1 files changed, 0 insertions, 140 deletions
diff --git a/vendor/github.com/peterhellberg/giphy/cmd/giphy/main.go b/vendor/github.com/peterhellberg/giphy/cmd/giphy/main.go deleted file mode 100644 index b621f092..00000000 --- a/vendor/github.com/peterhellberg/giphy/cmd/giphy/main.go +++ /dev/null @@ -1,140 +0,0 @@ -/* - -A command line client for the Giphy API - -Installation - -Just go get the command: - - go get -u github.com/peterhellberg/giphy/cmd/giphy - -Configuration - -The command line client can be used straight out of the box, but -there are also a few environment variables that you can use in order -to override the default configuration. - - Environment variable | Default value - ----------------------|-------------- - GIPHY_API_KEY | dc6zaTOxFJmzC - GIPHY_RATING | g - GIPHY_LIMIT | 10 - GIPHY_BASE_URL_SCHEME | http - GIPHY_BASE_URL_HOST | api.giphy.com - GIPHY_BASE_PATH | /v1 - GIPHY_USER_AGENT | giphy.go - -Usage - -The command line client consists of a few sub commands. - - Commands: - search, s [args] - gif, id [args] - random, rand, r [args] - translate, trans, t [args] - trending, trend, tr [args] - -*/ -package main - -import ( - "fmt" - "os" - "strings" - - "github.com/peterhellberg/giphy" -) - -func main() { - g := giphy.DefaultClient - - if len(os.Args) < 2 { - fmt.Println(strings.Join([]string{ - "Commands:", - "search, s [args]", - "gif, id [args]", - "random, rand, r [args]", - "translate, trans, t [args]", - "trending, trend, tr [args]", - }, "\n\t")) - - return - } - - args := os.Args[1:] - - switch args[0] { - default: - search(g, args) - case "search", "s": - search(g, args[1:]) - case "gif", "id": - gif(g, args[1:]) - case "random", "rand", "r": - random(g, args[1:]) - case "translate", "trans", "t": - translate(g, args[1:]) - case "trending", "trend", "tr": - trending(g, args[1:]) - } -} - -func search(c *giphy.Client, args []string) { - res, err := c.Search(args) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - - for _, d := range res.Data { - fmt.Println(d.Images.Original.URL) - } -} - -func gif(c *giphy.Client, args []string) { - if len(args) == 0 { - fmt.Println("missing Giphy id") - os.Exit(1) - } - - res, err := c.GIF(args[0]) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - - fmt.Println(res.Data.Images.Original.URL) -} - -func random(c *giphy.Client, args []string) { - res, err := c.Random(args) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - - fmt.Println(res.Data.ImageOriginalURL) -} - -func translate(c *giphy.Client, args []string) { - res, err := c.Translate(args) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - - fmt.Println(res.Data.Images.Original.URL) -} - -func trending(c *giphy.Client, args []string) { - res, err := c.Trending(args) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - - for _, d := range res.Data { - fmt.Println(d.Images.Original.URL) - } -} |