docbrown/app/services/authentication/providers/github.rb
Anna Buianova 784afdf41e
Routine rubocop fixes (#19254)
* Rubocop fixes

* Rubocop fixes

* Fixed rubocop violation

* Fixed policies rubocop violations

* More rubocop fixes
2023-03-24 14:37:44 +03:00

47 lines
1 KiB
Ruby

module Authentication
module Providers
# GitHub authentication provider, uses omniauth-github as backend
class Github < Provider
OFFICIAL_NAME = "GitHub".freeze
SETTINGS_URL = "https://github.com/settings/applications".freeze
def self.official_name
OFFICIAL_NAME
end
def self.settings_url
SETTINGS_URL
end
def self.sign_in_path(**kwargs)
::Authentication::Paths.sign_in_path(
provider_name,
**kwargs,
)
end
def new_user_data
name = raw_info.name.presence || info.name
{
email: info.email.to_s,
github_username: info.nickname,
name: name,
remote_profile_image_url: Users::SafeRemoteProfileImageUrl.call(info.image.to_s)
}
end
def existing_user_data
{
github_username: info.nickname
}
end
protected
def cleanup_payload(auth_payload)
auth_payload
end
end
end
end