docbrown/app/services/authentication/providers/forem.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

51 lines
1.2 KiB
Ruby

module Authentication
module Providers
class Forem < Provider
OFFICIAL_NAME = "Forem".freeze
DOMAIN_URL = ApplicationConfig["FOREM_OAUTH_URL"] || "https://account.forem.com".freeze
SETTINGS_URL = "#{DOMAIN_URL}/oauth/authorized_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
{
email: info.email,
name: info.name,
remote_profile_image_url: raw_info.remote_profile_image_url,
forem_username: info.user_nickname
}
end
def existing_user_data
{
email: info.email,
name: info.name,
forem_username: info.user_nickname
}
end
delegate :user_nickname, to: :info
protected
# Remove sensible data from the payload: None in this case so return as-is
# For more details see Authentication::Providers::Provider#cleanup_payload
def cleanup_payload(auth_payload)
auth_payload
end
end
end
end