debian-mirror-gitlab/app/models/user_synced_attributes_metadata.rb

44 lines
954 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-07-07 11:18:12 +05:30
class UserSyncedAttributesMetadata < ApplicationRecord
2018-03-17 18:26:18 +05:30
belongs_to :user
validates :user, presence: true
SYNCABLE_ATTRIBUTES = %i[name email location].freeze
def read_only?(attribute)
sync_profile_from_provider? && synced?(attribute)
end
def read_only_attributes
return [] unless sync_profile_from_provider?
2023-04-23 21:23:45 +05:30
self.class.syncable_attributes.select { |key| synced?(key) }
2018-03-17 18:26:18 +05:30
end
def synced?(attribute)
read_attribute("#{attribute}_synced")
end
def set_attribute_synced(attribute, value)
write_attribute("#{attribute}_synced", value)
end
2023-04-23 21:23:45 +05:30
class << self
def syncable_attributes
if Gitlab.config.ldap.enabled && !Gitlab.config.ldap.sync_name
SYNCABLE_ATTRIBUTES - %i[name]
else
SYNCABLE_ATTRIBUTES
end
end
end
2018-03-17 18:26:18 +05:30
private
def sync_profile_from_provider?
2018-03-27 19:54:05 +05:30
Gitlab::Auth::OAuth::Provider.sync_profile_from_provider?(provider)
2018-03-17 18:26:18 +05:30
end
end