2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-22 21:52:12 -07:00
|
|
|
require 'text_sentinel'
|
|
|
|
require 'text_cleaner'
|
|
|
|
|
|
|
|
class QualityTitleValidator < ActiveModel::EachValidator
|
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
sentinel = TextSentinel.title_sentinel(value)
|
2020-11-11 15:11:36 +02:00
|
|
|
|
|
|
|
if !sentinel.valid?
|
|
|
|
if !sentinel.seems_meaningful?
|
|
|
|
record.errors.add(attribute, :is_invalid_meaningful)
|
|
|
|
elsif !sentinel.seems_unpretentious?
|
|
|
|
record.errors.add(attribute, :is_invalid_unpretentious)
|
|
|
|
elsif !sentinel.seems_quiet?
|
|
|
|
record.errors.add(attribute, :is_invalid_quiet)
|
|
|
|
else
|
|
|
|
record.errors.add(attribute, :is_invalid)
|
|
|
|
end
|
|
|
|
end
|
2013-05-22 21:52:12 -07:00
|
|
|
end
|
|
|
|
end
|