
* fix: cookie host * feat: add test for url utils * fix: url test * fix: multi domain cookie if allowed
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package utils
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/authorizerdev/authorizer/server/constants"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func SetCookie(gc *gin.Context, token string) {
|
|
secure := true
|
|
httpOnly := true
|
|
host := GetHostName(constants.AUTHORIZER_URL)
|
|
domain := GetDomainName(constants.AUTHORIZER_URL)
|
|
if domain != "localhost" {
|
|
domain = "." + domain
|
|
}
|
|
|
|
gc.SetSameSite(http.SameSiteNoneMode)
|
|
gc.SetCookie(constants.COOKIE_NAME, token, 3600, "/", host, secure, httpOnly)
|
|
gc.SetCookie(constants.COOKIE_NAME+"-client", token, 3600, "/", domain, secure, httpOnly)
|
|
}
|
|
|
|
func GetCookie(gc *gin.Context) (string, error) {
|
|
cookie, err := gc.Request.Cookie(constants.COOKIE_NAME)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return cookie.Value, nil
|
|
}
|
|
|
|
func DeleteCookie(gc *gin.Context) {
|
|
secure := true
|
|
httpOnly := true
|
|
|
|
host := GetDomainName(constants.AUTHORIZER_URL)
|
|
domain := GetDomainName(constants.AUTHORIZER_URL)
|
|
if domain != "localhost" {
|
|
domain = "." + domain
|
|
}
|
|
|
|
gc.SetSameSite(http.SameSiteNoneMode)
|
|
gc.SetCookie(constants.COOKIE_NAME, "", -1, "/", host, secure, httpOnly)
|
|
gc.SetCookie(constants.COOKIE_NAME+"-client", "", -1, "/", domain, secure, httpOnly)
|
|
}
|