Sha256: 721f4e6fb42a4850f049196fe0db383d03905c5ad79ada8a5dc3f79e75c08089
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
class Document < ActiveRecord::Base include SocialStream::Models::Object IMAGE_FORMATS = ["doc","ppt","xls","rar","zip","mpeg","plain","pdf"] STYLE_FORMAT = {"webm" =>"webm", "flv"=>"flv", "thumb"=>"png", "thumb0"=>"png"} has_attached_file :file, :url => '/:class/:id.:extension', :path => ':rails_root/documents/:class/:id_partition/:style.:extension' validates_attachment_presence :file class << self def new(*args) if !(self.name == "Document") return super end doc = super if(doc.file_content_type.nil?) return doc end if !(doc.file_content_type =~ /^image.*/).nil? return Picture.new *args end if !(doc.file_content_type =~ /^audio.*/).nil? return Audio.new *args end if !(doc.file_content_type =~ /^video.*/).nil? return Video.new *args end return doc end end def mime_type Mime::Type.lookup(file_content_type) end def format mime_type.to_sym end # Thumbnail file def thumb(size, helper) if format && IMAGE_FORMATS.include?(format.to_s) "#{ size.to_s }/#{ format }.png" else "#{ size.to_s }/default.png" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
social_stream-documents-0.2.3 | app/models/document.rb |