]> git.openstreetmap.org Git - rails.git/blob - config/initializers/omniauth.rb
Update to latest upstream i18n-js
[rails.git] / config / initializers / omniauth.rb
1 require "openid/fetchers"
2 require "openid/util"
3
4 CA_BUNDLES = ["/etc/ssl/certs/ca-certificates.crt", "/etc/pki/tls/cert.pem"]
5
6 OpenID.fetcher.ca_file = CA_BUNDLES.find { |f| File.exist?(f) }
7 OpenID::Util.logger = Rails.logger
8
9 OmniAuth.config.logger = Rails.logger
10 OmniAuth.config.failure_raise_out_environments = []
11
12 if defined?(MEMCACHE_SERVERS)
13   require "openid/store/memcache"
14
15   openid_store = OpenID::Store::Memcache.new(Dalli::Client.new(MEMCACHE_SERVERS, :namespace => "rails"))
16 else
17   require "openid/store/filesystem"
18
19   openid_store = OpenID::Store::Filesystem.new(Rails.root.join("tmp/openids"))
20 end
21
22 openid_options = { :name => "openid", :store => openid_store }
23 google_options = { :name => "google", :scope => "email", :access_type => "online" }
24 facebook_options = { :name => "facebook", :scope => "email" }
25 windowslive_options = { :name => "windowslive", :scope => "wl.signin,wl.emails" }
26
27 if defined?(GOOGLE_OPENID_REALM)
28   google_options[:openid_realm] = GOOGLE_OPENID_REALM
29 end
30
31 Rails.application.config.middleware.use OmniAuth::Builder do
32   provider :openid, openid_options
33   provider :google_oauth2, GOOGLE_AUTH_ID, GOOGLE_AUTH_SECRET, google_options if defined?(GOOGLE_AUTH_ID)
34   provider :facebook, FACEBOOK_AUTH_ID, FACEBOOK_AUTH_SECRET, facebook_options if defined?(FACEBOOK_AUTH_ID)
35   provider :windowslive, WINDOWSLIVE_AUTH_ID, WINDOWSLIVE_AUTH_SECRET, windowslive_options if defined?(WINDOWSLIVE_AUTH_ID)
36 end
37
38 # Pending fix for: https://github.com/intridea/omniauth/pull/795
39 module OmniAuth
40   module Strategy
41     def mock_callback_call_with_origin
42       @env["omniauth.origin"] = session["omniauth.origin"]
43
44       mock_callback_call_without_origin
45     end
46
47     alias_method_chain :mock_callback_call, :origin
48   end
49 end