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