mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
9f85b74fc9
Former-commit-id: da4f38eb9034daa49446df3ee529423b98f9b331
84 lines
2.3 KiB
Go
84 lines
2.3 KiB
Go
package sessions
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/kataras/iris/context"
|
|
)
|
|
|
|
var (
|
|
// CookieExpireDelete may be set on Cookie.Expire for expiring the given cookie.
|
|
CookieExpireDelete = time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
|
|
|
|
// CookieExpireUnlimited indicates that the cookie doesn't expire.
|
|
CookieExpireUnlimited = time.Now().AddDate(24, 10, 10)
|
|
)
|
|
|
|
// GetCookie returns cookie's value by it's name
|
|
// returns empty string if nothing was found
|
|
func GetCookie(ctx context.Context, name string) string {
|
|
c, err := ctx.Request().Cookie(name)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
return c.Value
|
|
|
|
// return ctx.GetCookie(name)
|
|
}
|
|
|
|
// AddCookie adds a cookie
|
|
func AddCookie(ctx context.Context, cookie *http.Cookie) {
|
|
// http.SetCookie(ctx.ResponseWriter(), cookie)
|
|
// ctx.Request().AddCookie(cookie)
|
|
ctx.SetCookie(cookie)
|
|
}
|
|
|
|
// RemoveCookie deletes a cookie by it's name/key
|
|
func RemoveCookie(ctx context.Context, name string) {
|
|
c, err := ctx.Request().Cookie(name)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
c.Expires = CookieExpireDelete
|
|
// MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'
|
|
c.MaxAge = -1
|
|
c.Value = ""
|
|
c.Path = "/"
|
|
AddCookie(ctx, c)
|
|
}
|
|
|
|
// IsValidCookieDomain returns true if the receiver is a valid domain to set
|
|
// valid means that is recognised as 'domain' by the browser, so it(the cookie) can be shared with subdomains also
|
|
func IsValidCookieDomain(domain string) bool {
|
|
if domain == "0.0.0.0" || domain == "127.0.0.1" {
|
|
// for these type of hosts, we can't allow subdomains persistence,
|
|
// the web browser doesn't understand the mysubdomain.0.0.0.0 and mysubdomain.127.0.0.1 mysubdomain.32.196.56.181. as scorrectly ubdomains because of the many dots
|
|
// so don't set a cookie domain here, let browser handle this
|
|
return false
|
|
}
|
|
|
|
dotLen := strings.Count(domain, ".")
|
|
if dotLen == 0 {
|
|
// we don't have a domain, maybe something like 'localhost', browser doesn't see the .localhost as wildcard subdomain+domain
|
|
return false
|
|
}
|
|
if dotLen >= 3 {
|
|
if lastDotIdx := strings.LastIndexByte(domain, '.'); lastDotIdx != -1 {
|
|
// chekc the last part, if it's number then propably it's ip
|
|
if len(domain) > lastDotIdx+1 {
|
|
_, err := strconv.Atoi(domain[lastDotIdx+1:])
|
|
if err == nil {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|