2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'app/validators/url_validator.rb', line 2
def validate_each(record, attribute, value)
schemes = ['https', 'http']
begin
uri = URI.parse(value)
host = uri && uri.host
scheme = uri && uri.scheme
valid_scheme = host && scheme && schemes.include?(scheme)
valid_raw_url = scheme && value.match?(URI::regexp([scheme]))
unless valid_raw_url && valid_scheme
record.errors.add(attribute, :invalid)
end
rescue URI::InvalidURIError
record.errors.add(attribute, :invalid)
end
end
|