2014-06-18 10:49:21 -04:00
|
|
|
class StringSettingValidator
|
2017-10-04 15:08:51 -04:00
|
|
|
|
|
|
|
include RegexSettingValidation
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def initialize(opts = {})
|
2014-06-18 10:49:21 -04:00
|
|
|
@opts = opts
|
2017-10-04 15:08:51 -04:00
|
|
|
initialize_regex_opts(opts)
|
2014-06-18 10:49:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def valid_value?(val)
|
|
|
|
return true if !val.present?
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
if (@opts[:min] && @opts[:min].to_i > (val.length)) || (@opts[:max] && @opts[:max].to_i < (val.length))
|
2014-06-18 10:49:21 -04:00
|
|
|
@length_fail = true
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2017-10-04 15:08:51 -04:00
|
|
|
regex_match?(val)
|
2014-06-18 10:49:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def error_message
|
|
|
|
if @regex_fail
|
2015-02-26 19:45:56 -05:00
|
|
|
I18n.t(@regex_error)
|
2014-06-18 10:49:21 -04:00
|
|
|
elsif @length_fail
|
|
|
|
if @opts[:min] && @opts[:max]
|
2017-07-27 21:20:09 -04:00
|
|
|
I18n.t('site_settings.errors.invalid_string_min_max', min: @opts[:min], max: @opts[:max])
|
2014-06-18 10:49:21 -04:00
|
|
|
elsif @opts[:min]
|
2017-07-27 21:20:09 -04:00
|
|
|
I18n.t('site_settings.errors.invalid_string_min', min: @opts[:min])
|
2014-06-18 10:49:21 -04:00
|
|
|
else
|
2017-07-27 21:20:09 -04:00
|
|
|
I18n.t('site_settings.errors.invalid_string_max', max: @opts[:max])
|
2014-06-18 10:49:21 -04:00
|
|
|
end
|
|
|
|
else
|
|
|
|
I18n.t('site_settings.errors.invalid_string')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|