Class: MLS::Photo

Inherits:
Resource show all
Defined in:
lib/mls/models/photo.rb

Defined Under Namespace

Classes: Parser

Instance Attribute Summary

Attributes inherited from Resource

#errors, #persisted

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Resource

#==, #create!, inherited, #initialize, #new_record?, #persisted?, #properties, #properties_excluded_from_comparison, #properties_for_comparison, #save, #save!, #set_default_values, #to_hash, #to_key, #update!, #update_attributes

Constructor Details

This class inherits a constructor from MLS::Resource

Class Method Details

.create(attrs) ⇒ Object



19
20
21
22
23
24
25
26
27
28
# File 'lib/mls/models/photo.rb', line 19

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

Instance Method Details

#url(style = '700x467#', protocol = 'http') ⇒ Object



15
16
17
# File 'lib/mls/models/photo.rb', line 15

def url(style='700x467#', protocol='http')
  "#{protocol}://#{MLS.image_host}/#{digest}.jpg?s=#{URI.escape(style)}"
end