Sha256: add313db96078f37f38150393a77d136b2e6f1547c966ad7a533ba85fa9c2052

Contents?: true

Size: 1.22 KB

Versions: 2

Compression:

Stored size: 1.22 KB

Contents

class Message < ActiveRecord::Base
  #any additional info that needs to be sent in a message (ex. I use these to determine request types)
  serialize :headers
  
  attr_accessor :recipients
  
  class_inheritable_accessor :on_deliver_callback
  protected :on_deliver_callback  
  class_inheritable_accessor :on_deliver_clean
  protected :on_deliver_clean
  belongs_to :sender, :polymorphic => :true
  belongs_to :conversation
  has_many :receipts
  scope :conversation, lambda { |conversation|    
    where(:conversation_id => conversation.id)
  }
    
  class << self
    def on_deliver(clean_method, callback_method)
      self.on_deliver_clean = clean_method
      self.on_deliver_callback = callback_method
    end
  end  
  
  def deliver(mailbox_type, should_clean = true)
    self.on_deliver_clean.call(self) unless self.on_deliver_clean.nil? or !should_clean
    self.save
    self.recipients.each do |r|
      r.mailbox[mailbox_type] << self
    end
    self.on_deliver_callback.call(self, mailbox_type) unless self.on_deliver_callback.nil?
  end
  
  def get_recipients
    recipients_array = Array.new 
    self.receipts.each do |receipt|      
      recipients_array << receipt.receiver
    end
    return recipients_array.uniq
  end
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mailboxer-0.0.10 app/models/message.rb
mailboxer-0.0.9 app/models/message.rb