2013-08-23 02:20:43 -04:00
|
|
|
class Auth::FacebookAuthenticator < Auth::Authenticator
|
|
|
|
|
2016-09-28 11:49:22 -04:00
|
|
|
AVATAR_SIZE = 480
|
2016-09-28 00:38:41 -04:00
|
|
|
|
2013-08-23 02:20:43 -04:00
|
|
|
def name
|
|
|
|
"facebook"
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_authenticate(auth_token)
|
|
|
|
result = Auth::Result.new
|
|
|
|
|
|
|
|
session_info = parse_auth_token(auth_token)
|
|
|
|
facebook_hash = session_info[:facebook]
|
|
|
|
|
|
|
|
result.email = email = session_info[:email]
|
2014-12-08 05:40:44 -05:00
|
|
|
result.email_valid = !email.blank?
|
2014-02-16 22:45:17 -05:00
|
|
|
result.name = facebook_hash[:name]
|
2013-08-23 02:20:43 -04:00
|
|
|
|
2013-08-26 03:36:20 -04:00
|
|
|
result.extra_data = facebook_hash
|
2013-08-23 02:20:43 -04:00
|
|
|
|
2014-05-06 09:41:59 -04:00
|
|
|
user_info = FacebookUserInfo.find_by(facebook_user_id: facebook_hash[:facebook_user_id])
|
2013-08-23 02:20:43 -04:00
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
result.user = user_info.try(:user)
|
2014-07-14 10:16:24 -04:00
|
|
|
if !result.user && !email.blank? && result.user = User.find_by_email(email)
|
2016-10-24 11:15:13 -04:00
|
|
|
FacebookUserInfo.create({ user_id: result.user.id }.merge(facebook_hash))
|
2016-09-19 01:10:02 -04:00
|
|
|
end
|
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
user_info.update_columns(facebook_hash) if user_info
|
2016-09-19 02:14:11 -04:00
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
retrieve_avatar(result.user, result.extra_data)
|
|
|
|
retrieve_profile(result.user, result.extra_data)
|
2016-09-19 02:14:11 -04:00
|
|
|
|
2014-03-19 13:31:17 -04:00
|
|
|
if email.blank?
|
|
|
|
UserHistory.create(
|
|
|
|
action: UserHistory.actions[:facebook_no_email],
|
|
|
|
details: "name: #{facebook_hash[:name]}, facebook_user_id: #{facebook_hash[:facebook_user_id]}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2013-08-23 02:20:43 -04:00
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_create_account(user, auth)
|
2016-10-24 11:15:13 -04:00
|
|
|
extra_data = auth[:extra_data]
|
|
|
|
FacebookUserInfo.create({ user_id: user.id }.merge(extra_data))
|
2016-09-19 01:10:02 -04:00
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
retrieve_avatar(user, extra_data)
|
|
|
|
retrieve_profile(user, extra_data)
|
2016-09-19 02:14:11 -04:00
|
|
|
|
2016-09-19 01:10:02 -04:00
|
|
|
true
|
2013-08-23 02:20:43 -04:00
|
|
|
end
|
|
|
|
|
2013-08-25 21:04:16 -04:00
|
|
|
def register_middleware(omniauth)
|
|
|
|
omniauth.provider :facebook,
|
2017-07-27 21:20:09 -04:00
|
|
|
setup: lambda { |env|
|
|
|
|
strategy = env["omniauth.strategy"]
|
2013-08-25 21:04:16 -04:00
|
|
|
strategy.options[:client_id] = SiteSetting.facebook_app_id
|
|
|
|
strategy.options[:client_secret] = SiteSetting.facebook_app_secret
|
2016-10-10 19:56:07 -04:00
|
|
|
strategy.options[:info_fields] = 'gender,email,name,about,first_name,link,last_name,website,location'
|
2016-09-19 02:14:11 -04:00
|
|
|
if SiteSetting.facebook_request_extra_profile_details
|
|
|
|
strategy.options[:scope] = 'email,user_about_me,user_location,user_website'
|
|
|
|
end
|
2013-08-25 21:04:16 -04:00
|
|
|
},
|
2017-07-27 21:20:09 -04:00
|
|
|
scope: "email"
|
2013-08-25 21:04:16 -04:00
|
|
|
end
|
|
|
|
|
2013-08-23 02:20:43 -04:00
|
|
|
protected
|
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
def parse_auth_token(auth_token)
|
|
|
|
raw_info = auth_token["extra"]["raw_info"]
|
|
|
|
info = auth_token["info"]
|
|
|
|
|
|
|
|
email = auth_token["info"][:email]
|
|
|
|
|
|
|
|
website = (info["urls"] && info["urls"]["Website"]) || nil
|
|
|
|
|
|
|
|
{
|
|
|
|
facebook: {
|
|
|
|
facebook_user_id: auth_token["uid"],
|
|
|
|
link: raw_info["link"],
|
|
|
|
username: raw_info["username"],
|
|
|
|
first_name: raw_info["first_name"],
|
|
|
|
last_name: raw_info["last_name"],
|
|
|
|
email: email,
|
|
|
|
gender: raw_info["gender"],
|
|
|
|
name: raw_info["name"],
|
|
|
|
avatar_url: info["image"],
|
|
|
|
location: info["location"],
|
|
|
|
website: website,
|
|
|
|
about_me: info["description"]
|
|
|
|
},
|
|
|
|
email: email,
|
|
|
|
email_valid: true
|
|
|
|
}
|
|
|
|
end
|
2016-09-19 01:10:02 -04:00
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
def retrieve_avatar(user, data)
|
|
|
|
return unless user
|
|
|
|
return if user.user_avatar.try(:custom_upload_id).present?
|
2013-08-23 02:20:43 -04:00
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
if (avatar_url = data[:avatar_url]).present?
|
|
|
|
url = "#{avatar_url}?height=#{AVATAR_SIZE}&width=#{AVATAR_SIZE}"
|
|
|
|
Jobs.enqueue(:download_avatar_from_url, url: url, user_id: user.id, override_gravatar: false)
|
|
|
|
end
|
|
|
|
end
|
2016-09-19 02:14:11 -04:00
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
def retrieve_profile(user, data)
|
|
|
|
return unless user
|
2013-08-23 02:20:43 -04:00
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
bio = data[:about_me] || data[:about]
|
|
|
|
location = data[:location]
|
|
|
|
website = data[:website]
|
2013-08-25 21:04:16 -04:00
|
|
|
|
2016-10-24 11:15:13 -04:00
|
|
|
if bio || location || website
|
|
|
|
profile = user.user_profile
|
|
|
|
profile.bio_raw = bio unless profile.bio_raw.present?
|
|
|
|
profile.location = location unless profile.location.present?
|
|
|
|
profile.website = website unless profile.website.present?
|
|
|
|
profile.save
|
|
|
|
end
|
|
|
|
end
|
2013-08-25 21:04:16 -04:00
|
|
|
|
2013-08-23 02:20:43 -04:00
|
|
|
end
|