Class: SecureHeaders::Cookie

Inherits:
Object
  • Object
show all
Defined in:
lib/secure_headers/headers/cookie.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cookie, config) ⇒ Cookie

Returns a new instance of Cookie.



16
17
18
19
20
21
22
23
24
25
26
# File 'lib/secure_headers/headers/cookie.rb', line 16

def initialize(cookie, config)
  @raw_cookie = cookie
  @config = config
  @attributes = {
    httponly: nil,
    samesite: nil,
    secure: nil,
  }

  parse(cookie)
end

Instance Attribute Details

#configObject (readonly)

Returns the value of attribute config.



14
15
16
# File 'lib/secure_headers/headers/cookie.rb', line 14

def config
  @config
end

Returns the value of attribute raw_cookie.



14
15
16
# File 'lib/secure_headers/headers/cookie.rb', line 14

def raw_cookie
  @raw_cookie
end

Class Method Details

.validate_config!(config) ⇒ Object



9
10
11
# File 'lib/secure_headers/headers/cookie.rb', line 9

def validate_config!(config)
  CookiesConfig.new(config).validate!
end

Instance Method Details

#httponly?Boolean

Returns:

  • (Boolean)


40
41
42
# File 'lib/secure_headers/headers/cookie.rb', line 40

def httponly?
  flag_cookie?(:httponly) && !already_flagged?(:httponly)
end

#samesite?Boolean

Returns:

  • (Boolean)


44
45
46
# File 'lib/secure_headers/headers/cookie.rb', line 44

def samesite?
  flag_samesite? && !already_flagged?(:samesite)
end

#secure?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/secure_headers/headers/cookie.rb', line 36

def secure?
  flag_cookie?(:secure) && !already_flagged?(:secure)
end

#to_sObject



28
29
30
31
32
33
34
# File 'lib/secure_headers/headers/cookie.rb', line 28

def to_s
  @raw_cookie.dup.tap do |c|
    c << "; secure" if secure?
    c << "; HttpOnly" if httponly?
    c << "; #{samesite_cookie}" if samesite?
  end
end