2017-08-29 04:57:41 -04:00
|
|
|
class UserSyncedAttributesMetadata < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
|
|
|
|
validates :user, presence: true
|
|
|
|
|
|
|
|
SYNCABLE_ATTRIBUTES = %i[name email location].freeze
|
|
|
|
|
|
|
|
def read_only?(attribute)
|
2017-12-13 12:02:49 -05:00
|
|
|
sync_profile_from_provider? && synced?(attribute)
|
2017-08-29 04:57:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def read_only_attributes
|
2017-12-13 12:02:49 -05:00
|
|
|
return [] unless sync_profile_from_provider?
|
2017-08-29 04:57:41 -04:00
|
|
|
|
|
|
|
SYNCABLE_ATTRIBUTES.select { |key| synced?(key) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def synced?(attribute)
|
|
|
|
read_attribute("#{attribute}_synced")
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_attribute_synced(attribute, value)
|
|
|
|
write_attribute("#{attribute}_synced", value)
|
|
|
|
end
|
2017-12-13 12:02:49 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def sync_profile_from_provider?
|
|
|
|
Gitlab::OAuth::Provider.sync_profile_from_provider?(provider)
|
|
|
|
end
|
2017-08-29 04:57:41 -04:00
|
|
|
end
|