2013-04-05 15:50:53 +00:00
|
|
|
package session
|
|
|
|
|
|
|
|
import (
|
2013-09-26 10:07:00 +00:00
|
|
|
"crypto/hmac"
|
|
|
|
"crypto/md5"
|
2013-04-05 15:50:53 +00:00
|
|
|
"crypto/rand"
|
2013-09-26 10:07:00 +00:00
|
|
|
"crypto/sha1"
|
2013-04-05 15:50:53 +00:00
|
|
|
"encoding/base64"
|
2013-09-26 10:07:00 +00:00
|
|
|
"encoding/hex"
|
2013-04-05 15:50:53 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SessionStore interface {
|
|
|
|
Set(key, value interface{}) error //set session value
|
|
|
|
Get(key interface{}) interface{} //get session value
|
|
|
|
Delete(key interface{}) error //delete session value
|
|
|
|
SessionID() string //back current sessionID
|
|
|
|
SessionRelease() // release the resource
|
2013-09-26 10:07:00 +00:00
|
|
|
Flush() error //delete all data
|
2013-04-05 15:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Provider interface {
|
|
|
|
SessionInit(maxlifetime int64, savePath string) error
|
|
|
|
SessionRead(sid string) (SessionStore, error)
|
2013-09-26 10:07:00 +00:00
|
|
|
SessionRegenerate(oldsid, sid string) (SessionStore, error)
|
2013-04-05 15:50:53 +00:00
|
|
|
SessionDestroy(sid string) error
|
|
|
|
SessionGC()
|
|
|
|
}
|
|
|
|
|
|
|
|
var provides = make(map[string]Provider)
|
|
|
|
|
|
|
|
// Register makes a session provide available by the provided name.
|
|
|
|
// If Register is called twice with the same name or if driver is nil,
|
|
|
|
// it panics.
|
|
|
|
func Register(name string, provide Provider) {
|
|
|
|
if provide == nil {
|
|
|
|
panic("session: Register provide is nil")
|
|
|
|
}
|
|
|
|
if _, dup := provides[name]; dup {
|
|
|
|
panic("session: Register called twice for provider " + name)
|
|
|
|
}
|
|
|
|
provides[name] = provide
|
|
|
|
}
|
|
|
|
|
|
|
|
type Manager struct {
|
|
|
|
cookieName string //private cookiename
|
|
|
|
provider Provider
|
|
|
|
maxlifetime int64
|
2013-09-26 10:07:00 +00:00
|
|
|
hashfunc string //support md5 & sha1
|
|
|
|
hashkey string
|
2013-09-25 14:54:07 +00:00
|
|
|
options []interface{}
|
2013-04-05 15:50:53 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 10:07:00 +00:00
|
|
|
//options
|
|
|
|
//1. is https default false
|
|
|
|
//2. hashfunc default sha1
|
|
|
|
//3. hashkey default beegosessionkey
|
|
|
|
//4. maxage default is none
|
2013-09-25 14:54:07 +00:00
|
|
|
func NewManager(provideName, cookieName string, maxlifetime int64, savePath string, options ...interface{}) (*Manager, error) {
|
2013-04-05 15:50:53 +00:00
|
|
|
provider, ok := provides[provideName]
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("session: unknown provide %q (forgotten import?)", provideName)
|
|
|
|
}
|
|
|
|
provider.SessionInit(maxlifetime, savePath)
|
2013-09-26 10:07:00 +00:00
|
|
|
hashfunc := "sha1"
|
|
|
|
if len(options) > 1 {
|
|
|
|
hashfunc = options[1].(string)
|
|
|
|
}
|
|
|
|
hashkey := "beegosessionkey"
|
|
|
|
if len(options) > 2 {
|
|
|
|
hashkey = options[2].(string)
|
|
|
|
}
|
|
|
|
return &Manager{
|
|
|
|
provider: provider,
|
|
|
|
cookieName: cookieName,
|
|
|
|
maxlifetime: maxlifetime,
|
|
|
|
hashfunc: hashfunc,
|
|
|
|
hashkey: hashkey,
|
|
|
|
options: options,
|
|
|
|
}, nil
|
2013-04-05 15:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//get Session
|
|
|
|
func (manager *Manager) SessionStart(w http.ResponseWriter, r *http.Request) (session SessionStore) {
|
|
|
|
cookie, err := r.Cookie(manager.cookieName)
|
2013-09-26 10:07:00 +00:00
|
|
|
maxage := -1
|
|
|
|
if len(manager.options) > 3 {
|
|
|
|
switch manager.options[3].(type) {
|
|
|
|
case int:
|
|
|
|
if manager.options[3].(int) > 0 {
|
|
|
|
maxage = manager.options[3].(int)
|
|
|
|
} else if manager.options[3].(int) < 0 {
|
|
|
|
maxage = 0
|
|
|
|
}
|
|
|
|
case int64:
|
|
|
|
if manager.options[3].(int64) > 0 {
|
|
|
|
maxage = int(manager.options[3].(int64))
|
|
|
|
} else if manager.options[3].(int64) < 0 {
|
|
|
|
maxage = 0
|
|
|
|
}
|
|
|
|
case int32:
|
|
|
|
if manager.options[3].(int32) > 0 {
|
|
|
|
maxage = int(manager.options[3].(int32))
|
|
|
|
} else if manager.options[3].(int32) < 0 {
|
|
|
|
maxage = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-05 15:50:53 +00:00
|
|
|
if err != nil || cookie.Value == "" {
|
2013-09-26 10:07:00 +00:00
|
|
|
sid := manager.sessionId(r)
|
2013-04-05 15:50:53 +00:00
|
|
|
session, _ = manager.provider.SessionRead(sid)
|
2013-09-25 14:54:07 +00:00
|
|
|
secure := false
|
|
|
|
if len(manager.options) > 0 {
|
|
|
|
secure = manager.options[0].(bool)
|
|
|
|
}
|
2013-09-26 10:07:00 +00:00
|
|
|
cookie = &http.Cookie{Name: manager.cookieName,
|
2013-04-08 04:50:11 +00:00
|
|
|
Value: url.QueryEscape(sid),
|
|
|
|
Path: "/",
|
|
|
|
HttpOnly: true,
|
2013-09-25 14:54:07 +00:00
|
|
|
Secure: secure}
|
2013-09-26 10:07:00 +00:00
|
|
|
if maxage >= 0 {
|
|
|
|
cookie.MaxAge = maxage
|
|
|
|
}
|
2013-06-25 15:08:47 +00:00
|
|
|
//cookie.Expires = time.Now().Add(time.Duration(manager.maxlifetime) * time.Second)
|
2013-09-26 10:07:00 +00:00
|
|
|
http.SetCookie(w, cookie)
|
|
|
|
r.AddCookie(cookie)
|
2013-04-05 15:50:53 +00:00
|
|
|
} else {
|
2013-06-25 15:08:47 +00:00
|
|
|
//cookie.Expires = time.Now().Add(time.Duration(manager.maxlifetime) * time.Second)
|
2013-05-08 03:07:55 +00:00
|
|
|
cookie.HttpOnly = true
|
|
|
|
cookie.Path = "/"
|
2013-09-26 10:07:00 +00:00
|
|
|
if maxage >= 0 {
|
|
|
|
cookie.MaxAge = maxage
|
|
|
|
}
|
2013-04-08 04:50:11 +00:00
|
|
|
http.SetCookie(w, cookie)
|
2013-04-05 15:50:53 +00:00
|
|
|
sid, _ := url.QueryUnescape(cookie.Value)
|
|
|
|
session, _ = manager.provider.SessionRead(sid)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
//Destroy sessionid
|
|
|
|
func (manager *Manager) SessionDestroy(w http.ResponseWriter, r *http.Request) {
|
|
|
|
cookie, err := r.Cookie(manager.cookieName)
|
|
|
|
if err != nil || cookie.Value == "" {
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
manager.provider.SessionDestroy(cookie.Value)
|
|
|
|
expiration := time.Now()
|
|
|
|
cookie := http.Cookie{Name: manager.cookieName, Path: "/", HttpOnly: true, Expires: expiration, MaxAge: -1}
|
|
|
|
http.SetCookie(w, &cookie)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (manager *Manager) GC() {
|
|
|
|
manager.provider.SessionGC()
|
|
|
|
time.AfterFunc(time.Duration(manager.maxlifetime)*time.Second, func() { manager.GC() })
|
|
|
|
}
|
|
|
|
|
2013-09-26 10:07:00 +00:00
|
|
|
func (manager *Manager) SessionRegenerateId(w http.ResponseWriter, r *http.Request) (session SessionStore) {
|
|
|
|
sid := manager.sessionId(r)
|
|
|
|
cookie, err := r.Cookie(manager.cookieName)
|
|
|
|
if err != nil && cookie.Value == "" {
|
|
|
|
//delete old cookie
|
|
|
|
session, _ = manager.provider.SessionRead(sid)
|
|
|
|
secure := false
|
|
|
|
if len(manager.options) > 0 {
|
|
|
|
secure = manager.options[0].(bool)
|
|
|
|
}
|
|
|
|
cookie = &http.Cookie{Name: manager.cookieName,
|
|
|
|
Value: url.QueryEscape(sid),
|
|
|
|
Path: "/",
|
|
|
|
HttpOnly: true,
|
|
|
|
Secure: secure,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
oldsid, _ := url.QueryUnescape(cookie.Value)
|
|
|
|
session, _ = manager.provider.SessionRegenerate(oldsid, sid)
|
|
|
|
cookie.Value = url.QueryEscape(sid)
|
|
|
|
cookie.HttpOnly = true
|
|
|
|
cookie.Path = "/"
|
|
|
|
}
|
|
|
|
maxage := -1
|
|
|
|
if len(manager.options) > 3 {
|
|
|
|
switch manager.options[3].(type) {
|
|
|
|
case int:
|
|
|
|
if manager.options[3].(int) > 0 {
|
|
|
|
maxage = manager.options[3].(int)
|
|
|
|
} else if manager.options[3].(int) < 0 {
|
|
|
|
maxage = 0
|
|
|
|
}
|
|
|
|
case int64:
|
|
|
|
if manager.options[3].(int64) > 0 {
|
|
|
|
maxage = int(manager.options[3].(int64))
|
|
|
|
} else if manager.options[3].(int64) < 0 {
|
|
|
|
maxage = 0
|
|
|
|
}
|
|
|
|
case int32:
|
|
|
|
if manager.options[3].(int32) > 0 {
|
|
|
|
maxage = int(manager.options[3].(int32))
|
|
|
|
} else if manager.options[3].(int32) < 0 {
|
|
|
|
maxage = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if maxage >= 0 {
|
|
|
|
cookie.MaxAge = maxage
|
|
|
|
}
|
|
|
|
http.SetCookie(w, cookie)
|
|
|
|
r.AddCookie(cookie)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
//remote_addr cruunixnano randdata
|
|
|
|
|
|
|
|
func (manager *Manager) sessionId(r *http.Request) (sid string) {
|
2013-04-05 15:50:53 +00:00
|
|
|
b := make([]byte, 24)
|
|
|
|
if _, err := io.ReadFull(rand.Reader, b); err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
2013-09-26 10:07:00 +00:00
|
|
|
bs := base64.URLEncoding.EncodeToString(b)
|
|
|
|
sig := fmt.Sprintf("%s%d%s", r.RemoteAddr, time.Now().UnixNano(), bs)
|
|
|
|
if manager.hashfunc == "md5" {
|
|
|
|
h := md5.New()
|
|
|
|
h.Write([]byte(bs))
|
|
|
|
sid = fmt.Sprintf("%s", hex.EncodeToString(h.Sum(nil)))
|
|
|
|
} else if manager.hashfunc == "sha1" {
|
|
|
|
h := hmac.New(sha1.New, []byte(manager.hashkey))
|
|
|
|
fmt.Fprintf(h, "%s", sig)
|
|
|
|
sid = fmt.Sprintf("%s", hex.EncodeToString(h.Sum(nil)))
|
|
|
|
} else {
|
|
|
|
h := hmac.New(sha1.New, []byte(manager.hashkey))
|
|
|
|
fmt.Fprintf(h, "%s", sig)
|
|
|
|
sid = fmt.Sprintf("%s", hex.EncodeToString(h.Sum(nil)))
|
|
|
|
}
|
|
|
|
return
|
2013-04-05 15:50:53 +00:00
|
|
|
}
|