2019-07-30 09:10:46 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: domain_allows
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# domain :string default(""), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class DomainAllow < ApplicationRecord
|
2022-06-23 21:12:01 +00:00
|
|
|
include Paginable
|
2019-07-30 09:10:46 +00:00
|
|
|
include DomainNormalizable
|
2020-12-14 08:06:34 +00:00
|
|
|
include DomainMaterializable
|
2019-07-30 09:10:46 +00:00
|
|
|
|
2019-08-08 21:04:19 +00:00
|
|
|
validates :domain, presence: true, uniqueness: true, domain: true
|
2019-07-30 09:10:46 +00:00
|
|
|
|
|
|
|
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
|
|
|
|
|
2022-08-25 18:39:40 +00:00
|
|
|
def to_log_human_identifier
|
|
|
|
domain
|
|
|
|
end
|
|
|
|
|
2019-07-30 09:10:46 +00:00
|
|
|
class << self
|
|
|
|
def allowed?(domain)
|
|
|
|
!rule_for(domain).nil?
|
|
|
|
end
|
|
|
|
|
2022-11-17 10:05:09 +00:00
|
|
|
def allowed_domains
|
|
|
|
select(:domain)
|
|
|
|
end
|
|
|
|
|
2019-07-30 09:10:46 +00:00
|
|
|
def rule_for(domain)
|
|
|
|
return if domain.blank?
|
|
|
|
|
|
|
|
uri = Addressable::URI.new.tap { |u| u.host = domain.gsub(/[\/]/, '') }
|
|
|
|
|
|
|
|
find_by(domain: uri.normalized_host)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|