Enabling CORS

This commit is contained in:
Deluan 2016-03-24 20:00:35 -04:00
parent f58c5aa5a3
commit ea4d94fa84

View file

@ -5,13 +5,14 @@ import (
"github.com/astaxie/beego" "github.com/astaxie/beego"
"github.com/astaxie/beego/context" "github.com/astaxie/beego/context"
"github.com/astaxie/beego/plugins/cors"
"github.com/deluan/gosonic/controllers" "github.com/deluan/gosonic/controllers"
) )
func init() { func init() {
mapEndpoints() mapEndpoints()
mapControllers() mapControllers()
mapFilters() initFilters()
} }
func mapEndpoints() { func mapEndpoints() {
@ -58,13 +59,20 @@ func mapControllers() {
beego.ErrorController(&controllers.MainController{}) beego.ErrorController(&controllers.MainController{})
} }
func mapFilters() { func initFilters() {
var ValidateRequest = func(ctx *context.Context) { var ValidateRequest = func(ctx *context.Context) {
c := api.BaseAPIController{} c := api.BaseAPIController{}
c.Ctx = ctx c.Ctx = ctx
c.Data = make(map[interface{}]interface{}) c.Data = make(map[interface{}]interface{})
api.Validate(c) api.Validate(c)
} }
beego.InsertFilter("/rest/*", beego.BeforeRouter, cors.Allow(&cors.Options{
AllowOrigins: []string{"*"},
AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin"},
ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-Origin"},
AllowCredentials: true,
}))
beego.InsertFilter("/rest/*", beego.BeforeRouter, ValidateRequest) beego.InsertFilter("/rest/*", beego.BeforeRouter, ValidateRequest)
} }