.circleci
.dependabot
.github
app
chewy
controllers
activitypub
admin
api
auth
confirmations_controller.rb
omniauth_callbacks_controller.rb
passwords_controller.rb
registrations_controller.rb
sessions_controller.rb
concerns
oauth
settings
well_known
about_controller.rb
account_follow_controller.rb
account_unfollow_controller.rb
accounts_controller.rb
application_controller.rb
authorize_interactions_controller.rb
custom_css_controller.rb
directories_controller.rb
emojis_controller.rb
filters_controller.rb
follower_accounts_controller.rb
following_accounts_controller.rb
home_controller.rb
intents_controller.rb
invites_controller.rb
manifests_controller.rb
media_controller.rb
media_proxy_controller.rb
public_timelines_controller.rb
relationships_controller.rb
remote_follow_controller.rb
remote_interaction_controller.rb
remote_unfollows_controller.rb
shares_controller.rb
statuses_controller.rb
stream_entries_controller.rb
tags_controller.rb
helpers
javascript
lib
mailers
models
policies
presenters
serializers
services
validators
views
workers
bin
config
db
dist
lib
log
nanobox
public
spec
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.sass-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
docker-compose.yml
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
* Cas authentication feature * Config * Remove class_eval + Omniauth initializer * Codeclimate review * Codeclimate review 2 * Codeclimate review 3 * Remove uid/email reconciliation * SAML authentication * Clean up code * Improve login form * Fix code style issues * Add locales
34 lines
932 B
Ruby
34 lines
932 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Auth::OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
|
skip_before_action :verify_authenticity_token
|
|
|
|
def self.provides_callback_for(provider)
|
|
provider_id = provider.to_s.chomp '_oauth2'
|
|
|
|
define_method provider do
|
|
@user = User.find_for_oauth(request.env['omniauth.auth'], current_user)
|
|
|
|
if @user.persisted?
|
|
sign_in_and_redirect @user, event: :authentication
|
|
set_flash_message(:notice, :success, kind: provider_id.capitalize) if is_navigational_format?
|
|
else
|
|
session["devise.#{provider}_data"] = request.env['omniauth.auth']
|
|
redirect_to new_user_registration_url
|
|
end
|
|
end
|
|
end
|
|
|
|
Devise.omniauth_configs.each_key do |provider|
|
|
provides_callback_for provider
|
|
end
|
|
|
|
def after_sign_in_path_for(resource)
|
|
if resource.email_verified?
|
|
root_path
|
|
else
|
|
finish_signup_path
|
|
end
|
|
end
|
|
end
|