2016-11-28 07:36:47 -05:00
|
|
|
# frozen_string_literal: true
|
2017-05-01 20:14:47 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: subscriptions
|
|
|
|
#
|
2018-04-23 05:29:17 -04:00
|
|
|
# id :bigint(8) not null, primary key
|
2017-05-01 20:14:47 -04:00
|
|
|
# callback_url :string default(""), not null
|
|
|
|
# secret :string
|
|
|
|
# expires_at :datetime
|
|
|
|
# confirmed :boolean default(FALSE), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# last_successful_delivery_at :datetime
|
2017-07-14 17:01:20 -04:00
|
|
|
# domain :string
|
2018-04-23 05:29:17 -04:00
|
|
|
# account_id :bigint(8) not null
|
2017-05-01 20:14:47 -04:00
|
|
|
#
|
2016-11-28 07:36:47 -05:00
|
|
|
|
|
|
|
class Subscription < ApplicationRecord
|
2017-07-14 14:41:49 -04:00
|
|
|
MIN_EXPIRATION = 1.day.to_i
|
|
|
|
MAX_EXPIRATION = 30.days.to_i
|
2016-11-28 07:36:47 -05:00
|
|
|
|
2018-01-19 14:56:47 -05:00
|
|
|
belongs_to :account
|
2016-11-28 07:36:47 -05:00
|
|
|
|
|
|
|
validates :callback_url, presence: true
|
|
|
|
validates :callback_url, uniqueness: { scope: :account_id }
|
|
|
|
|
2017-05-05 14:56:00 -04:00
|
|
|
scope :confirmed, -> { where(confirmed: true) }
|
|
|
|
scope :future_expiration, -> { where(arel_table[:expires_at].gt(Time.now.utc)) }
|
2017-08-21 16:56:33 -04:00
|
|
|
scope :expired, -> { where(arel_table[:expires_at].lt(Time.now.utc)) }
|
2017-05-05 14:56:00 -04:00
|
|
|
scope :active, -> { confirmed.future_expiration }
|
2016-11-28 07:36:47 -05:00
|
|
|
|
2017-05-05 14:56:00 -04:00
|
|
|
def lease_seconds=(value)
|
|
|
|
self.expires_at = future_expiration(value)
|
2016-11-28 07:36:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def lease_seconds
|
|
|
|
(expires_at - Time.now.utc).to_i
|
|
|
|
end
|
|
|
|
|
2017-05-02 12:21:22 -04:00
|
|
|
def expired?
|
|
|
|
Time.now.utc > expires_at
|
|
|
|
end
|
|
|
|
|
2016-11-28 07:36:47 -05:00
|
|
|
before_validation :set_min_expiration
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-05 14:56:00 -04:00
|
|
|
def future_expiration(value)
|
|
|
|
Time.now.utc + future_offset(value).seconds
|
|
|
|
end
|
|
|
|
|
|
|
|
def future_offset(seconds)
|
|
|
|
[
|
|
|
|
[MIN_EXPIRATION, seconds.to_i].max,
|
|
|
|
MAX_EXPIRATION,
|
|
|
|
].min
|
|
|
|
end
|
|
|
|
|
2016-11-28 07:36:47 -05:00
|
|
|
def set_min_expiration
|
|
|
|
self.lease_seconds = 0 unless expires_at
|
|
|
|
end
|
|
|
|
end
|