Retrospring/app/validators/screen_name_validator.rb

12 lines
600 B
Ruby
Raw Normal View History

2022-01-22 12:32:45 -08:00
# frozen_string_literal: true
class ScreenNameValidator < ActiveModel::EachValidator
FORBIDDEN_SCREEN_NAMES = APP_CONFIG["forbidden_screen_names"].freeze
2022-01-22 12:32:45 -08:00
FORBIDDEN_SCREEN_NAME_REGEXPS = [/wreciap\z/i].freeze
def validate_each(record, attribute, value)
record.errors.add(attribute, message: "Thou shalt not use this username! Please choose another one.") if FORBIDDEN_SCREEN_NAMES.include?(value.downcase)
record.errors.add(attribute, message: "Registration is tempoarily disabled for new users.") if FORBIDDEN_SCREEN_NAME_REGEXPS.any? { |regexp| value.downcase =~ regexp }
end
2015-04-18 13:12:58 -07:00
end