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