Created
December 26, 2009 23:20
-
-
Save bitzesty/264077 to your computer and use it in GitHub Desktop.
rails metal to be used with carrierwave (gridfs) and MongoMapper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.metals = ["Gridfs"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rails metal to be used with carrierwave (gridfs) and MongoMapper | |
require 'mongo' | |
require 'mongo/gridfs' | |
# Allow the metal piece to run in isolation | |
require(File.dirname(__FILE__) + "/../../config/environment") unless defined?(Rails) | |
class Gridfs | |
def self.call(env) | |
if env["PATH_INFO"] =~ /^\/images\/gridfs\/(.+)$/ | |
key = $1 | |
if ::GridFS::GridStore.exist?(MongoMapper.database, key) | |
::GridFS::GridStore.open(MongoMapper.database, key, 'r') do |file| | |
[200, {'Content-Type' => file.content_type}, [file.read]] | |
end | |
else | |
[404, {'Content-Type' => 'text/plain'}, ['File not found.']] | |
end | |
else | |
[404, {'Content-Type' => 'text/plain'}, ['File not found.']] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment