docbrown/app/services/authentication/providers/github.rb
Michael Kohl 3173bb4bc2
Remove <provider>_created_at columns (#13264)
* Remove <provider>_created_at columns from User

* Update code

* Clean up

* Fix authenticator specs

* Restore old behavior

* Update provider account age logic, again
2021-04-29 10:24:16 -05: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 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
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
protected
def cleanup_payload(auth_payload)
auth_payload
end
end
end
end