Sha256: e8ac1eee4f971c1df6a62eba50d5c8ca75184dc86bb4f40b237698798151502c

Contents?: true

Size: 901 Bytes

Versions: 5

Compression:

Stored size: 901 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
  property :caption, String
  property :subject_id, Fixnum

  def url(style=nil, protocol='http')
    result = "#{protocol}://#{MLS.image_host}/#{digest}.jpg"
    if style
      result = result + "?s=#{URI.escape(style)}"
    end
    
    result
  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, {:photo => attrs}, 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

5 entries across 5 versions & 1 rubygems

Version Path
mls-0.11.3 lib/mls/models/photo.rb
mls-0.11.2 lib/mls/models/photo.rb
mls-0.11.1 lib/mls/models/photo.rb
mls-0.11.0 lib/mls/models/photo.rb
mls-0.9.9 lib/mls/models/photo.rb