2017-11-05 03:12:18 +01:00
|
|
|
package main
|
|
|
|
|
2018-03-10 13:22:56 +01:00
|
|
|
// go get -u github.com/iris-contrib/middleware/...
|
2017-11-05 03:12:18 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/kataras/iris"
|
|
|
|
|
|
|
|
"github.com/iris-contrib/middleware/cors"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
app := iris.New()
|
2018-02-21 13:19:09 +01:00
|
|
|
|
2018-03-10 13:22:56 +01:00
|
|
|
crs := cors.New(cors.Options{
|
2017-11-05 03:12:18 +01:00
|
|
|
AllowedOrigins: []string{"*"}, // allows everything, use that to change the hosts.
|
|
|
|
AllowCredentials: true,
|
|
|
|
})
|
|
|
|
|
2018-03-10 13:22:56 +01:00
|
|
|
v1 := app.Party("/api/v1", crs).AllowMethods(iris.MethodOptions) // <- important for the preflight.
|
2017-11-05 03:12:18 +01:00
|
|
|
{
|
|
|
|
v1.Get("/home", func(ctx iris.Context) {
|
|
|
|
ctx.WriteString("Hello from /home")
|
|
|
|
})
|
|
|
|
v1.Get("/about", func(ctx iris.Context) {
|
|
|
|
ctx.WriteString("Hello from /about")
|
|
|
|
})
|
|
|
|
v1.Post("/send", func(ctx iris.Context) {
|
|
|
|
ctx.WriteString("sent")
|
|
|
|
})
|
2018-02-21 10:27:01 +01:00
|
|
|
v1.Put("/send", func(ctx iris.Context) {
|
|
|
|
ctx.WriteString("updated")
|
|
|
|
})
|
|
|
|
v1.Delete("/send", func(ctx iris.Context) {
|
|
|
|
ctx.WriteString("deleted")
|
|
|
|
})
|
2017-11-05 03:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
app.Run(iris.Addr("localhost:8080"))
|
|
|
|
}
|