gf/net/ghttp/ghttp_server_config_cookie.go

65 lines
1.5 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
2018-09-14 13:02:13 +08:00
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
2018-09-14 13:02:13 +08:00
package ghttp
import (
2022-01-05 14:33:20 +08:00
"net/http"
"time"
2018-09-14 13:02:13 +08:00
)
2020-05-01 03:31:04 +08:00
// SetCookieMaxAge sets the CookieMaxAge for server.
func (s *Server) SetCookieMaxAge(ttl time.Duration) {
s.config.CookieMaxAge = ttl
2018-09-14 13:02:13 +08:00
}
2020-05-01 03:31:04 +08:00
// SetCookiePath sets the CookiePath for server.
2019-06-19 09:06:52 +08:00
func (s *Server) SetCookiePath(path string) {
s.config.CookiePath = path
2018-09-14 13:02:13 +08:00
}
2020-05-01 03:31:04 +08:00
// SetCookieDomain sets the CookieDomain for server.
2019-06-19 09:06:52 +08:00
func (s *Server) SetCookieDomain(domain string) {
s.config.CookieDomain = domain
2018-09-14 13:02:13 +08:00
}
2022-03-19 17:58:21 +08:00
// GetCookieMaxAge returns the CookieMaxAge of the server.
func (s *Server) GetCookieMaxAge() time.Duration {
2019-06-19 09:06:52 +08:00
return s.config.CookieMaxAge
2018-09-14 13:02:13 +08:00
}
2020-05-01 03:31:04 +08:00
// GetCookiePath returns the CookiePath of server.
2019-06-19 09:06:52 +08:00
func (s *Server) GetCookiePath() string {
return s.config.CookiePath
2018-09-14 13:02:13 +08:00
}
2020-05-01 03:31:04 +08:00
// GetCookieDomain returns CookieDomain of server.
2019-06-19 09:06:52 +08:00
func (s *Server) GetCookieDomain() string {
return s.config.CookieDomain
2018-09-14 13:02:13 +08:00
}
2022-01-05 14:33:20 +08:00
// GetCookieSameSite return CookieSameSite of server.
func (s *Server) GetCookieSameSite() http.SameSite {
switch s.config.CookieSameSite {
case "lax":
return http.SameSiteLaxMode
case "none":
return http.SameSiteNoneMode
case "strict":
return http.SameSiteStrictMode
default:
return http.SameSiteDefaultMode
}
}
func (s *Server) GetCookieSecure() bool {
return s.config.CookieSecure
}
func (s *Server) GetCookieHttpOnly() bool {
return s.config.CookieHttpOnly
}