Sha256: 6b92d3ac831566125104fb5acc4cc88f73d04201a5f1f02518013d94609503c9

Contents?: true

Size: 1.48 KB

Versions: 12

Compression:

Stored size: 1.48 KB

Contents

class Photo < ActiveRecord::Base
  belongs_to :index
  attr_accessible :name, :description, :asset, :asset_file_name, :asset_content_type, :asset_file_size, :owner_id, :owner_type, :klass

  include ActsAsPrioritizable
  acts_as_prioritizable("index", "assets")

  has_attached_file :asset,
    :styles => {
      :original => "1000>",
      :medium => "400>",
      :thumb => "200>"
    },
    :storage => :s3,
    :s3_credentials => "#{Rails.root}/config/s3.yml",
    :bucket => APP_CONFIG[:bucket_name],
    :path => "/photos/#{Rails.env}/:id/:style_:filename",
    :default_url => "/photos/default/:style_missing.jpg",
    :convert_options => {:all => "-auto-orient"}

  before_post_process :transliterate_file_name

  def thumb
    asset.url(:thumb)
  end

  def klass
    read_attribute(:klass).nil? ? "" : read_attribute(:klass)
  end

  def which?
    case klass
      when "center" then return :original
      when "left" then return :medium
      when "right" then return :medium
      when "thumb" then return :thumb 
    end
  end

  def transliterate(str)
    s = Iconv.iconv('ascii//ignore//translit', 'utf-8', str).to_s
    s.downcase!
    s.gsub!(/'/, '')
    s.gsub!(/[^A-Za-z0-9]+/, ' ')
    s.strip!
    s.gsub!(/\ +/, '-')
    s
  end

  def transliterate_file_name
    extension = File.extname(asset_file_name).gsub(/^\.+/, '')
    filename = asset_file_name.gsub(/\.#{extension}$/, '')
    self.asset.instance_write(:file_name, "#{transliterate(filename)}.#{transliterate(extension)}")
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
sbdevcore-0.1.2 app/models/photo.rb
sbdevcore-0.1.1 app/models/photo.rb
sbdevcore-0.1.0 app/models/photo.rb
sbdevcore-0.0.9 app/models/photo.rb
sbdevcore-0.0.8 app/models/photo.rb
sbdevcore-0.0.7 app/models/photo.rb
sbdevcore-0.0.6 app/models/photo.rb
sbdevcore-0.0.5 app/models/photo.rb
sbdevcore-0.0.4 app/models/photo.rb
sbdevcore-0.0.3 app/models/photo.rb
sbdevcore-0.0.1 app/models/photo.rb
sbdev-core-0.0.1 app/models/photo.rb