aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2012-11-29 08:54:50 +1300
committerPhilip Arndt <parndt@gmail.com>2012-11-29 08:54:50 +1300
commitf21691efb5de2b6cafa64b07b8e0fb2cb399244d (patch)
tree7c6c606da0c421c36b0bb7fabdcd4d81d8872791 /config
parent3442aeb85087df97d36673ad846a434412e5baea (diff)
downloadrefinerycms-blog-f21691efb5de2b6cafa64b07b8e0fb2cb399244d.tar.gz
refinerycms-blog-f21691efb5de2b6cafa64b07b8e0fb2cb399244d.tar.bz2
refinerycms-blog-f21691efb5de2b6cafa64b07b8e0fb2cb399244d.zip
Prevent post_spec.rb from hanging the entire spec run for 30 seconds while it tries to retrieve external resources.
Diffstat (limited to 'config')
-rw-r--r--config/initializers/url_validator.rb26
1 files changed, 15 insertions, 11 deletions
diff --git a/config/initializers/url_validator.rb b/config/initializers/url_validator.rb
index d956d04..e9dcb89 100644
--- a/config/initializers/url_validator.rb
+++ b/config/initializers/url_validator.rb
@@ -4,7 +4,7 @@ class UrlValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
url = value
-
+
# Regex code by 'Arsenic' from http://snippets.dzone.com/posts/show/3654
if url =~ /^
( (https?):\/\/ )?
@@ -21,21 +21,25 @@ $/ix
record.errors[attribute] << 'Not a valid URL'
end
- if options[:verify]
- begin
- url_response = RedirectFollower.new(url).resolve
- url = url_response.url if options[:verify] == [:resolve_redirects]
- rescue RedirectFollower::TooManyRedirects
- record.errors[attribute] << 'URL is redirecting too many times'
- rescue
- record.errors[attribute] << 'could not be resolved'
- end
- end
+ url = resolve_redirects_verify_url(url) if options[:verify]
if options[:update]
value.replace url
end
end
+
+ def resolve_redirects_verify_url(url)
+ begin
+ url_response = RedirectFollower.new(url).resolve
+ url = url_response.url if options[:verify] == [:resolve_redirects]
+ rescue RedirectFollower::TooManyRedirects
+ record.errors[attribute] << 'URL is redirecting too many times'
+ rescue
+ record.errors[attribute] << 'could not be resolved'
+ ensure
+ url
+ end
+ end
end
# Code below written by John Nunemaker