1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
# frozen_string_literal: true
require_relative 'address'
module FFaker
module AddressBR
include FFaker::Address
extend ModuleUtils
extend self
STREET_PREFIX = %w[Rua Avenida Travessa Alameda].freeze
def zip_code
FFaker.numerify '#####-###'
end
def state
fetch_sample(STATE)
end
def state_abbr
fetch_sample(STATE_ABBR)
end
def city
fetch_sample(CITY)
end
def street_prefix
fetch_sample(STREET_PREFIX)
end
def street
case rand(0..1)
when 0 then "#{street_prefix} #{NameBR.name}"
when 1 then "#{street_prefix} #{NameBR.first_name} #{NameBR.last_name} #{NameBR.last_name}"
end
end
def complement
FFaker.numerify(fetch_sample(COMPLEMENT))
end
def neighborhood
prefix = fetch_sample(NEIGHBORHOOD_PREFIXES)
"#{prefix} #{NameBR.first_name}"
end
def full_address(with_complement: false)
base_address_order = [street, building_number, neighborhood, city, state, 'Brazil']
return base_address_order.join(', ') unless with_complement
base_address_order.insert(2, complement).join(', ')
end
end
end
|