50 lines
1.2 KiB
Go
50 lines
1.2 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, _ := GetHostParts(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 {
|
|
cookie, err = gc.Request.Cookie(constants.COOKIE_NAME + "-client")
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
}
|
|
|
|
return cookie.Value, nil
|
|
}
|
|
|
|
func DeleteCookie(gc *gin.Context) {
|
|
secure := true
|
|
httpOnly := true
|
|
|
|
host, _ := GetHostParts(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)
|
|
}
|