]> git.openstreetmap.org Git - rails.git/blob - config/initializers/omniauth.rb
Load api fixtures in tag model tests
[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"].freeze
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 github_options = { :name => "github", :scope => "user:email" }
27
28 if defined?(GOOGLE_OPENID_REALM)
29   google_options[:openid_realm] = GOOGLE_OPENID_REALM
30 end
31
32 Rails.application.config.middleware.use OmniAuth::Builder do
33   provider :openid, openid_options
34   provider :google_oauth2, GOOGLE_AUTH_ID, GOOGLE_AUTH_SECRET, google_options if defined?(GOOGLE_AUTH_ID)
35   provider :facebook, FACEBOOK_AUTH_ID, FACEBOOK_AUTH_SECRET, facebook_options if defined?(FACEBOOK_AUTH_ID)
36   provider :windowslive, WINDOWSLIVE_AUTH_ID, WINDOWSLIVE_AUTH_SECRET, windowslive_options if defined?(WINDOWSLIVE_AUTH_ID)
37   provider :github, GITHUB_AUTH_ID, GITHUB_AUTH_SECRET, github_options if defined?(GITHUB_AUTH_ID)
38 end
39
40 # Pending fix for: https://github.com/intridea/omniauth/pull/795
41 module OmniAuth
42   module Strategy
43     def mock_callback_call_with_origin
44       @env["omniauth.origin"] = session["omniauth.origin"]
45
46       mock_callback_call_without_origin
47     end
48
49     alias_method_chain :mock_callback_call, :origin
50   end
51 end