1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/lib/devise/omniauth.rb

29 lines
1,001 B
Ruby
Raw Normal View History

2010-10-14 14:04:02 -04:00
begin
2011-10-14 16:33:56 -04:00
require "omniauth"
require "omniauth/version"
2012-05-15 16:22:52 -04:00
rescue LoadError
2011-10-14 16:33:56 -04:00
warn "Could not load 'omniauth'. Please ensure you have the omniauth gem >= 1.0.0 installed and listed in your Gemfile."
2010-10-14 14:04:02 -04:00
raise
end
2011-10-14 16:33:56 -04:00
unless OmniAuth::VERSION =~ /^1\./
raise "You are using an old OmniAuth version, please ensure you have 1.0.0.pr2 version or later installed."
2010-10-14 14:04:02 -04:00
end
2010-10-14 15:16:20 -04:00
# Clean up the default path_prefix. It will be automatically set by Devise.
OmniAuth.config.path_prefix = nil
OmniAuth.config.on_failure = Proc.new do |env|
env['devise.mapping'] = Devise::Mapping.find_by_path!(env['PATH_INFO'], :path)
2011-04-16 07:30:15 -04:00
controller_name = ActiveSupport::Inflector.camelize(env['devise.mapping'].controllers[:omniauth_callbacks])
controller_klass = ActiveSupport::Inflector.constantize("#{controller_name}Controller")
controller_klass.action(:failure).call(env)
2010-10-14 19:15:17 -04:00
end
2010-10-14 14:04:02 -04:00
module Devise
module OmniAuth
autoload :Config, "devise/omniauth/config"
autoload :UrlHelpers, "devise/omniauth/url_helpers"
end
2010-11-03 19:16:55 -04:00
end