summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/peterhellberg/giphy/cmd
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-04-10 23:39:38 +0200
committerWim <wim@42.be>2016-04-10 23:39:38 +0200
commitde4c7804101a47a01d0c9b88ea34d2b153e2b6b9 (patch)
treefa379bc2e706951a913e0c7009d9906e42363655 /vendor/github.com/peterhellberg/giphy/cmd
parent6b18257185b1830bd2eff83fae30bdd2055f78b0 (diff)
downloadmatterbridge-msglm-de4c7804101a47a01d0c9b88ea34d2b153e2b6b9.tar.gz
matterbridge-msglm-de4c7804101a47a01d0c9b88ea34d2b153e2b6b9.tar.bz2
matterbridge-msglm-de4c7804101a47a01d0c9b88ea34d2b153e2b6b9.zip
Vendor libs
Diffstat (limited to 'vendor/github.com/peterhellberg/giphy/cmd')
-rw-r--r--vendor/github.com/peterhellberg/giphy/cmd/giphy/main.go140
1 files changed, 140 insertions, 0 deletions
diff --git a/vendor/github.com/peterhellberg/giphy/cmd/giphy/main.go b/vendor/github.com/peterhellberg/giphy/cmd/giphy/main.go
new file mode 100644
index 00000000..b621f092
--- /dev/null
+++ b/vendor/github.com/peterhellberg/giphy/cmd/giphy/main.go
@@ -0,0 +1,140 @@
+/*
+
+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)
+ }
+}