Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It appears the Net::HTTP library doesn't support loading of local file via file:// . I'd like to configure loading of content from a file or remotely, depending on environment.

Is there a standard Ruby way to access either type the same way, or barring that some succinct code that branches?

share|improve this question

2 Answers

up vote 3 down vote accepted

Do you know about open-uri?

require 'open-uri'

open("/home/me/file.txt") { |f| ... }
open("http://www.google.com") { |f| ... }
share|improve this answer

As Ben Lee pointed out, open-uri is the way to go here. I've also used it in combination with paperclip for storing resources associated with models, which makes everything brilliantly simple.

require 'open-uri'
class SomeModel < ActiveRecord::Base
  attr_accessor :remote_url

  has_attached_file :resource # etc, etc.

  before_validation :get_remote_resource, :if => :remote_url_provided?

  validates_presence_of :remote_url, :if => :remote_url_provided?,
                                     :message => 'is invalid or missing'

  def get_remote_resource
    self.resource = SomeModel.download_remote_resource(self.remote_url)
  end

  def self.download_remote_resource (uri)
    io = open(URI.parse(uri))
    def io.original_filename; base_uri.path.split('/').last; end
    io.original_filename.blank? ? nil : io
    rescue 
  end
end

# SomeModel.new(:remote_url => 'http://www.google.com/').save
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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