Sha256: b0cc8e415033af1189cb98ebd91c29e5f11fe0682fddec413b5ca769ba6108ac

Contents?: true

Size: 1.39 KB

Versions: 3

Compression:

Stored size: 1.39 KB

Contents

class Facebooker::Attachment
  
  def initialize
    @storage = {}
  end
  
  def self.hash_populating_accessor(*names)
    names.each do |name|
      define_method(name) do
        @storage[name]
      end
      define_method("#{name}=") do |val|
        @storage[name]=val
      end
    end
  end
  
  hash_populating_accessor :name,:href, :comments_xid, :description, :caption
  
  def add_media(hash)
    @storage[:media]||=[]
    @storage[:media] << hash
  end
  
  def add_image(source,href)
    add_media({:type=>"image",:src=>source,:href=>href})
  end
  
  def add_mp3(source,title=nil,artist=nil,album=nil)
    params = {:src=>source,:type=>"mp3"}
    params[:title] =  title unless title.nil?
    params[:artist] =  artist unless artist.nil?
    params[:album] =  album unless album.nil?
    add_media(params)
  end
  
  def add_flash(swfsource, imgsource, width=nil, height=nil, expanded_width=nil, expanded_height=nil)
    params={:type=>"flash",:swfsrc=>swfsource,:imgsrc=>imgsource}
    params[:width] = width unless width.nil?
    params[:height] = height unless height.nil?
    params[:expanded_width] = expanded_width unless expanded_width.nil?
    params[:expanded_height] = expanded_height unless expanded_height.nil?
    add_media(params)
  end

  
  def add_property(key, value)
    @storage[:properties] ||= {}
    @storage[:properties][key] = value
  end


  
  def to_hash
    @storage
  end
  
  
end

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
facebooker-1.0.75 lib/facebooker/attachment.rb
sentientmonkey-facebooker-1.0.74 lib/facebooker/attachment.rb
facebooker-micah-1.0.74 lib/facebooker/attachment.rb