Refactor `User#suggest_name`.

* Rename `email` to `string` as variable can be an email, username
  or any valid string.
This commit is contained in:
Guo Xiang Tan 2018-05-17 14:51:48 +08:00
parent 441a52ad17
commit 117763493b
1 changed files with 5 additions and 9 deletions

View File

@ -286,15 +286,11 @@ class User < ActiveRecord::Base
user
end
def self.suggest_name(email)
return "" if email.blank?
if email[/\A[^@]+/].present?
# email provided
email[/\A[^@]+/].tr(".", " ").titleize
else
# username/name provided
email[/[^@]+\z/].tr(".", " ").titleize
end
def self.suggest_name(string)
return "" if string.blank?
local_part = string[/\A[^@]+/]
suggestion = local_part.present? ? local_part : string[/[^@]+\z/]
suggestion.tr(".", " ").titleize
end
def self.find_by_username_or_email(username_or_email)