Golang : How to use Gorilla webtoolkit context package properly
Many new comers to Gorilla web toolkit are confused as why they cannot pass variables to another handler with the help of context package...as if it is not working as advertised. The assumption is that ... context works like a global variables within the source code page... but it is not meant to be.
If you read the manual carefully, it is clearly stated that - "context stores values shared during a request lifetime.". To pass values to another handlers(functions) OUTSIDE the request lifetime, you need the assistance of the session package.
This code example below will demonstrate how to use context package to pass data to another handler. Provided it is within the lifetime of the request (http.Request)
Here you go!
package main
import (
"fmt"
"github.com/gorilla/context"
"github.com/gorilla/mux"
"net/http"
)
type Key string
const GlobalRequestVariable Key = ""
func SetGlobalHandler(w http.ResponseWriter, r *http.Request) {
context.Set(r, GlobalRequestVariable, "test")
// will WORK because within request lifetime
get, ok := context.GetOk(r, GlobalRequestVariable)
w.Write([]byte(fmt.Sprintf("GetOK : [%v] and get what :[%v] ", ok, get)))
// global variable still accessible as long the request is still alive
// and everything is cleared because router from gorilla/mux will
// automatically call context.Clear(r)
// and cause GetGlobalHandler to fail
// WHEN you point the browser url to example.com:8080/get
// to make it work, you have to pass r down to inside SetGlobalHandler
// while the request is still alive to InternalGetGlobalHandler
InternalGetGlobalHandler(w, r)
}
func InternalGetGlobalHandler(w http.ResponseWriter, r *http.Request) {
// will WORK because still within request lifetime
get, ok := context.GetOk(r, GlobalRequestVariable)
w.Write([]byte(fmt.Sprintf("\nInternal GetOK : [%v] and get what :[%v] ", ok, get)))
}
func GetGlobalHandler(w http.ResponseWriter, r *http.Request) {
// will FAIL because NOT within request lifetime
get, ok := context.GetOk(r, GlobalRequestVariable)
w.Write([]byte(fmt.Sprintf("GetOK : [%v] and get what :[%v] ", ok, get)))
}
func main() {
mx := mux.NewRouter()
mx.HandleFunc("/", SetGlobalHandler)
mx.HandleFunc("/get", GetGlobalHandler)
http.ListenAndServe(":8080", mx)
}
Hope this helps and happy coding!
Reference :
See also : Golang : How to feed or take banana with Gorilla Web Toolkit Session package
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
+14.2k Golang : Rename directory
+21.6k Golang : How to run Golang application such as web server in the background or as daemon?
+17.1k Golang : Parse date string and convert to dd-mm-yyyy format
+39.4k Golang : UDP client server read write example
+16.9k Golang : Get future or past hours, minutes or seconds
+8.4k Golang : Heap sort example
+17.1k Golang : How to make a file read only and set it to writable again?
+21.8k Golang : Repeat a character by multiple of x factor
+10.3k Golang : Command line file upload program to server example
+5.1k Golang : Get S3 or CloudFront object or file information
+45.3k Golang : Read tab delimited file with encoding/csv package
+26.6k Golang : Find files by name - cross platform example