2017-01-15 08:01:33 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-18 21:42:43 -04:00
|
|
|
class URLValidator < ActiveModel::EachValidator
|
2017-01-15 08:01:33 -05:00
|
|
|
def validate_each(record, attribute, value)
|
2022-06-09 15:57:36 -04:00
|
|
|
record.errors.add(attribute, :invalid) unless compliant?(value)
|
2017-01-15 08:01:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def compliant?(url)
|
2019-01-05 01:16:46 -05:00
|
|
|
parsed_url = Addressable::URI.parse(url)
|
|
|
|
parsed_url && %w(http https).include?(parsed_url.scheme) && parsed_url.host
|
2023-01-05 07:33:33 -05:00
|
|
|
rescue Addressable::URI::InvalidURIError
|
|
|
|
false
|
2017-01-15 08:01:33 -05:00
|
|
|
end
|
|
|
|
end
|