2017-01-16 00:01:33 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UrlValidator < ActiveModel::EachValidator
|
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
record.errors.add(attribute, I18n.t('applications.invalid_url')) unless compliant?(value)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def compliant?(url)
|
2017-04-25 10:47:31 +10:00
|
|
|
parsed_url = Addressable::URI.parse(url).normalize
|
2017-01-16 00:01:33 +11:00
|
|
|
!parsed_url.nil? && %w(http https).include?(parsed_url.scheme) && parsed_url.host
|
|
|
|
end
|
|
|
|
end
|