2019-03-23 13:07:04 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ExistingUsernameValidator < ActiveModel::EachValidator
|
|
|
|
def validate_each(record, attribute, value)
|
2023-10-16 13:41:23 +00:00
|
|
|
@value = value
|
|
|
|
return if @value.blank?
|
2019-03-23 13:07:04 +00:00
|
|
|
|
2023-10-16 13:41:23 +00:00
|
|
|
if options[:multiple]
|
|
|
|
record.errors.add(attribute, not_found_multiple_message) if usernames_with_no_accounts.any?
|
|
|
|
elsif usernames_with_no_accounts.any? || usernames_and_domains.size > 1
|
|
|
|
record.errors.add(attribute, not_found_message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def usernames_and_domains
|
|
|
|
@value.split(',').filter_map do |string|
|
|
|
|
username, domain = string.strip.gsub(/\A@/, '').split('@', 2)
|
2023-02-18 22:09:40 +00:00
|
|
|
domain = nil if TagManager.instance.local_domain?(domain)
|
2021-04-24 15:01:43 +00:00
|
|
|
|
2023-02-18 22:09:40 +00:00
|
|
|
next if username.blank?
|
2021-04-24 15:01:43 +00:00
|
|
|
|
2023-10-16 13:41:23 +00:00
|
|
|
[string, username, domain]
|
2023-05-23 08:49:12 +00:00
|
|
|
end
|
2023-10-16 13:41:23 +00:00
|
|
|
end
|
2021-04-24 15:01:43 +00:00
|
|
|
|
2023-10-16 13:41:23 +00:00
|
|
|
def usernames_with_no_accounts
|
|
|
|
usernames_and_domains.filter_map do |(string, username, domain)|
|
|
|
|
string unless Account.find_remote(username, domain)
|
2021-04-24 15:01:43 +00:00
|
|
|
end
|
2023-10-16 13:41:23 +00:00
|
|
|
end
|
2021-04-24 15:01:43 +00:00
|
|
|
|
2023-10-16 13:41:23 +00:00
|
|
|
def not_found_multiple_message
|
|
|
|
I18n.t('existing_username_validator.not_found_multiple', usernames: usernames_with_no_accounts.join(', '))
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_found_message
|
|
|
|
I18n.t('existing_username_validator.not_found')
|
2019-03-23 13:07:04 +00:00
|
|
|
end
|
|
|
|
end
|