Created Omniauth callbacks controller for Facebook

This commit is contained in:
Prelang Builder
2014-02-27 23:58:30 +00:00
committed by u7482
parent 37314d439c
commit 13c6b4935b
@@ -0,0 +1,22 @@
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
include ApplicationHelper
def facebook
# Attempt to find the User
@user = User.find_for_facebook_oauth(request.env["omniauth.auth"], current_user)
if @user.persisted?
sign_in_and_redirect @user, :event => :authentication # This will throw if @user is not activated
set_flash_message(:notice, :success, :kind => "Facebook") if is_navigational_format?
else
#session["devise.facebook_data"] = request.env["omniauth.auth"]
redirect_to new_user_registration_url
end
end
def passthru
render :file => "#{Rails.root}/public/404.html", :status => 404, :layout => false
end
end