app

package
v0.0.0-...-41e7d8c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 15, 2014 License: GPL-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CorsFilter = func(c *revel.Controller, fc []revel.Filter) {
	if c.Request.Method == "OPTIONS" {
		c.Response.Out.Header().Add("Access-Control-Allow-Methods", strings.Join(c.Request.Header["Access-Control-Request-Method"], ","))
		c.Response.Out.Header().Add("Access-Control-Allow-Headers", strings.Join(c.Request.Header["Access-Control-Request-Headers"], ","))
		c.Response.Out.Header().Add("Access-Control-Allow-Origin", strings.Join(c.Request.Header["Origin"], ","))
		c.Response.Out.Header().Add("Access-Control-Allow-Credentials", "true")
		c.RenderJson("{foo}")
	} else {
		fc[0](c, fc[1:])
	}
}
View Source
var HeaderFilter = func(c *revel.Controller, fc []revel.Filter) {

	c.Response.Out.Header().Add("X-Frame-Options", "SAMEORIGIN")
	c.Response.Out.Header().Add("X-XSS-Protection", "1; mode=block")
	c.Response.Out.Header().Add("X-Content-Type-Options", "nosniff")
	c.Response.Out.Header().Add("Access-Control-Allow-Origin", strings.Join(c.Request.Header["Origin"], ","))
	c.Response.Out.Header().Add("Access-Control-Allow-Credentials", "true")

	fc[0](c, fc[1:])
}

TODO turn this into revel.HeaderFilter should probably also have a filter for CSRF not sure if it can go in the same filter or not

Functions

This section is empty.

Types

This section is empty.

Directories

Path Synopsis
GENERATED CODE - DO NOT EDIT
GENERATED CODE - DO NOT EDIT

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL