2016-11-28 04:36:47 -08:00
|
|
|
# frozen_string_literal: true
|
2017-05-01 17:14:47 -07:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: subscriptions
|
|
|
|
#
|
2017-11-17 15:16:48 -08:00
|
|
|
# id :integer not null, primary key
|
2017-05-01 17:14:47 -07: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 14:01:20 -07:00
|
|
|
# domain :string
|
2017-11-17 15:16:48 -08:00
|
|
|
# account_id :integer not null
|
2017-05-01 17:14:47 -07:00
|
|
|
#
|
2016-11-28 04:36:47 -08:00
|
|
|
|
|
|
|
class Subscription < ApplicationRecord
|
2017-07-14 11:41:49 -07:00
|
|
|
MIN_EXPIRATION = 1.day.to_i
|
|
|
|
MAX_EXPIRATION = 30.days.to_i
|
2016-11-28 04:36:47 -08:00
|
|
|
|
2017-04-17 06:54:33 -07:00
|
|
|
belongs_to :account, required: true
|
2016-11-28 04:36:47 -08:00
|
|
|
|
|
|
|
validates :callback_url, presence: true
|
|
|
|
validates :callback_url, uniqueness: { scope: :account_id }
|
|
|
|
|
2017-05-05 11:56:00 -07:00
|
|
|
scope :confirmed, -> { where(confirmed: true) }
|
|
|
|
scope :future_expiration, -> { where(arel_table[:expires_at].gt(Time.now.utc)) }
|
2017-08-21 13:56:33 -07:00
|
|
|
scope :expired, -> { where(arel_table[:expires_at].lt(Time.now.utc)) }
|
2017-05-05 11:56:00 -07:00
|
|
|
scope :active, -> { confirmed.future_expiration }
|
2016-11-28 04:36:47 -08:00
|
|
|
|
2017-05-05 11:56:00 -07:00
|
|
|
def lease_seconds=(value)
|
|
|
|
self.expires_at = future_expiration(value)
|
2016-11-28 04:36:47 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def lease_seconds
|
|
|
|
(expires_at - Time.now.utc).to_i
|
|
|
|
end
|
|
|
|
|
2017-05-02 09:21:22 -07:00
|
|
|
def expired?
|
|
|
|
Time.now.utc > expires_at
|
|
|
|
end
|
|
|
|
|
2016-11-28 04:36:47 -08:00
|
|
|
before_validation :set_min_expiration
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-05 11:56:00 -07: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 04:36:47 -08:00
|
|
|
def set_min_expiration
|
|
|
|
self.lease_seconds = 0 unless expires_at
|
|
|
|
end
|
|
|
|
end
|