2017-09-24 13:32:16 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/kataras/iris"
|
|
|
|
|
|
|
|
"github.com/kataras/iris/sessions"
|
|
|
|
"github.com/kataras/iris/sessions/sessiondb/badger"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
db, err := badger.New("./data")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// close and unlock the database when control+C/cmd+C pressed
|
|
|
|
iris.RegisterOnInterrupt(func() {
|
|
|
|
db.Close()
|
|
|
|
})
|
|
|
|
|
|
|
|
sess := sessions.New(sessions.Config{
|
|
|
|
Cookie: "sessionscookieid",
|
|
|
|
Expires: 45 * time.Minute, // <=0 means unlimited life
|
|
|
|
})
|
|
|
|
|
|
|
|
//
|
|
|
|
// IMPORTANT:
|
|
|
|
//
|
|
|
|
sess.UseDatabase(db)
|
|
|
|
|
|
|
|
// the rest of the code stays the same.
|
|
|
|
app := iris.New()
|
|
|
|
|
|
|
|
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) {
|
|
|
|
s := sess.Start(ctx)
|
|
|
|
//set session values
|
|
|
|
s.Set("name", "iris")
|
|
|
|
|
|
|
|
//test if setted here
|
2017-11-02 04:50:56 +01:00
|
|
|
ctx.Writef("All ok session value of the 'name' is: %s", s.GetString("name"))
|
2017-09-24 13:32:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/set/{key}/{value}", func(ctx iris.Context) {
|
|
|
|
key, value := ctx.Params().Get("key"), ctx.Params().Get("value")
|
|
|
|
s := sess.Start(ctx)
|
|
|
|
// set session values
|
|
|
|
s.Set(key, value)
|
|
|
|
|
|
|
|
// test if setted here
|
2017-11-02 04:50:56 +01:00
|
|
|
ctx.Writef("All ok session value of the '%s' is: %s", key, s.GetString(key))
|
2017-09-24 13:32:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/get", func(ctx iris.Context) {
|
|
|
|
// get a specific key, as string, if no found returns just an empty string
|
|
|
|
name := sess.Start(ctx).GetString("name")
|
|
|
|
|
2017-11-02 04:50:56 +01:00
|
|
|
ctx.Writef("The 'name' on the /set was: %s", name)
|
2017-09-24 13:32:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/get/{key}", func(ctx iris.Context) {
|
|
|
|
// get a specific key, as string, if no found returns just an empty string
|
|
|
|
name := sess.Start(ctx).GetString(ctx.Params().Get("key"))
|
|
|
|
|
|
|
|
ctx.Writef("The name on the /set was: %s", name)
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/delete", func(ctx iris.Context) {
|
|
|
|
// delete a specific key
|
|
|
|
sess.Start(ctx).Delete("name")
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/clear", func(ctx iris.Context) {
|
|
|
|
// removes all entries
|
|
|
|
sess.Start(ctx).Clear()
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/destroy", func(ctx iris.Context) {
|
|
|
|
//destroy, removes the entire session data and cookie
|
|
|
|
sess.Destroy(ctx)
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Get("/update", func(ctx iris.Context) {
|
|
|
|
// updates expire date with a new date
|
|
|
|
sess.ShiftExpiration(ctx)
|
|
|
|
})
|
|
|
|
|
2017-11-02 04:50:56 +01:00
|
|
|
app.Run(iris.Addr(":8080"), iris.WithoutServerError(iris.ErrServerClosed), iris.WithoutVersionChecker)
|
2017-09-24 13:32:16 +02:00
|
|
|
}
|