This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-01-15 14:01:33 +01: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 02:47:31 +02:00
|
|
|
parsed_url = Addressable::URI.parse(url).normalize
|
2017-01-15 14:01:33 +01:00
|
|
|
!parsed_url.nil? && %w(http https).include?(parsed_url.scheme) && parsed_url.host
|
|
|
|
end
|
|
|
|
end
|