2018-03-21 18:26:53 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-24 21:19:17 +09:00
|
|
|
# See also: USERNAME_RE in the Account class
|
|
|
|
|
2018-03-21 18:26:53 +09:00
|
|
|
class UniqueUsernameValidator < ActiveModel::Validator
|
|
|
|
def validate(account)
|
2021-03-01 12:59:13 +09:00
|
|
|
return if account.username.blank?
|
2018-03-21 18:26:53 +09:00
|
|
|
|
2024-05-28 23:11:31 +09:00
|
|
|
scope = Account.with_username(account.username).with_domain(account.domain)
|
2018-03-21 18:26:53 +09:00
|
|
|
scope = scope.where.not(id: account.id) if account.persisted?
|
|
|
|
|
|
|
|
account.errors.add(:username, :taken) if scope.exists?
|
|
|
|
end
|
|
|
|
end
|