Class: OpenIdAuthentication::DbStore

Inherits:
OpenID::Store::Interface
  • Object
show all
Defined in:
lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb

Overview

Since:

  • 2.0.0

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.cleanup_associationsObject



10
11
12
13
# File 'lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb', line 10

def self.cleanup_associations
  now = Time.now.to_i
  Association.delete_all(['issued + lifetime > ?',now])
end

.cleanup_noncesObject



5
6
7
8
# File 'lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb', line 5

def self.cleanup_nonces
  now = Time.now.to_i
  Nonce.delete_all(["timestamp > ? OR timestamp < ?", now + OpenID::Nonce.skew, now - OpenID::Nonce.skew])
end

Instance Method Details

#get_association(server_url, handle = nil) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb', line 25

def get_association(server_url, handle = nil)
  assocs = if handle.blank?
      Association.find_all_by_server_url(server_url)
    else
      Association.find_all_by_server_url_and_handle(server_url, handle)
    end

  assocs.reverse.each do |assoc|
    a = assoc.from_record
    if a.expires_in == 0
      assoc.destroy
    else
      return a
    end
  end if assocs.any?

  return nil
end

#remove_association(server_url, handle) ⇒ Object



44
45
46
# File 'lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb', line 44

def remove_association(server_url, handle)
  Association.delete_all(['server_url = ? AND handle = ?', server_url, handle]) > 0
end

#store_association(server_url, assoc) ⇒ Object



15
16
17
18
19
20
21
22
23
# File 'lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb', line 15

def store_association(server_url, assoc)
  remove_association(server_url, assoc.handle)
  Association.create(:server_url => server_url,
                     :handle     => assoc.handle,
                     :secret     => assoc.secret,
                     :issued     => assoc.issued,
                     :lifetime   => assoc.lifetime,
                     :assoc_type => assoc.assoc_type)
end

#use_nonce(server_url, timestamp, salt) ⇒ Object



48
49
50
51
52
53
# File 'lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb', line 48

def use_nonce(server_url, timestamp, salt)
  return false if Nonce.find_by_server_url_and_timestamp_and_salt(server_url, timestamp, salt)
  return false if (timestamp - Time.now.to_i).abs > OpenID::Nonce.skew
  Nonce.create(:server_url => server_url, :timestamp => timestamp, :salt => salt)
  return true
end