In a Rails model how can I check if a URL on the same Rails server exists?

I'm using dragonfly and am trying to check the existence of an image from a path such as /media/BAhbBlsHOgZmIikyMDExLzExLzIxLzEwXzNxXzQyXzI5NF9Wb3NraG9kMi5qcGc

FileTest.exists? won't work because I don't have the file path and I can't open the URL because I don't have the server hostname.

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

You can get hostname from controller.

request.host
request.host_with_port
link|improve this answer
Thanks I can pass the host from the controller as an argument to the model method. However I'm finding this doesn't work because the server will hang and timeout. – Sheldno Nov 23 '11 at 14:51
Are you trying this in development? Or otherwise using only one worker (like single instance of thin)? – Sergio Tulentsev Nov 24 '11 at 1:37
Yep I was in development, thanks, it works on my production server. However due to caching on the server this won't accurately tell me if an image exists or not... so I'll need to come up with something else to solve this. – Sheldno Nov 24 '11 at 15:16
Can't you bypass cache by adding some dummy query parameter, /media/BAhbBlsHOgZmIikyMDExLzExLzIxLzEwXzNxXzQyXzI5NF9Wb3NraG9kMi5qcGc?no_cache=‌​1 – Sergio Tulentsev Nov 25 '11 at 7:22
Thanks, that's working! – Sheldno Nov 25 '11 at 15:43
feedback

Did you try using RAILS_ROOT?

FileTest.exists?("#{RAILS_ROOT}/public/#{filename}")
link|improve this answer
Thanks but this won't work because it requires a path to the actual file on the server, which I don't have (see original post). – Sheldno Nov 22 '11 at 22:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.