Rename sessionID to sid
This commit is contained in:
parent
f33a44bb1f
commit
0896799a25
@ -15,7 +15,7 @@ type (
|
||||
request struct {
|
||||
r *http.Request
|
||||
w http.ResponseWriter
|
||||
sessionID string
|
||||
sid string
|
||||
login string
|
||||
}
|
||||
statRequest struct {
|
||||
@ -33,14 +33,14 @@ func parseRequest(w http.ResponseWriter, r *http.Request) (*request, *statReques
|
||||
req := &request{
|
||||
r: r,
|
||||
w: w,
|
||||
sessionID: sid,
|
||||
sid: sid,
|
||||
login: login,
|
||||
}
|
||||
return req, parseStatRequest(r)
|
||||
}
|
||||
|
||||
func (r *request) authorize(login string) {
|
||||
redisPool.Get().Do("HSET", "sessions", r.sessionID, login)
|
||||
redisPool.Get().Do("HSET", "sessions", r.sid, login)
|
||||
}
|
||||
|
||||
func (r *request) respondWith(resp interface{}) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user