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