You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea-fork-majority-judgment/vendor/github.com/lafriks/xormstore
6543 fe628d8406
Vendor Update (#14696)
3 years ago
..
util Store OAuth2 session data in database (#3660) 6 years ago
.gitignore Use Go1.11 module (#5743) 5 years ago
.travis.yml Update to xorm@v0.7.4 (#7596) 5 years ago
LICENSE Store OAuth2 session data in database (#3660) 6 years ago
README.md Use Go1.11 module (#5743) 5 years ago
go.mod Vendor Update (#14696) 3 years ago
go.sum Vendor Update (#14696) 3 years ago
test Use Go1.11 module (#5743) 5 years ago
xormstore.go Upgrade xorm to v0.8.0 (#8536) 5 years ago

README.md

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.