Sha256: 70ff32a890057e8145b0a65468b50d64e65686d341a54049b1f9b82fede85c15
Contents?: true
Size: 788 Bytes
Versions: 1
Compression:
Stored size: 788 Bytes
Contents
class UrlFormatValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) format_value(record, attribute, value) unless URI.parse(value).kind_of?(URI::HTTP) && value =~ url_regexp record.errors[attribute] << (options[:message] || "is invalid") end rescue URI::InvalidURIError record.errors[attribute] << (options[:message] || "is invalid") end def format_value(record, attribute, value) record.send("#{attribute}=","http://#{value}") unless value =~ /\Ahttps?:\/\// end # Thanks to Dean Perry and Ryan Bates # https://github.com/deanperry/url_formatter/blob/master/lib/url_formatter.rb def url_regexp /\Ahttps?:\/\/([\A\s:@]+:[\A\s:@]*@)?[-[[:alnum:]]]+(\.[-[[:alnum:]]]+)+\.?(:\d{1,5})?([\/?]\S*)?\z/iux end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
url_format-0.0.7 | lib/url_format/url_format_validator.rb |