1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/models/contact.rb

52 lines
985 B
Ruby

# frozen_string_literal: true
class Contact < ApplicationRecord
delegate :communicable?,
to: :contact_network,
allow_nil: true,
prefix: true
################
# Associations #
################
belongs_to :contact_list
belongs_to :contact_network
#############
# Callbacks #
#############
before_validation :turn_blanks_into_nils
before_validation :strip_extra_spaces
###############
# Validations #
###############
validates :value,
presence: true,
uniqueness: { scope: %i[contact_list_id contact_network_id] }
validates :send_security_notifications,
inclusion: { in: [false], unless: :contact_network_communicable? }
###########
# Methods #
###########
def link
contact_network&.link&.sub('$$', value).freeze
end
private
def turn_blanks_into_nils
self.value = nil if value.blank?
end
def strip_extra_spaces
self.value = value&.strip
end
end