Sha256: 5a16db87130dd2e682c471626ad0a20957222be82a99b0280126563087fc29b6

Contents?: true

Size: 1.44 KB

Versions: 16

Compression:

Stored size: 1.44 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", "webma"=>"webm"}

  STYLE_MIMETYPE = {"webm" =>"video/webm", "flv"=>"video/x-flv", "thumb"=>"image/png", "thumb0"=>"image/png", "mp3"=>"audio/mpeg", "webma"=>"audio/webm"}

  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

16 entries across 16 versions & 2 rubygems

Version Path
social_stream-0.10.4 documents/app/models/document.rb
social_stream-0.10.3 documents/app/models/document.rb
social_stream-0.10.2 documents/app/models/document.rb
social_stream-0.10.1 documents/app/models/document.rb
social_stream-0.10.0 documents/app/models/document.rb
social_stream-0.9.7 documents/app/models/document.rb
social_stream-0.9.6 documents/app/models/document.rb
social_stream-0.9.5 documents/app/models/document.rb
social_stream-documents-0.2.8 app/models/document.rb
social_stream-0.9.4 documents/app/models/document.rb
social_stream-documents-0.2.7 app/models/document.rb
social_stream-0.9.3 documents/app/models/document.rb
social_stream-0.9.2 documents/app/models/document.rb
social_stream-documents-0.2.6 app/models/document.rb
social_stream-documents-0.2.5 app/models/document.rb
social_stream-documents-0.2.4 app/models/document.rb