Class: Watir::Cookies

Inherits:
Object show all
Includes:
Enumerable
Defined in:
lib/watir-classic/cookies.rb

Instance Method Summary collapse

Constructor Details

#initialize(page_container) ⇒ Cookies

Returns a new instance of Cookies.



7
8
9
# File 'lib/watir-classic/cookies.rb', line 7

def initialize(page_container)
  @page_container = page_container
end

Instance Method Details

#add(name, value, options = {}) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/watir-classic/cookies.rb', line 18

def add name, value, options={}
  options = options.map do |option|
    k, v = option
    if k == :expires
      "#{k}=#{v.gmtime.strftime("%a, %d %b %Y %H:%M:%S UTC")}"
    elsif k == :secure
      "secure" if v
    else
      "#{k}=#{v}"
    end
  end.compact.join("; ")

  options = "; #{options}" unless options.empty?
  @page_container.document.cookie = "#{name}=#{value}#{options}" 
end

#clearObject



70
71
72
# File 'lib/watir-classic/cookies.rb', line 70

def clear
  each {|cookie| delete cookie[:name]}
end

#delete(name) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/watir-classic/cookies.rb', line 34

def delete name
  options = {:expires => ::Time.now - 60 * 60 * 24}
  delete_with_options name, options

  # make sure that the cookie gets deleted
  # there's got to be some easier way to do this
  uri = URI.parse(@page_container.url)
  domain = uri.host

  paths = uri.path.split("/").reduce([]) do |paths, path|
    paths << "#{paths.last}/#{path}".squeeze("/")
  end << "/"

  subdomains = domain.split(".").reverse.reduce([]) do |subdomains, part|
    subdomain = "#{part}#{subdomains.last}"
    subdomain = "." + subdomain unless subdomain == domain
    subdomains << subdomain
  end

  subdomains.each do |subdomain|
    domain_options = options.merge :domain => subdomain
    delete_with_options name, domain_options
    delete_with_options name, domain_options.merge(:secure => true)

    paths.each do |path|
      path_options = options.merge :path => path
      delete_with_options name, path_options 
      delete_with_options name, path_options.merge(:secure => true)

      path_domain_options = domain_options.merge :path => path
      delete_with_options name, path_domain_options 
      delete_with_options name, path_domain_options.merge(:secure => true)
    end
  end
end

#eachObject



11
12
13
14
15
16
# File 'lib/watir-classic/cookies.rb', line 11

def each
  @page_container.document.cookie.split(";").each do |cookie|
    name, value = cookie.strip.split("=")
    yield({:name => name, :value => value})
  end
end