user.rb
1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
require_dependency 'user'
class User
has_many :oauth_auths, through: :person
has_many :oauth_providers, through: :oauth_auths, source: :provider
after_create :activate_oauth_user
after_create :store_oauth_providers
def initialize_with_oauth_client(attributes = {}, options = {})
attributes ||= {}
@oauth_providers = attributes.delete(:oauth_providers) || []
initialize_without_oauth_client(attributes, options)
end
alias_method_chain :initialize, :oauth_client
def store_oauth_providers
@oauth_providers.each do |provider|
self.person.oauth_auths.create!(profile: self.person, provider: provider, enabled: true)
end
end
def activate_oauth_user
self.activate if oauth_providers.present? || @oauth_providers.present?
end
def password_required_with_oauth?
password_required_without_oauth? && oauth_providers.empty? && @oauth_providers.blank?
end
alias_method_chain :password_required?, :oauth
def make_activation_code_with_oauth
@oauth_providers.blank? && oauth_providers.blank? ? make_activation_code_without_oauth : nil
end
alias_method_chain :make_activation_code, :oauth
end