2019-07-30 11:10:46 +02: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 23:12:01 +02:00
|
|
|
include Paginable
|
2019-07-30 11:10:46 +02:00
|
|
|
include DomainNormalizable
|
2020-12-14 09:06:34 +01:00
|
|
|
include DomainMaterializable
|
2019-07-30 11:10:46 +02:00
|
|
|
|
2019-08-08 23:04:19 +02:00
|
|
|
validates :domain, presence: true, uniqueness: true, domain: true
|
2019-07-30 11:10:46 +02:00
|
|
|
|
|
|
|
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
|
|
|
|
|
2022-08-25 20:39:40 +02:00
|
|
|
def to_log_human_identifier
|
|
|
|
domain
|
|
|
|
end
|
|
|
|
|
2019-07-30 11:10:46 +02:00
|
|
|
class << self
|
|
|
|
def allowed?(domain)
|
|
|
|
!rule_for(domain).nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|