func main() { port := os.Getenv("PORT") if port == "" { port = "5000" } r := gin.Default() r.GET("/", func(c *gin.Context) { c.Redirect( http.StatusMovedPermanently, "https://github.com/vishaltelangre/cowboy", ) }) r.POST("/movie.:format", movie_lookup.Handler) r.POST("/excuse.:format", excuse.Handler) r.POST("/recharge.:format", recharge.Handler) r.POST("/producthunt/posts.:format", producthunt.PostsHandler) // TODO: // r.POST("/hn/best.:format", hn.Handler) // r.POST("/fortune.:format", fortune.Handler) // r.POST("/forecast.:format", forecast.Handler) // r.POST("/define.:format", dict.Handler) // r.POST("/wiki.:format", wiki.Handler) r.Run(":" + port) }
func main() { r := gin.Default() // Ping test r.GET("/ping", func(c *gin.Context) { c.String(200, "pong") }) // Get user value r.GET("/user/:name", func(c *gin.Context) { user := c.Params.ByName("name") value, ok := DB[user] if ok { c.JSON(200, gin.H{"user": user, "value": value}) } else { c.JSON(200, gin.H{"user": user, "status": "no value"}) } }) // Authorized group (uses gin.BasicAuth() middleware) // Same than: // authorized := r.Group("/") // authorized.Use(gin.BasicAuth(gin.Credentials{ // "foo": "bar", // "manu": "123", //})) authorized := r.Group("/", gin.BasicAuth(gin.Accounts{ "foo": "bar", // user:foo password:bar "manu": "123", // user:manu password:123 })) authorized.POST("admin", func(c *gin.Context) { user := c.MustGet(gin.AuthUserKey).(string) // Parse JSON var json struct { Value string `json:"value" binding:"required"` } if c.Bind(&json) == nil { DB[user] = json.Value c.JSON(200, gin.H{"status": "ok"}) } }) // Listen and Server in 0.0.0.0:8080 r.Run(":8080") }