2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-25 11:32:08 -04:00
|
|
|
class UserField < ActiveRecord::Base
|
2016-12-22 00:46:22 -05:00
|
|
|
include AnonCacheInvalidator
|
2021-10-27 10:33:07 -04:00
|
|
|
include HasSanitizableFields
|
2016-12-22 00:46:22 -05:00
|
|
|
|
2019-03-13 13:40:43 -04:00
|
|
|
validates_presence_of :description, :field_type
|
|
|
|
validates_presence_of :name, unless: -> { field_type == "confirm" }
|
2015-07-28 12:29:40 -04:00
|
|
|
has_many :user_field_options, dependent: :destroy
|
2021-06-07 13:34:01 -04:00
|
|
|
has_one :directory_column, dependent: :destroy
|
2015-07-28 12:29:40 -04:00
|
|
|
accepts_nested_attributes_for :user_field_options
|
2015-02-23 13:02:30 -05:00
|
|
|
|
2021-10-27 10:33:07 -04:00
|
|
|
before_save :sanitize_description
|
2021-04-27 01:52:45 -04:00
|
|
|
after_save :queue_index_search
|
|
|
|
|
2022-05-16 09:21:33 -04:00
|
|
|
scope :public_fields, -> { where(show_on_profile: true).or(where(show_on_user_card: true)) }
|
|
|
|
|
2015-02-23 13:02:30 -05:00
|
|
|
def self.max_length
|
|
|
|
2048
|
|
|
|
end
|
2021-04-27 01:52:45 -04:00
|
|
|
|
|
|
|
def queue_index_search
|
|
|
|
SearchIndexer.queue_users_reindex(
|
|
|
|
UserCustomField.where(name: "user_field_#{self.id}").pluck(:user_id),
|
|
|
|
)
|
|
|
|
end
|
2021-10-27 10:33:07 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def sanitize_description
|
|
|
|
if description_changed?
|
2023-01-06 08:18:35 -05:00
|
|
|
self.description = sanitize_field(self.description, additional_attributes: ["target"])
|
2021-10-27 10:33:07 -04:00
|
|
|
end
|
|
|
|
end
|
2014-09-25 11:32:08 -04:00
|
|
|
end
|
2014-11-19 22:53:15 -05:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_fields
|
|
|
|
#
|
2016-04-08 08:35:41 -04:00
|
|
|
# id :integer not null, primary key
|
2019-01-11 14:29:56 -05:00
|
|
|
# name :string not null
|
|
|
|
# field_type :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2016-04-08 08:35:41 -04:00
|
|
|
# editable :boolean default(FALSE), not null
|
2019-01-11 14:29:56 -05:00
|
|
|
# description :string not null
|
2016-04-08 08:35:41 -04:00
|
|
|
# required :boolean default(TRUE), not null
|
|
|
|
# show_on_profile :boolean default(FALSE), not null
|
|
|
|
# position :integer default(0)
|
2016-06-16 21:28:30 -04:00
|
|
|
# show_on_user_card :boolean default(FALSE), not null
|
2018-09-19 22:40:51 -04:00
|
|
|
# external_name :string
|
|
|
|
# external_type :string
|
2021-04-27 01:52:45 -04:00
|
|
|
# searchable :boolean default(FALSE), not null
|
2014-11-19 22:53:15 -05:00
|
|
|
#
|