The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
394 B

  1. # frozen_string_literal: true
  2. class UrlValidator < ActiveModel::EachValidator
  3. def validate_each(record, attribute, value)
  4. record.errors.add(attribute, I18n.t('applications.invalid_url')) unless compliant?(value)
  5. end
  6. private
  7. def compliant?(url)
  8. parsed_url = Addressable::URI.parse(url)
  9. parsed_url && %w(http https).include?(parsed_url.scheme) && parsed_url.host
  10. end
  11. end