1 require "openid/fetchers"
4 CA_BUNDLES = ["/etc/ssl/certs/ca-certificates.crt", "/etc/pki/tls/cert.pem"]
6 OpenID.fetcher.ca_file = CA_BUNDLES.find { |f| File.exist?(f) }
7 OpenID::Util.logger = Rails.logger
9 OmniAuth.config.logger = Rails.logger
10 OmniAuth.config.failure_raise_out_environments = []
12 if defined?(MEMCACHE_SERVERS)
13 require "openid/store/memcache"
15 openid_store = OpenID::Store::Memcache.new(Dalli::Client.new(MEMCACHE_SERVERS, :namespace => "rails"))
17 require "openid/store/filesystem"
19 openid_store = OpenID::Store::Filesystem.new(Rails.root.join("tmp/openids"))
22 openid_options = { :name => "openid", :store => openid_store }
23 google_options = { :name => "google", :scope => "email", :access_type => "online" }
25 if defined?(GOOGLE_OPENID_REALM)
26 google_options[:openid_realm] = GOOGLE_OPENID_REALM
29 Rails.application.config.middleware.use OmniAuth::Builder do
30 provider :openid, openid_options
31 provider :google_oauth2, GOOGLE_AUTH_ID, GOOGLE_AUTH_SECRET, google_options if defined?(GOOGLE_AUTH_ID)
34 # Pending fix for: https://github.com/intridea/omniauth/pull/795
37 def mock_callback_call_with_origin
38 @env["omniauth.origin"] = session["omniauth.origin"]
40 mock_callback_call_without_origin
43 alias_method_chain :mock_callback_call, :origin