mirror of
https://github.com/internetee/registry.git
synced 2025-08-04 17:01:44 +02:00
41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
class User < ApplicationRecord
|
|
include Versions # version/user_version.rb
|
|
|
|
ESTONIAN_COUNTRY_CODE = 'EE'.freeze
|
|
TARA_PROVIDER = 'tara'.freeze
|
|
|
|
has_many :actions, dependent: :restrict_with_exception
|
|
|
|
attr_accessor :phone
|
|
|
|
self.ignored_columns = %w[legacy_id]
|
|
|
|
def id_role_username
|
|
"#{self.id}-#{self.class}: #{self.username}"
|
|
end
|
|
|
|
# rubocop:disable Metrics/AbcSize
|
|
# def tampered_with?(omniauth_hash)
|
|
# # uid_from_hash = omniauth_hash['uid']
|
|
# # provider_from_hash = omniauth_hash['provider']
|
|
# #
|
|
# # begin
|
|
# # uid != uid_from_hash ||
|
|
# # provider != provider_from_hash ||
|
|
# # country_code != uid_from_hash.slice(0..1) ||
|
|
# # identity_code != uid_from_hash.slice(2..-1) ||
|
|
# # given_names != omniauth_hash.dig('info', 'first_name') ||
|
|
# # surname != omniauth_hash.dig('info', 'last_name')
|
|
# # end
|
|
# false
|
|
# end
|
|
# rubocop:enable Metrics/AbcSize
|
|
|
|
def self.from_omniauth(omniauth_hash)
|
|
uid = omniauth_hash['uid']
|
|
# provider = omniauth_hash['provider']
|
|
|
|
User.find_by(uid: uid)
|
|
end
|
|
|
|
end
|