2017-02-15 19:06:19 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-03-18 22:43:04 +01:00
|
|
|
// developers can use any library to add a custom cookie encoder/decoder.
|
|
|
|
// At this example we use the gorilla's securecookie library:
|
|
|
|
"github.com/gorilla/securecookie"
|
2017-02-15 19:06:19 +01:00
|
|
|
|
|
|
|
"gopkg.in/kataras/iris.v6"
|
|
|
|
"gopkg.in/kataras/iris.v6/adaptors/httprouter"
|
|
|
|
"gopkg.in/kataras/iris.v6/adaptors/sessions"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
app := iris.New()
|
|
|
|
app.Adapt(iris.DevLogger()) // enable all (error) logs
|
|
|
|
app.Adapt(httprouter.New()) // select the httprouter as the servemux
|
|
|
|
|
2017-03-18 22:43:04 +01:00
|
|
|
cookieName := "mycustomsessionid"
|
|
|
|
// AES only supports key sizes of 16, 24 or 32 bytes.
|
|
|
|
// You either need to provide exactly that amount or you derive the key from what you type in.
|
|
|
|
hashKey := []byte("the-big-and-secret-fash-key-here")
|
|
|
|
blockKey := []byte("lot-secret-of-characters-big-too")
|
|
|
|
secureCookie := securecookie.New(hashKey, blockKey)
|
|
|
|
|
2017-02-15 19:06:19 +01:00
|
|
|
mySessions := sessions.New(sessions.Config{
|
2017-03-18 22:43:04 +01:00
|
|
|
Cookie: cookieName,
|
|
|
|
Encode: secureCookie.Encode,
|
|
|
|
Decode: secureCookie.Decode,
|
2017-02-15 19:06:19 +01:00
|
|
|
})
|
|
|
|
|
2017-03-18 22:43:04 +01:00
|
|
|
app.Adapt(mySessions)
|
|
|
|
|
2017-02-15 19:06:19 +01:00
|
|
|
// OPTIONALLY:
|
|
|
|
// import "gopkg.in/kataras/iris.v6/adaptors/sessions/sessiondb/redis"
|
|
|
|
// or import "github.com/kataras/go-sessions/sessiondb/$any_available_community_database"
|
|
|
|
// mySessions.UseDatabase(redis.New(...))
|
|
|
|
|
|
|
|
app.Adapt(mySessions) // Adapt the session manager we just created.
|
|
|
|
|
|
|
|
app.Get("/", func(ctx *iris.Context) {
|
|
|
|
ctx.Writef("You should navigate to the /set, /get, /delete, /clear,/destroy instead")
|
|
|
|
})
|
|
|
|
app.Get("/set", func(ctx *iris.Context) {
|
|
|
|
|
|
|
|
//set session values
|
|
|
|
ctx.Session().Set("name", "iris")
|
|
|
|
|
|
|
|
//test if setted here
|
|
|
|
ctx.Writef("All ok session setted to: %s", ctx.Session().GetString("name"))
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/get", func(ctx *iris.Context) {
|
|
|
|
// get a specific key, as string, if no found returns just an empty string
|
|
|
|
name := ctx.Session().GetString("name")
|
|
|
|
|
|
|
|
ctx.Writef("The name on the /set was: %s", name)
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/delete", func(ctx *iris.Context) {
|
|
|
|
// delete a specific key
|
|
|
|
ctx.Session().Delete("name")
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/clear", func(ctx *iris.Context) {
|
|
|
|
// removes all entries
|
|
|
|
ctx.Session().Clear()
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/destroy", func(ctx *iris.Context) {
|
2017-03-18 22:43:04 +01:00
|
|
|
//destroy, removes the entire session data and cookie
|
2017-02-15 19:06:19 +01:00
|
|
|
ctx.SessionDestroy()
|
|
|
|
}) // Note about destroy:
|
|
|
|
//
|
|
|
|
// You can destroy a session outside of a handler too, using the:
|
|
|
|
// mySessions.DestroyByID
|
|
|
|
// mySessions.DestroyAll
|
|
|
|
|
|
|
|
app.Listen(":8080")
|
|
|
|
}
|