2018-12-01 21:03:19 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Account < ApplicationRecord
|
2019-07-20 00:58:45 -04:00
|
|
|
NICKNAME_RE = /\A[a-z][a-z0-9]*(_[a-z0-9]+)*\z/.freeze
|
2019-01-31 19:47:44 -05:00
|
|
|
|
2019-03-24 10:08:47 -04:00
|
|
|
################
|
|
|
|
# Associations #
|
|
|
|
################
|
|
|
|
|
2019-03-23 19:59:38 -04:00
|
|
|
has_one_attached :avatar
|
|
|
|
|
2018-12-09 22:36:09 -05:00
|
|
|
belongs_to :person, optional: true
|
|
|
|
|
2019-07-29 01:36:39 -04:00
|
|
|
belongs_to :contact_list
|
2019-06-26 20:21:37 -04:00
|
|
|
|
2019-07-20 06:25:23 -04:00
|
|
|
has_one :user
|
2018-12-01 21:50:10 -05:00
|
|
|
|
2019-03-24 10:08:47 -04:00
|
|
|
#############
|
|
|
|
# Callbacks #
|
|
|
|
#############
|
|
|
|
|
2019-03-24 15:27:06 -04:00
|
|
|
after_initialize :generate_nickname
|
2019-01-31 19:47:44 -05:00
|
|
|
|
2019-06-26 20:21:37 -04:00
|
|
|
before_validation do
|
2019-07-29 01:36:39 -04:00
|
|
|
self.contact_list ||= person ? person.contact_list : ContactList.new
|
2019-06-26 20:21:37 -04:00
|
|
|
end
|
|
|
|
|
2019-03-24 10:27:18 -04:00
|
|
|
before_validation :turn_blanks_into_nils
|
2019-03-24 10:42:33 -04:00
|
|
|
before_validation :strip_extra_spaces
|
2019-03-24 10:27:18 -04:00
|
|
|
|
2019-03-24 10:08:47 -04:00
|
|
|
###############
|
|
|
|
# Validations #
|
|
|
|
###############
|
|
|
|
|
2019-03-23 21:42:27 -04:00
|
|
|
validates :person, allow_nil: true, uniqueness: true
|
2019-01-31 23:03:03 -05:00
|
|
|
|
2019-07-29 01:36:39 -04:00
|
|
|
validates :contact_list, uniqueness: true
|
2019-06-26 20:21:37 -04:00
|
|
|
|
2019-03-24 15:27:06 -04:00
|
|
|
validates :nickname,
|
2019-04-28 09:34:46 -04:00
|
|
|
presence: true,
|
|
|
|
length: { in: 3..36 },
|
|
|
|
format: NICKNAME_RE,
|
2019-01-31 19:47:44 -05:00
|
|
|
uniqueness: { case_sensitive: false }
|
|
|
|
|
2019-07-22 16:56:11 -04:00
|
|
|
validates :public_name, allow_nil: true, length: { in: 1..255 }
|
2019-03-24 10:32:07 -04:00
|
|
|
|
2019-07-22 16:56:11 -04:00
|
|
|
validates :biography, allow_nil: true, length: { in: 1..10_000 }
|
2019-01-31 23:02:51 -05:00
|
|
|
|
2019-03-24 23:04:53 -04:00
|
|
|
validates :avatar, allow_nil: true, image: true
|
2019-03-24 22:22:28 -04:00
|
|
|
|
2019-07-29 01:36:39 -04:00
|
|
|
validate :contact_list_corresponds_person
|
2019-06-26 20:43:27 -04:00
|
|
|
|
2019-03-24 10:08:47 -04:00
|
|
|
###########
|
|
|
|
# Methods #
|
|
|
|
###########
|
|
|
|
|
2019-02-01 16:36:10 -05:00
|
|
|
def to_param
|
2019-03-24 15:27:06 -04:00
|
|
|
nickname
|
2019-02-01 16:36:10 -05:00
|
|
|
end
|
|
|
|
|
2018-12-11 22:15:03 -05:00
|
|
|
def can_access_sidekiq_web_interface?
|
2019-08-11 15:27:06 -04:00
|
|
|
superuser?
|
2018-12-11 22:15:03 -05:00
|
|
|
end
|
2019-01-31 19:47:44 -05:00
|
|
|
|
2019-08-15 01:26:56 -04:00
|
|
|
def can_initiate_relationship?(regional_office)
|
|
|
|
return false if regional_office.nil?
|
|
|
|
return true if superuser?
|
|
|
|
|
|
|
|
current_relationship = person&.current_relationship
|
|
|
|
return false if current_relationship.nil?
|
|
|
|
|
|
|
|
current_relationship.federal_secretary? ||
|
|
|
|
current_relationship.regional_secretary? &&
|
|
|
|
current_relationship.regional_office == regional_office
|
|
|
|
end
|
|
|
|
|
2019-01-31 19:47:44 -05:00
|
|
|
private
|
|
|
|
|
2019-03-24 15:27:06 -04:00
|
|
|
def generate_nickname
|
2019-07-18 23:32:01 -04:00
|
|
|
self.nickname ||= "noname_#{SecureRandom.hex(8)}"
|
2019-01-31 19:47:44 -05:00
|
|
|
end
|
2019-01-31 20:19:31 -05:00
|
|
|
|
2019-03-24 10:27:18 -04:00
|
|
|
def turn_blanks_into_nils
|
|
|
|
self.public_name = nil if public_name.blank?
|
|
|
|
self.biography = nil if biography.blank?
|
|
|
|
end
|
2019-03-24 10:42:33 -04:00
|
|
|
|
|
|
|
def strip_extra_spaces
|
|
|
|
self.public_name = public_name&.strip
|
|
|
|
self.biography = biography&.strip
|
|
|
|
end
|
2019-06-26 20:43:27 -04:00
|
|
|
|
2019-07-29 01:36:39 -04:00
|
|
|
def contact_list_corresponds_person
|
2019-06-26 20:43:27 -04:00
|
|
|
return if person.nil?
|
|
|
|
|
2019-07-29 01:36:39 -04:00
|
|
|
errors.add :contact_list unless contact_list == person.contact_list
|
2019-06-26 20:43:27 -04:00
|
|
|
end
|
2018-12-01 21:03:19 -05:00
|
|
|
end
|