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