Sha256: 95b884e51639d952541cb517a132969a3d66df05bd6d79637f0b989c0f8bf49c

Contents?: true

Size: 1.54 KB

Versions: 7

Compression:

Stored size: 1.54 KB

Contents

require 'stringex'
require 'paperclip'
require 'mime/types'
require 'acts_as_list'

class PapermillAsset < ActiveRecord::Base
  acts_as_list :scope => 'assetable_key=\'#{assetable_key.to_s.simple_sql_sanitizer}\' AND assetable_id=#{assetable_id} AND assetable_type=\'#{assetable_type}\''
  
  belongs_to :assetable, :polymorphic => true
  before_destroy :destroy_files

  Paperclip::Attachment.interpolations[:escaped_basename] = proc do |attachment, style|
    Paperclip::Attachment.interpolations[:basename].call(attachment, style).to_url
  end
  
  has_attached_file :file,
    :path => "#{Papermill::PAPERMILL_DEFAULTS[:public_root]}/#{Papermill::PAPERMILL_DEFAULTS[:papermill_prefix]}/#{Papermill::PAPERCLIP_INTERPOLATION_STRING}",
    :url => "/#{Papermill::PAPERMILL_DEFAULTS[:papermill_prefix]}/#{Papermill::PAPERCLIP_INTERPOLATION_STRING}"
  validates_attachment_presence :file

  def swfupload_file=(data)
    data.content_type = MIME::Types.type_for(data.original_filename).to_s
    self.file = data
  end
  
  def id_partition
    ("%09d" % self.id).scan(/\d{3}/).join("/")
  end
  
  def name
    file_file_name
  end
  
  def size
    file_file_size
  end

  def url(style = nil)
    file.url(style && CGI::escape(style.to_s))
  end
  
  def content_type
    file_content_type && file_content_type.split("/")
  end
  
  def image?
    content_type && content_type.first == "image" && content_type[1]
  end
  
  def destroy_files
    system "rm -rf #{Papermill::papermill_interpolated_path({":id_partition" => self.id_partition}, ':id_partition')}/"
    true
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
BBenezech-papermill-0.5.4 lib/papermill/papermill_asset.rb
papermill-0.7.0 lib/papermill/papermill_asset.rb
papermill-0.6.1 lib/papermill/papermill_asset.rb
papermill-0.6.0 lib/papermill/papermill_asset.rb
papermill-0.5.8 lib/papermill/papermill_asset.rb
papermill-0.5.7 lib/papermill/papermill_asset.rb
BBenezech-papermill-0.5.5 lib/papermill/papermill_asset.rb