Mirror

Vova Tkach 2a33d29265 Optimization 6 years ago
session 2a33d29265 Optimization 6 years ago
tmp ff59f89f6a Initial commit 6 years ago
.gitignore ff59f89f6a Initial commit 6 years ago
LICENSE 02feefb9cd Initial commit 6 years ago
Makefile 4134606e58 Version++ 6 years ago
README.md c6d341a14a Update README.md 6 years ago
go.mod 776f46c581 Session files lifetime--, go mod 6 years ago
main.go 776f46c581 Session files lifetime--, go mod 6 years ago

README.md

golang-server-sessions

Sessions for http server based on files and cookies

How to use

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)
}