Class: SimpleCaptcha::SimpleCaptchaData

Inherits:
Object
  • Object
show all
Includes:
Mongoid::Document
Defined in:
lib/simple_captcha/simple_captcha_data.rb

Class Method Summary collapse

Class Method Details

.clear_old_data(time = 1.hour.ago) ⇒ Object



18
19
20
21
# File 'lib/simple_captcha/simple_captcha_data.rb', line 18

def clear_old_data(time = 1.hour.ago)
  return unless Time === time
  SimpleCaptchaData.where(:updated_at.lt => time).delete_all
end

.get_data(key) ⇒ Object



9
10
11
# File 'lib/simple_captcha/simple_captcha_data.rb', line 9

def get_data(key)
  data = SimpleCaptchaData.where(:key => key).first || new(:key => key)
end

.remove_data(key) ⇒ Object



13
14
15
16
# File 'lib/simple_captcha/simple_captcha_data.rb', line 13

def remove_data(key)
  SimpleCaptchaData.where(:key => key).first.delete
  clear_old_data(1.hour.ago)
end