Add IPService

This commit is contained in:
simon lehericey 2019-04-03 14:24:05 +02:00
parent 28c4dc8f60
commit 52e6632175
2 changed files with 85 additions and 0 deletions

View file

@ -0,0 +1,36 @@
class IPService
class << self
def ip_trusted?(ip)
ip_address = parse_address(ip)
if ip_address.nil?
false
elsif trusted_networks.present?
trusted_networks.any? { |network| network.include?(ip_address) }
else
false
end
end
private
def trusted_networks
if ENV['TRUSTED_NETWORKS'].present?
ENV['TRUSTED_NETWORKS']
.split
.map { |string| parse_address(string) }
.compact
else
[]
end
end
def parse_address(address)
begin
IPAddr.new(address)
rescue
nil
end
end
end
end