aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gorilla/csrf/context_legacy.go
blob: dabf0a6cd9728afbb2c07491be4d6130549c13b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// +build !go1.7

package csrf

import (
	"net/http"

	"github.com/gorilla/context"

	"github.com/pkg/errors"
)

func contextGet(r *http.Request, key string) (interface{}, error) {
	if val, ok := context.GetOk(r, key); ok {
		return val, nil
	}

	return nil, errors.Errorf("no value exists in the context for key %q", key)
}

func contextSave(r *http.Request, key string, val interface{}) *http.Request {
	context.Set(r, key, val)
	return r
}