logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

url_validator.rb (410B)


  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).normalize
  9. !parsed_url.nil? && %w(http https).include?(parsed_url.scheme) && parsed_url.host
  10. end
  11. end