Gemfile:
gem "oauth"
gem "oauth2"
gem 'omniauth-oauth2'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'omniauth-google-oauth2'
gem 'omniauth-linkedin'
gem 'omniauth-github'
gem 'omniauth-pinterest'
--------------------------------------------------
Model generate:
rails g model authentication provider:string uid:string user_id:integer token:text token_expired_at:datetime
--------------------------------------------------
app/model/authentication.rb:
class Authentication < ApplicationRecord
belongs_to :user
def self.from_omniauth(auth)
authenticate = where(provider: auth['provider'], :uid=>auth['uid']).first_or_initialize
register_user = User.find_by(email: auth.info.email)
if authenticate.user
return authenticate.user
elsif register_user
register_user.authentications.create(provider: auth['provider'], :uid=>auth['uid'])
return register_user
else
user = User.new(
email: auth.info.try(:email),
password: Devise.friendly_token.first(8)
)
if user.email.blank?
user.email=auth.extra.raw_info.id.to_s+"@gmail.com"
end
user.save!(:validate => false)
user.authentications.create(provider: auth['provider'], :uid=>auth['uid'],token: auth["credentials"]["token"])
return user
end
end
end
-------------------------------------------
User.rb
before_create :confirmation_token
has_many :authentications, dependent: :destroy
validates :email, :uniqueness => {:allow_blank => true}
-------------------------------------------
config/intializers/omniauth.rb:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :facebook, "#{ENV['FACEBOOK_APP_ID']}", "#{ENV['FACEBOOK_APP_SERCRET']}", :scope => 'email, user_friends, manage_pages, pages_show_list'
provider :google_oauth2, "#{ENV['GOOGLE_APP_ID']}", "#{ENV['GOOGLE_APP_SERCRET']}", scope: 'userinfo.profile,youtube,email', provider_ignores_state: true, prompt: :consent
provider :twitter, "#{ENV['Twitter_APP_ID']}", "#{ENV['Twitter_APP_SERCRET']}"
provider :linkedin, "#{ENV['Linkedin_APP_ID']}", "#{ENV['Linkedin_APP_SERCRET']}"
provider :github, "#{ENV['Github_APP_ID']}", "#{ENV['Github_APP_SERCRET']}", :scope => 'email'
provider :pinterest, "#{ENV['Pinterest_APP_ID']}", "#{ENV['Pinterest_APP_SERCRET']}", :scope => 'read_public,write_public'
end
--------------------------------------------
application.yml:
default:
DATABASE_ADAPTER: postgresql
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: go_foot_ball
DATABASE_HOST: localhost
DOMAIN: localhost
FACEBOOK_APP_ID: xxxxxxxxxx
FACEBOOK_APP_SERCRET: xxxxxxxxxxxxxxxxxxx
TWITTER_CONSUMER_KEY: xxxxxxxxxxxxxxxxx
TWITTER_CONSUMER_SECRET: xxxxxxxxxxxxxxxxx
INSTAGRAM_APP_ID: xxxxxxxxxxxxxxxxxxxxxxxxx
INSTAGRAM_APP_SERCRET: xxxxxxxxxxxx
# AWS_ACCESS_KEY_ID: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# AWS_SECRET_ACCESS_KEY:xxxxxxxxxxxxxxxxxxxxxxxxxx
# REGION: 'us-west-2'
# AWS_BUCKET_NAME: xxxxxxxxxxxx
# FACEBOOK_APP_VERSION: 'v2.8'
development:
DATABASE_ADAPTER: postgresql
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: go_foot_ball
DATABASE_HOST: localhost
DOMAIN: localhost
FACEBOOK_APP_ID: xxxxxxxxxxxx
FACEBOOK_APP_SERCRET: xxxxxxxxxxxxxxxxx
TWITTER_CONSUMER_KEY: xxxxxxxxxxxxxxxxxx
TWITTER_CONSUMER_SECRET: xxxxxxxxxxxxxxxxxx
INSTAGRAM_APP_ID: xxxxxxxxxxxxxxxxxxxxxxxx
INSTAGRAM_APP_SERCRET: xxxxxxxxxxxxxxxxxxxxxx
testing:
DATABASE_ADAPTER: postgresql
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: go_foot_ball
DATABASE_HOST: localhost
DOMAIN: localhost
production:
DATABASE_ADAPTER: postgresql
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: go_foot_ball
DATABASE_HOST: localhost
DOMAIN: localhost
----------------------------------------------
routes:
match '/auth/:provider/callback', :to => 'pages#create', via: [:get, :post]
match '/auth/failure', :to => 'pages#failure', via: [:get, :post]
---------------------------------------------
app/controller/pages_controller.rb:
def create
user = Authentication.from_omniauth(request.env["omniauth.auth"])
if user
flash[:notice] = "Authentication successful."
sign_in :user, user
redirect_to root_path
else
flash[:notice] = "Authentication Failed."
redirect_to "/users/sign_up"
end
end
def failure
end
gem "oauth"
gem "oauth2"
gem 'omniauth-oauth2'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'omniauth-google-oauth2'
gem 'omniauth-linkedin'
gem 'omniauth-github'
gem 'omniauth-pinterest'
--------------------------------------------------
Model generate:
rails g model authentication provider:string uid:string user_id:integer token:text token_expired_at:datetime
--------------------------------------------------
app/model/authentication.rb:
class Authentication < ApplicationRecord
belongs_to :user
def self.from_omniauth(auth)
authenticate = where(provider: auth['provider'], :uid=>auth['uid']).first_or_initialize
register_user = User.find_by(email: auth.info.email)
if authenticate.user
return authenticate.user
elsif register_user
register_user.authentications.create(provider: auth['provider'], :uid=>auth['uid'])
return register_user
else
user = User.new(
email: auth.info.try(:email),
password: Devise.friendly_token.first(8)
)
if user.email.blank?
user.email=auth.extra.raw_info.id.to_s+"@gmail.com"
end
user.save!(:validate => false)
user.authentications.create(provider: auth['provider'], :uid=>auth['uid'],token: auth["credentials"]["token"])
return user
end
end
end
-------------------------------------------
User.rb
before_create :confirmation_token
has_many :authentications, dependent: :destroy
validates :email, :uniqueness => {:allow_blank => true}
-------------------------------------------
config/intializers/omniauth.rb:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :facebook, "#{ENV['FACEBOOK_APP_ID']}", "#{ENV['FACEBOOK_APP_SERCRET']}", :scope => 'email, user_friends, manage_pages, pages_show_list'
provider :google_oauth2, "#{ENV['GOOGLE_APP_ID']}", "#{ENV['GOOGLE_APP_SERCRET']}", scope: 'userinfo.profile,youtube,email', provider_ignores_state: true, prompt: :consent
provider :twitter, "#{ENV['Twitter_APP_ID']}", "#{ENV['Twitter_APP_SERCRET']}"
provider :linkedin, "#{ENV['Linkedin_APP_ID']}", "#{ENV['Linkedin_APP_SERCRET']}"
provider :github, "#{ENV['Github_APP_ID']}", "#{ENV['Github_APP_SERCRET']}", :scope => 'email'
provider :pinterest, "#{ENV['Pinterest_APP_ID']}", "#{ENV['Pinterest_APP_SERCRET']}", :scope => 'read_public,write_public'
end
--------------------------------------------
application.yml:
default:
DATABASE_ADAPTER: postgresql
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: go_foot_ball
DATABASE_HOST: localhost
DOMAIN: localhost
FACEBOOK_APP_ID: xxxxxxxxxx
FACEBOOK_APP_SERCRET: xxxxxxxxxxxxxxxxxxx
TWITTER_CONSUMER_KEY: xxxxxxxxxxxxxxxxx
TWITTER_CONSUMER_SECRET: xxxxxxxxxxxxxxxxx
INSTAGRAM_APP_ID: xxxxxxxxxxxxxxxxxxxxxxxxx
INSTAGRAM_APP_SERCRET: xxxxxxxxxxxx
# AWS_ACCESS_KEY_ID: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# AWS_SECRET_ACCESS_KEY:xxxxxxxxxxxxxxxxxxxxxxxxxx
# REGION: 'us-west-2'
# AWS_BUCKET_NAME: xxxxxxxxxxxx
# FACEBOOK_APP_VERSION: 'v2.8'
development:
DATABASE_ADAPTER: postgresql
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: go_foot_ball
DATABASE_HOST: localhost
DOMAIN: localhost
FACEBOOK_APP_ID: xxxxxxxxxxxx
FACEBOOK_APP_SERCRET: xxxxxxxxxxxxxxxxx
TWITTER_CONSUMER_KEY: xxxxxxxxxxxxxxxxxx
TWITTER_CONSUMER_SECRET: xxxxxxxxxxxxxxxxxx
INSTAGRAM_APP_ID: xxxxxxxxxxxxxxxxxxxxxxxx
INSTAGRAM_APP_SERCRET: xxxxxxxxxxxxxxxxxxxxxx
testing:
DATABASE_ADAPTER: postgresql
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: go_foot_ball
DATABASE_HOST: localhost
DOMAIN: localhost
production:
DATABASE_ADAPTER: postgresql
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: go_foot_ball
DATABASE_HOST: localhost
DOMAIN: localhost
----------------------------------------------
routes:
match '/auth/:provider/callback', :to => 'pages#create', via: [:get, :post]
match '/auth/failure', :to => 'pages#failure', via: [:get, :post]
---------------------------------------------
app/controller/pages_controller.rb:
def create
user = Authentication.from_omniauth(request.env["omniauth.auth"])
if user
flash[:notice] = "Authentication successful."
sign_in :user, user
redirect_to root_path
else
flash[:notice] = "Authentication Failed."
redirect_to "/users/sign_up"
end
end
def failure
end