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