]> git.openstreetmap.org Git - rails.git/blob - config/initializers/omniauth.rb
Merge remote-tracking branch 'upstream/pull/6351'
[rails.git] / config / initializers / omniauth.rb
1 OmniAuth.config.logger = Rails.logger
2 OmniAuth.config.failure_raise_out_environments = []
3 OmniAuth.config.allowed_request_methods = [:post, :patch]
4
5 google_options = { :name => "google", :scope => "email", :access_type => "online" }
6 apple_options = { :name => "apple", :scope => "email name" }
7 facebook_options = { :name => "facebook", :scope => "email", :client_options => { :site => "https://graph.facebook.com/v17.0", :authorize_url => "https://www.facebook.com/v17.0/dialog/oauth" } }
8 microsoft_options = { :name => "microsoft", :scope => "openid User.Read" }
9 github_options = { :name => "github", :scope => "user:email" }
10 wikipedia_options = { :name => "wikipedia", :client_options => { :site => "https://meta.wikimedia.org" } }
11
12 google_options[:openid_realm] = Settings.google_openid_realm if Settings.key?(:google_openid_realm)
13
14 apple_options[:team_id] = Settings.apple_team_id if Settings.key?(:apple_team_id)
15 apple_options[:key_id] = Settings.apple_key_id if Settings.key?(:apple_key_id)
16 apple_options[:pem] = Settings.apple_private_key if Settings.key?(:apple_private_key)
17
18 Rails.application.config.middleware.use OmniAuth::Builder do
19   provider :google_oauth2, Settings.google_auth_id, Settings.google_auth_secret, google_options if Settings.key?(:google_auth_id)
20   provider :apple, Settings.apple_auth_id, "", apple_options if Settings.key?(:apple_auth_id)
21   provider :facebook, Settings.facebook_auth_id, Settings.facebook_auth_secret, facebook_options if Settings.key?(:facebook_auth_id)
22   provider :microsoft_graph, Settings.microsoft_auth_id, Settings.microsoft_auth_secret, microsoft_options if Settings.key?(:microsoft_auth_id)
23   provider :github, Settings.github_auth_id, Settings.github_auth_secret, github_options if Settings.key?(:github_auth_id)
24   provider :mediawiki, Settings.wikipedia_auth_id, Settings.wikipedia_auth_secret, wikipedia_options if Settings.key?(:wikipedia_auth_id)
25 end