Class: SecureHeaders::Cookie
- Inherits:
-
Object
- Object
- SecureHeaders::Cookie
- Defined in:
- lib/secure_headers/headers/cookie.rb
Constant Summary collapse
- COOKIE_DEFAULTS =
{ httponly: true, secure: true, samesite: { lax: true }, }.freeze
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
-
#raw_cookie ⇒ Object
readonly
Returns the value of attribute raw_cookie.
Class Method Summary collapse
Instance Method Summary collapse
- #httponly? ⇒ Boolean
-
#initialize(cookie, config) ⇒ Cookie
constructor
A new instance of Cookie.
- #samesite? ⇒ Boolean
- #secure? ⇒ Boolean
- #to_s ⇒ Object
Constructor Details
#initialize(cookie, config) ⇒ Cookie
Returns a new instance of Cookie.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/secure_headers/headers/cookie.rb', line 22 def initialize(, config) = unless config == OPT_OUT config ||= {} config = COOKIE_DEFAULTS.merge(config) end @config = config @attributes = { httponly: nil, samesite: nil, secure: nil, } parse() end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
14 15 16 |
# File 'lib/secure_headers/headers/cookie.rb', line 14 def config @config end |
#raw_cookie ⇒ Object (readonly)
Returns the value of attribute raw_cookie.
14 15 16 |
# File 'lib/secure_headers/headers/cookie.rb', line 14 def end |
Class Method Details
.validate_config!(config) ⇒ Object
10 11 12 |
# File 'lib/secure_headers/headers/cookie.rb', line 10 def self.validate_config!(config) CookiesConfig.new(config).validate! end |
Instance Method Details
#httponly? ⇒ Boolean
50 51 52 |
# File 'lib/secure_headers/headers/cookie.rb', line 50 def httponly? (:httponly) && !already_flagged?(:httponly) end |
#samesite? ⇒ Boolean
54 55 56 |
# File 'lib/secure_headers/headers/cookie.rb', line 54 def samesite? flag_samesite? && !already_flagged?(:samesite) end |
#secure? ⇒ Boolean
46 47 48 |
# File 'lib/secure_headers/headers/cookie.rb', line 46 def secure? (:secure) && !already_flagged?(:secure) end |
#to_s ⇒ Object
38 39 40 41 42 43 44 |
# File 'lib/secure_headers/headers/cookie.rb', line 38 def to_s .dup.tap do |c| c << "; secure" if secure? c << "; HttpOnly" if httponly? c << "; #{samesite_cookie}" if samesite? end end |