2017-05-31 18:38:44 +00:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 05:58:28 +00:00
|
|
|
|
2020-12-14 08:06:34 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: instances
|
|
|
|
#
|
|
|
|
# domain :string primary key
|
|
|
|
# accounts_count :bigint(8)
|
|
|
|
#
|
2017-05-31 18:38:44 +00:00
|
|
|
|
2020-12-14 08:06:34 +00:00
|
|
|
class Instance < ApplicationRecord
|
|
|
|
self.primary_key = :domain
|
2017-05-31 18:38:44 +00:00
|
|
|
|
2021-05-05 21:39:02 +00:00
|
|
|
attr_accessor :failure_days
|
|
|
|
|
2023-04-30 12:06:53 +00:00
|
|
|
has_many :accounts, foreign_key: :domain, primary_key: :domain, inverse_of: false
|
2017-05-31 18:38:44 +00:00
|
|
|
|
2023-04-30 12:06:53 +00:00
|
|
|
with_options foreign_key: :domain, primary_key: :domain, inverse_of: false do
|
|
|
|
belongs_to :domain_block
|
|
|
|
belongs_to :domain_allow
|
|
|
|
belongs_to :unavailable_domain # skipcq: RB-RL1031
|
|
|
|
end
|
2020-12-14 08:06:34 +00:00
|
|
|
|
|
|
|
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
|
2023-05-31 07:57:24 +00:00
|
|
|
scope :by_domain_and_subdomains, ->(domain) { where("reverse('.' || domain) LIKE reverse(?)", "%.#{domain}") }
|
2020-12-14 08:06:34 +00:00
|
|
|
|
|
|
|
def self.refresh
|
|
|
|
Scenic.database.refresh_materialized_view(table_name, concurrently: true, cascade: false)
|
2019-01-08 12:39:49 +00:00
|
|
|
end
|
|
|
|
|
2020-12-14 08:06:34 +00:00
|
|
|
def readonly?
|
|
|
|
true
|
2019-03-25 23:36:35 +00:00
|
|
|
end
|
|
|
|
|
2020-12-14 08:06:34 +00:00
|
|
|
def delivery_failure_tracker
|
|
|
|
@delivery_failure_tracker ||= DeliveryFailureTracker.new(domain)
|
|
|
|
end
|
|
|
|
|
2022-03-14 04:27:37 +00:00
|
|
|
def purgeable?
|
|
|
|
unavailable? || domain_block&.suspend?
|
|
|
|
end
|
|
|
|
|
2022-03-09 07:52:32 +00:00
|
|
|
def unavailable?
|
2022-03-14 04:27:37 +00:00
|
|
|
unavailable_domain.present?
|
2020-12-14 08:06:34 +00:00
|
|
|
end
|
|
|
|
|
2022-03-09 07:52:32 +00:00
|
|
|
def failing?
|
|
|
|
failure_days.present? || unavailable?
|
2020-12-14 08:06:34 +00:00
|
|
|
end
|
|
|
|
|
2022-03-09 07:52:32 +00:00
|
|
|
def to_param
|
|
|
|
domain
|
2020-12-14 08:06:34 +00:00
|
|
|
end
|
|
|
|
|
2022-08-25 18:39:40 +00:00
|
|
|
alias to_log_human_identifier to_param
|
|
|
|
|
2022-03-09 07:52:32 +00:00
|
|
|
delegate :exhausted_deliveries_days, to: :delivery_failure_tracker
|
2020-12-14 08:06:34 +00:00
|
|
|
|
2022-03-09 07:52:32 +00:00
|
|
|
def availability_over_days(num_days, end_date = Time.now.utc.to_date)
|
|
|
|
failures_map = exhausted_deliveries_days.index_with { true }
|
|
|
|
period_end_at = exhausted_deliveries_days.last || end_date
|
|
|
|
period_start_at = period_end_at - num_days.days
|
2020-12-14 08:06:34 +00:00
|
|
|
|
2022-03-09 07:52:32 +00:00
|
|
|
(period_start_at..period_end_at).map do |date|
|
|
|
|
[date, failures_map[date]]
|
|
|
|
end
|
2017-05-31 18:38:44 +00:00
|
|
|
end
|
|
|
|
end
|