|
6 years ago | |
---|---|---|
session | 6 years ago | |
tmp | 6 years ago | |
.gitignore | 6 years ago | |
LICENSE | 6 years ago | |
Makefile | 6 years ago | |
README.md | 6 years ago | |
go.mod | 6 years ago | |
main.go | 6 years ago |
Sessions for http server based on files and cookies
go get github.com/vladimirok5959/golang-server-sessions
package main
import (
"fmt"
"net/http"
"github.com/vladimirok5959/golang-server-sessions/session"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
// Init session
sess := session.New(w, r, "./tmp")
defer sess.Close()
if r.URL.Path == "/" {
var counter int
// Get value or set default
if sess.IsSetInt("counter") {
counter = sess.GetInt("counter", 0)
} else {
counter = 0
}
// Increment value
counter++
// Update
sess.SetInt("counter", counter)
w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
w.Header().Set("Content-Type", "text/html")
w.Write([]byte(`
<div>Hello World!</div>
<div>Counter: ` + fmt.Sprintf("%d", counter) + `</div>
`))
} else {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte(`<div>Error 404!</div>`))
}
})
// Delete expired session files
session.Clean("./tmp")
http.ListenAndServe(":8080", nil)
}