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/person.rb

92 lines
2.2 KiB
Ruby

# frozen_string_literal: true
class Person < ApplicationRecord
include Nameable
################
# Associations #
################
belongs_to :regional_office, optional: true
has_one :account, dependent: :restrict_with_exception
has_many :relationships,
-> { order(number: :asc) },
inverse_of: :person,
dependent: :restrict_with_exception
has_one :current_relationship,
-> { order(number: :desc) },
class_name: 'Relationship',
inverse_of: :person
has_many :passports, dependent: :restrict_with_exception
has_many :resident_registrations, dependent: :restrict_with_exception
###############
# Validations #
###############
validate :membership_is_possible
validate :membership_dates_are_not_in_future
###########
# Methods #
###########
def party_supporter?
supporter_since.present? && !excluded_from_party?
end
def party_member?
member_since.present? && !excluded_from_party?
end
def excluded_from_party?
excluded_since.present?
end
private
def membership_is_possible
errors.add :member_since unless member_since_not_before_supporter_since?
return if excluded_since_not_before_member_since? ||
excluded_since_not_before_supporter_since?
errors.add :excluded_since
end
def membership_dates_are_not_in_future
errors.add :supporter_since unless supporter_since_not_in_future?
errors.add :member_since unless member_since_not_in_future?
errors.add :excluded_since unless excluded_since_not_in_future?
end
def member_since_not_before_supporter_since?
member_since.nil? || supporter_since && member_since >= supporter_since
end
def excluded_since_not_before_supporter_since?
excluded_since.nil? || supporter_since && excluded_since >= supporter_since
end
def excluded_since_not_before_member_since?
excluded_since.nil? || member_since && excluded_since >= member_since
end
def supporter_since_not_in_future?
supporter_since.nil? || supporter_since <= Time.zone.today
end
def member_since_not_in_future?
member_since.nil? || member_since <= Time.zone.today
end
def excluded_since_not_in_future?
excluded_since.nil? || excluded_since <= Time.zone.today
end
end