Sha256: 01b3fd5bf94a65460200bfcdf9108b69d76612cc8e90a47fcb7f6f783e7b7479

Contents?: true

Size: 1.33 KB

Versions: 6

Compression:

Stored size: 1.33 KB

Contents

module Renalware
  class Address < ApplicationRecord
    belongs_to :country, class_name: "System::Country"
    validates :email, email: true, allow_blank: true
    delegate :uk?, to: :country, allow_nil: true

    belongs_to :addressable, polymorphic: true

    # Set to true to avoid address validation - useful when archiving a letter with a migrated
    # address that might not have a postcode for instance
    attr_accessor :skip_validation
    validates_with AddressValidator, unless: :skip_validation

    def self.reject_if_blank
      lambda { |attrs|
        %w(name organisation_name street_1 street_2 street_3 town county postcode)
          .all? { |a| attrs[a].blank? }
      }
    end

    def copy_from(source)
      return self if source.blank?
      self.name = source.name
      self.organisation_name = source.organisation_name
      self.street_1 = source.street_1
      self.street_2 = source.street_2
      self.street_3 = source.street_3
      self.town = source.town
      self.county = source.county
      self.postcode = source.postcode
      self.country = source.country
      self
    end

    def to_s
      [name, organisation_name, street_1, street_2, street_3, town, county, postcode, country]
        .reject(&:blank?).join(", ")
    end

    def street
      [street_1, street_2, street_3].compact.join(", ")
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
renalware-core-2.0.16 app/values/renalware/address.rb
renalware-core-2.0.15 app/values/renalware/address.rb
renalware-core-2.0.14 app/values/renalware/address.rb
renalware-core-2.0.13 app/values/renalware/address.rb
renalware-core-2.0.12 app/values/renalware/address.rb
renalware-core-2.0.11 app/values/renalware/address.rb