Sha256: 99010f0dff3a9e664d5f98559214aaeab664a7c5f8ccd0df72ade40566efc2c0
Contents?: true
Size: 1.91 KB
Versions: 3
Compression:
Stored size: 1.91 KB
Contents
module Concen class GridFile include Mongoid::Document include Mongoid::Timestamps embedded_in :page, :class_name => "Concen::Page" field :filename, :type => String field :original_filename, :type => String field :private, :type => Boolean field :grid_id, :type => BSON::ObjectId validates_presence_of :filename validates_presence_of :original_filename validates_presence_of :grid_id after_destroy :destroy_gridfs def path "/gridfs/" + self.filename end def url(root_url) root_url.gsub!("concen.", "") # Remove concen subdomain. root_url = root_url[0..-2] # Remove trailing slash. root_url + self.path end def read grid = Mongo::Grid.new(Mongoid.database) grid.get(self.grid_id).read end def size grid = Mongo::Grid.new(Mongoid.database) grid.get(self.grid_id).file_length end def text? grid = Mongo::Grid.new(Mongoid.database) grid.get(self.grid_id).content_type.include?("text") || grid.get(self.grid_id).content_type.include?("javascript") end def store(content, filename) original_filename = filename.dup file_extension = File.extname(filename).downcase filename = "#{self.id.to_s}-#{File.basename(original_filename, file_extension).downcase.parameterize.gsub("_", "-")}#{file_extension}" grid = Mongo::Grid.new(Mongoid.database) content_type = MIME::Types.type_for(filename).first.to_s if self.grid_id grid.delete(self.grid_id) end if grid_id = grid.put(content, :content_type => content_type, :filename => filename, :safe => true) self.update_attributes(:filename => filename, :original_filename => original_filename, :grid_id => grid_id) else return false end end protected def destroy_gridfs grid = Mongo::Grid.new(Mongoid.database) grid.delete(self.grid_id) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
concen-0.1.2 | app/models/concen/grid_file.rb |
concen-0.1.1 | app/models/concen/grid_file.rb |
concen-0.1 | app/models/concen/grid_file.rb |