Golang : How to feed or take banana with Gorilla Web Toolkit Session package
From previous tutorial on context package, we learn that in order to pass data to other handlers outside the lifetime of the http.Request, we need to use Gorilla's session package.
The following code example demonstrate how to pass variables from one handler to another handler with the session package.
NOTE : In order to use the session package correctly, you need to first initialize session's Options
at the init()
function and also remember to process your session data FIRST before writing anything to the client(web browser).
Here you go!
package main
import (
"fmt"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
"net/http"
)
var encryptionkey = "something-very-secret"
var store = sessions.NewCookieStore([]byte(encryptionkey))
func init() {
store.Options = &sessions.Options{
// change domain to match your machine. Can be localhost
Domain: "example.com",
Path: "/",
MaxAge: 3600 * 3, // 3 hours
HttpOnly: true,
}
}
func SetSessionHandler(w http.ResponseWriter, r *http.Request) {
// IMPORTANT! Do not writer anything to client first
// otherwise, your session data will be blank.
//w.Write([]byte(fmt.Sprintf("Setting session...")))
session, _ := store.Get(r, "your-session-name")
// set some session values.
session.Values["banana"] = "yes"
session.Values[108] = 801
session.Values["username"] = "extract from twitter"
// Save
err := session.Save(r, w)
if err != nil {
fmt.Println("Session not saved!", err)
w.Write([]byte(fmt.Sprintln("Setting not saved! ", err)))
}
// ONLY write to client after session is read.
w.Write([]byte(fmt.Sprintf("Setting session...")))
}
func GetSessionHandler(w http.ResponseWriter, r *http.Request) {
// IMPORTANT! Do not writer anything to client first
// otherwise, your session data will be blank.
//w.Write([]byte(fmt.Sprintf("Getting session...")))
// reading session values - without adding it to registry
session, err := store.New(r, "your-session-name")
if err != nil {
fmt.Println("Unable to retrieve session!", err)
w.Write([]byte(fmt.Sprintln("Unable to retrieve session! ", err)))
}
fmt.Println("Session name is : ", session.Name())
fmt.Println("Session values from SetSessionHandler...")
for k, v := range session.Values {
fmt.Printf("Key : [%v] Values : [%v]\n", k, v)
}
// ONLY write to client after session is read.
w.Write([]byte(fmt.Sprintf("Getting session...")))
}
func main() {
mx := mux.NewRouter()
mx.HandleFunc("/", SetSessionHandler)
mx.HandleFunc("/get", GetSessionHandler)
http.ListenAndServe(":8080", mx)
}
References :
http://www.gorillatoolkit.org/pkg/sessions#Options
See also : Golang : How to use Gorilla webtoolkit context package properly
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+29.1k Golang : Get first few and last few characters from string
+6.1k Golang : Create new color from command line parameters
+17.1k Golang : Fix cannot convert buffer (type *bytes.Buffer) to type string error
+20.9k Golang : Convert date string to variants of time.Time type examples
+13k Swift : Convert (cast) Int to String ?
+8.3k Golang : Qt splash screen with delay example
+5.4k Golang : How to deal with configuration data?
+12.1k Golang : Decompress zlib file example
+24.6k Golang : GORM read from database example
+17k Golang : Set up source IP address before making HTTP request
+25.4k Golang : Get current file path of a file or executable
+8.9k Golang : HTTP Routing with Goji example