blob: fe069adf4e8be490c254e301fe53a9dfc9dbddd5 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
package http
import (
"context"
"net/http"
)
const contextKey = "psr:attributes"
type attrs map[string]interface{}
// InitAttributes returns request with new context and attribute bag.
func InitAttributes(r *http.Request) *http.Request {
return r.WithContext(context.WithValue(r.Context(), contextKey, attrs{}))
}
// AllAttributes returns all context attributes.
func AllAttributes(r *http.Request) map[string]interface{} {
v := r.Context().Value(contextKey)
if v == nil {
return nil
}
return v.(attrs)
}
// Get gets the value from request context. It replaces any existing
// values.
func GetAttribute(r *http.Request, key string) interface{} {
v := r.Context().Value(contextKey)
if v == nil {
return ""
}
return v.(attrs).Get(key)
}
// Set sets the key to value. It replaces any existing
// values. Context specific.
func SetAttribute(r *http.Request, key string, value interface{}) {
v := r.Context().Value(contextKey)
v.(attrs).Set(key, value)
}
// Get gets the value associated with the given key.
func (v attrs) Get(key string) interface{} {
if v == nil {
return ""
}
return v[key]
}
// Set sets the key to value. It replaces any existing
// values.
func (v attrs) Set(key string, value interface{}) {
v[key] = value
}
// Del deletes the value associated with key.
func (v attrs) Del(key string) {
delete(v, key)
}
|