Class: Nylas::Draft

Inherits:
Message show all
Defined in:
lib/draft.rb

Instance Attribute Summary

Attributes inherited from RestfulModel

#raw_json

Instance Method Summary collapse

Methods inherited from Message

#expanded, #files, #files?, #inflate, #raw

Methods included from ReadUnreadMethods

#mark_as_read!, #mark_as_unread!, #star!, #unstar!, #update_param!

Methods inherited from RestfulModel

#==, collection_name, #inflate, #initialize, #save!, #update, #url

Methods included from TimeAttrAccessor

#time_attr_accessor

Methods included from Parameters

included, #parameters

Constructor Details

This class inherits a constructor from Nylas::RestfulModel

Instance Method Details

#as_json(options = {}) ⇒ Object



17
18
19
20
21
22
23
24
# File 'lib/draft.rb', line 17

def as_json(options = {})
  # FIXME @karim: this is a bit of a hack --- Draft inherits Message
  # was okay until we overrode Message#as_json to allow updating folders/labels.
  # This broke draft sending, which relies on RestfulModel::as_json to work.
  grandparent = self.class.superclass.superclass
  meth = grandparent.instance_method(:as_json)
  meth.bind(self).call
end

#attach(file) ⇒ Object



11
12
13
14
15
# File 'lib/draft.rb', line 11

def attach(file)
  file.save! unless file.id
  @file_ids ||= []
  @file_ids.push(file.id)
end

#destroyObject



42
43
44
45
46
# File 'lib/draft.rb', line 42

def destroy
  ::RestClient::Request.execute(method: :delete, url: self.url, payload: ({ :version => self.version }).to_json) do |response, request, result|
    response = Nylas.interpret_response(result, response, options={:raw_response=>true})
  end
end

#send!Object



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/draft.rb', line 26

def send!
  url = @_api.url_for_path("/send")
  if @id
    data = {:draft_id => @id, :version => @version}
  else
    data = as_json()
  end

  ::RestClient.post(url, data.to_json, :content_type => :json) do |response, request, result|
    response = Nylas.interpret_response(result, response, {:expected_class => Object})
    self.inflate(response)
  end

  self
end