这里是一个 cookie-retrieve 的例子
// ParseTokenFromRequest is delegated to retrieved the token encoded in the request. The token can be sent in two different way.
// In first instance the method will try to find the token in the cookie. If the cookie is not provided in the cookie,
// then the research will continue analayzing the body of the request (URL ARGS,GET,POST).
// In case of token not found, an empty string will be returned
func ParseTokenFromRequest(ctx *fasthttp.RequestCtx) string {
token := string(ctx.Request.Header.Cookie("GoLog-Token")) // GoLog-Token is the hardcoded name of the cookie
log.Info("ParseTokenFromRequest | Checking if token is in the cookie ...")
if strings.Compare(token, "") == 0 { // No cookie provided :/ Checking in the request
log.Warn("ParseTokenFromRequest | Token is not in the cookie, retrieving from the request ...")
token = string(ctx.FormValue("token")) // Extracting the token from the request (ARGS,GET,POST)
if strings.Compare(token, "") == 0 { // No token provided in the request
log.Warn("ParseTokenFromRequest | Can not find the token! ...")
return "" // "COOKIE_NOT_PRESENT"
}
log.Info("ParseTokenFromRequest | Token found in request! ... | ", token)
} else {
log.Info("ParseTokenFromRequest | Token found in cookie! ... | ", token)
}
return token
}
这里是 cookie-set 的例子
//CreateCookie Method that return a cookie valorized as input (GoLog-Token as key)
func CreateCookie(key string, value string, expire int) *fasthttp.Cookie {
if strings.Compare(key, "") == 0 {
key = "GoLog-Token"
}
log.Debug("CreateCookie | Creating Cookie | Key: ", key, " | Val: ", value)
authCookie := fasthttp.Cookie{}
authCookie.SetKey(key)
authCookie.SetValue(value)
authCookie.SetMaxAge(expire)
authCookie.SetHTTPOnly(true)
authCookie.SetSameSite(fasthttp.CookieSameSiteLaxMode)
return &authCookie
}
authcookie := CreateCookie('','TEST_VALUE',120)
ctx.Response.Header.SetCookie(authcookie) // Set the token into the cookie headers
ctx.Response.Header.Set("GoLog-Token", token) // Set the token into a custom headers
这里是 cookie-delete 的示例
ctx.Response.Header.DelCookie("GoLog-Token")