2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
module Expirable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
DAYS_TO_EXPIRE = 7
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
included do
|
|
|
|
scope :expired, -> { where('expires_at <= ?', Time.current) }
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def expired?
|
|
|
|
expires? && expires_at <= Time.current
|
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
def expires?
|
|
|
|
expires_at.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def expires_soon?
|
2020-01-01 13:55:28 +05:30
|
|
|
expires? && expires_at < DAYS_TO_EXPIRE.days.from_now
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
end
|