Sha256: 21d1ec5f58b58e2f93f6f2d6f5238d1e199a167314bd72d65f8866008013e671
Contents?: true
Size: 1.08 KB
Versions: 6
Compression:
Stored size: 1.08 KB
Contents
require 'restclient' class MLS::Flyer < MLS::Resource attribute :id, Fixnum attribute :digest, String attribute :avatar_digest, String attribute :file_name, String attribute :file_size, Fixnum def url(protocol='http') "#{protocol}://#{MLS.asset_host}/flyers/#{digest}/compressed/#{file_name}" end def avatar(size='150x100#', protocol='http') "#{protocol}://#{MLS.image_host}/#{avatar_digest}.jpg?s=#{URI.escape(size)}" end def self.create(attrs) attrs[:file].rewind url = MLS.url.dup url.user = nil url.path = "/api/flyers" if attrs[:subject] attrs[:subject_id] = attrs[:subject].id attrs[:subject_type] = attrs[:subject].class.name.split("::").last attrs.delete(:subject) end response = RestClient.post(url.to_s, {:flyer => attrs}, MLS.headers) attrs[:file].close unless attrs[:file].closed? MLS::Flyer::Parser.parse(response.body) end def self.find(id) response = MLS.get("/flyers/#{id}") MLS::Flyer::Parser.parse(response.body) end end class MLS::Flyer::Parser < MLS::Parser end
Version data entries
6 entries across 6 versions & 1 rubygems