Sha256: cc572e224b55079e5e40e0361a36171d646330d9aaa151eaca16abf19480d445

Contents?: true

Size: 774 Bytes

Versions: 7

Compression:

Stored size: 774 Bytes

Contents

require 'restclient'

class MLS::Photo < MLS::Resource

  property :id, Fixnum
  property :digest, String
  property :created_at, DateTime
  property :updated_at, DateTime
  property :file_content_type, String
  property :file_name, String
  property :file_size, Fixnum
  property :url_template, String

  def url(style='large', protocol='http')
    "#{protocol}://#{MLS.asset_host}/photos/#{style}/#{@digest}.jpg"
  end

  def self.create(attrs)
    attrs[:file].rewind
    url = MLS.url.dup
    url.user = nil
    url.path = "/api/photos"
    response = RestClient.post(url.to_s, {:file => attrs[:file]}, MLS.headers)
    attrs[:file].close unless attrs[:file].closed?

    MLS::Photo::Parser.parse(response.body)
  end
  
end

class MLS::Photo::Parser < MLS::Parser

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
mls-0.2.31 lib/mls/models/photo.rb
mls-0.2.29 lib/mls/models/photo.rb
mls-0.2.28 lib/mls/models/photo.rb
mls-0.2.26 lib/mls/models/photo.rb
mls-0.2.25 lib/mls/models/photo.rb
mls-0.2.24 lib/mls/models/photo.rb
mls-0.2.23 lib/mls/models/photo.rb