docbrown/app/models/profile.rb
Michael Kohl f95acef2bc
Profile generalization tidbits (#10631)
* Load all profile fields on app start

This time without breaking bin/setup (hopefully)

* A SiteConfig.dev_to? for special case logic

* Update BanishUser#remove_profile_info

* Continue clearing data from users table for now

* Add specs for SiteConfig#dev.to?

* Use correct attribute list

* Update spec/models/site_config_spec.rb

Co-authored-by: Michael Currin <18750745+MichaelCurrin@users.noreply.github.com>

Co-authored-by: Michael Currin <18750745+MichaelCurrin@users.noreply.github.com>
2020-10-12 10:01:27 +07:00

62 lines
2.1 KiB
Ruby

class Profile < ApplicationRecord
belongs_to :user
validates :data, presence: true
validates :user_id, uniqueness: true
has_many :custom_profile_fields, dependent: :destroy
store_attribute :data, :custom_attributes, :json, default: {}
# NOTE: @citizen428 This is a temporary mapping so we don't break DEV during
# profile migration/generalization work.
MAPPED_ATTRIBUTES = {
brand_color1: :bg_color_hex,
brand_color2: :text_color_hex,
display_email_on_profile: :email_public,
display_looking_for_work_on_profile: :looking_for_work_publicly,
git_lab_url: :gitlab_url,
linked_in_url: :linkedin_url,
recruiters_can_contact_me_about_job_opportunities: :contact_consent,
stack_overflow_url: :stackoverflow_url
}.with_indifferent_access.freeze
# Generates typed accessors for all currently defined profile fields.
def self.refresh_attributes!
ProfileField.find_each do |field|
store_attribute :data, field.attribute_name.to_sym, field.type
end
end
# Returns an array of all currently defined `store_attribute`s on `data`.
def self.attributes
(stored_attributes[:data] || []).map(&:to_s)
end
# Forces a reload before returning attributes
def self.attributes!
refresh_attributes!
attributes
end
# NOTE: @citizen428 This is a temporary mapping so we don't break DEV during
# profile migration/generalization work.
def self.mapped_attributes
attributes!.map { |attribute| MAPPED_ATTRIBUTES.fetch(attribute, attribute).to_s }
end
# NOTE: @citizen428 We want to have a current list of profile attributes the
# moment the application loads. However, doing this unconditionally fails if
# the profiles table doesn't exist yet (e.g. when running bin/setup in a new
# clone). I wish Rails had a hook for code to run after the app started, but
# for now this is the best I can come up with.
refresh_attributes! if ApplicationRecord.connection.table_exists?("profiles")
def custom_profile_attributes
custom_profile_fields.pluck(:attribute_name)
end
def clear!
update(data: {})
end
end