Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
class PostcodeService
|
|
|
|
def initialize
|
|
|
|
@pio = Postcodes::IO.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def lookup(postcode)
|
|
|
|
# Avoid network calls when postcode is invalid
|
|
|
|
return unless postcode.match(POSTCODE_REGEXP)
|
|
|
|
|
|
|
|
postcode_lookup = nil
|
|
|
|
begin
|
|
|
|
# URI encoding only supports ASCII characters
|
|
|
|
ascii_postcode = self.class.clean(postcode)
|
|
|
|
Timeout.timeout(30) { postcode_lookup = @pio.lookup(ascii_postcode) }
|
|
|
|
rescue Timeout::Error
|
|
|
|
Rails.logger.warn("Postcodes.io lookup timed out")
|
|
|
|
end
|
|
|
|
if postcode_lookup && postcode_lookup.info.present?
|
|
|
|
{
|
|
|
|
location_code: postcode_lookup.codes["admin_district"],
|
|
|
|
location_admin_district: postcode_lookup&.admin_district,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.clean(postcode)
|
|
|
|
postcode.encode("ASCII", "UTF-8", invalid: :replace, undef: :replace, replace: "").delete(" ").upcase
|
|
|
|
end
|
|
|
|
end
|