This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
forgejo/vendor/github.com/lafriks/xormstore
2019-10-17 11:26:49 +02:00
..
util
.gitignore
.travis.yml
go.mod Upgrade xorm to v0.8.0 (#8536) 2019-10-17 11:26:49 +02:00
go.sum Upgrade xorm to v0.8.0 (#8536) 2019-10-17 11:26:49 +02:00
LICENSE
README.md
test
xormstore.go Upgrade xorm to v0.8.0 (#8536) 2019-10-17 11:26:49 +02:00

GoDoc Build Status codecov

XORM backend for gorilla sessions

go get github.com/lafriks/xormstore

Example

// initialize and setup cleanup
store := xormstore.New(engine, []byte("secret"))
// db cleanup every hour
// close quit channel to stop cleanup
quit := make(chan struct{})
go store.PeriodicCleanup(1*time.Hour, quit)
// in HTTP handler
func handlerFunc(w http.ResponseWriter, r *http.Request) {
  session, err := store.Get(r, "session")
  session.Values["user_id"] = 123
  store.Save(r, w, session)
  http.Error(w, "", http.StatusOK)
}

For more details see xormstore godoc documentation.

Testing

Just sqlite3 tests:

go test

All databases using docker:

./test

If docker is not local (docker-machine etc):

DOCKER_IP=$(docker-machine ip dev) ./test

License

xormstore is licensed under the MIT license. See LICENSE for the full license text.