2019-04-29 20:25:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-02-06 06:08:37 -05:00
|
|
|
class ReplyByEmailAddressValidator
|
|
|
|
def initialize(opts = {})
|
|
|
|
@opts = opts
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_value?(val)
|
2018-03-02 11:53:18 -05:00
|
|
|
return true if val.blank?
|
2018-04-17 11:08:12 -04:00
|
|
|
return false if !val.include?("@")
|
|
|
|
|
|
|
|
value = val.dup
|
2019-04-29 20:25:53 -04:00
|
|
|
value.strip!
|
2015-02-06 06:08:37 -05:00
|
|
|
|
2018-03-02 11:53:18 -05:00
|
|
|
if SiteSetting.find_related_post_with_key
|
2018-04-17 11:08:12 -04:00
|
|
|
return false if !value.include?("%{reply_key}")
|
|
|
|
value.sub!(/\+?%{reply_key}/, "")
|
2018-03-02 11:53:18 -05:00
|
|
|
end
|
2018-04-17 11:08:12 -04:00
|
|
|
|
|
|
|
value != SiteSetting.notification_email && !value.include?(" ")
|
2015-02-06 06:08:37 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def error_message
|
|
|
|
I18n.t('site_settings.errors.invalid_reply_by_email_address')
|
|
|
|
end
|
|
|
|
end
|