2009-01-06 11:49:19 +01:00
|
|
|
class Message < ActiveRecord::Base
|
|
|
|
belongs_to :sender, :class_name => "User", :foreign_key => "sender_id"
|
|
|
|
|
2009-01-15 18:26:37 +01:00
|
|
|
serialize :recipients_ids, Array
|
2011-05-18 14:47:17 +02:00
|
|
|
attr_accessor :sent_to_all, :group_id, :recipient_tokens
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2011-05-18 14:47:17 +02:00
|
|
|
scope :pending, where(:email_state => 0)
|
|
|
|
scope :sent, where(:email_state => 1)
|
|
|
|
scope :public, where(:private => false)
|
2009-01-15 18:26:37 +01:00
|
|
|
|
2009-01-06 11:49:19 +01:00
|
|
|
# Values for the email_state attribute: :none, :pending, :sent, :failed
|
|
|
|
EMAIL_STATE = {
|
2009-01-15 18:26:37 +01:00
|
|
|
:pending => 0,
|
|
|
|
:sent => 1,
|
|
|
|
:failed => 2
|
2009-01-06 11:49:19 +01:00
|
|
|
}
|
|
|
|
|
2009-01-15 18:26:37 +01:00
|
|
|
validates_presence_of :recipients_ids, :subject, :body
|
2009-01-06 11:49:19 +01:00
|
|
|
validates_length_of :subject, :in => 1..255
|
|
|
|
validates_inclusion_of :email_state, :in => EMAIL_STATE.values
|
2009-01-15 18:26:37 +01:00
|
|
|
|
2011-05-11 11:17:02 +02:00
|
|
|
before_validation :clean_up_recipient_ids, :on => :create
|
2009-01-15 18:26:37 +01:00
|
|
|
|
2011-05-11 11:17:02 +02:00
|
|
|
def clean_up_recipient_ids
|
2009-01-15 18:26:37 +01:00
|
|
|
self.recipients_ids = recipients_ids.uniq.reject { |id| id.blank? } unless recipients_ids.nil?
|
2009-03-06 19:38:06 +01:00
|
|
|
self.recipients_ids = User.all.collect(&:id) if sent_to_all == "1"
|
2009-01-15 18:26:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def add_recipients(users)
|
|
|
|
self.recipients_ids = [] if recipients_ids.blank?
|
|
|
|
self.recipients_ids += users.collect(&:id) unless users.blank?
|
|
|
|
end
|
|
|
|
|
|
|
|
def group_id=(group_id)
|
|
|
|
@group_id = group_id
|
|
|
|
add_recipients Group.find(group_id).users unless group_id.blank?
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|
|
|
|
|
2011-05-18 14:47:17 +02:00
|
|
|
def recipient_tokens=(ids)
|
|
|
|
@recipient_tokens = ids
|
|
|
|
add_recipients ids.split(",").collect { |id| User.find(id) }
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|
|
|
|
|
2011-05-18 14:47:17 +02:00
|
|
|
def reply_to=(message_id)
|
|
|
|
message = Message.find(message_id)
|
|
|
|
add_recipients(message.sender.to_a)
|
|
|
|
self.subject = "Re: #{message.subject}"
|
|
|
|
self.body = "#{message.sender.nick} schrieb am #{I18n.l(message.created_at.to_date)} um #{I18n.l(message.created_at, :format => :time)}:\n"
|
|
|
|
message.body.each_line{ |l| self.body += "> #{l}" }
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|
2011-05-18 14:47:17 +02:00
|
|
|
|
|
|
|
def mail_to=(user_id)
|
|
|
|
user = User.find(user_id)
|
|
|
|
add_recipients(user.to_a)
|
|
|
|
end
|
|
|
|
|
2009-01-06 11:49:19 +01:00
|
|
|
# Returns true if this message is a system message, i.e. was sent automatically by the FoodSoft itself.
|
|
|
|
def system_message?
|
|
|
|
self.sender_id.nil?
|
2009-01-15 18:26:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def sender_name
|
2009-09-05 21:08:32 +02:00
|
|
|
system_message? ? 'Foodsoft' : sender.nick rescue "??"
|
2009-01-15 18:26:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def recipients
|
|
|
|
User.find(recipients_ids)
|
|
|
|
end
|
2009-01-06 11:49:19 +01:00
|
|
|
|
|
|
|
# Sends all pending messages that are to be send as emails.
|
|
|
|
def self.send_emails
|
2009-01-15 18:26:37 +01:00
|
|
|
messages = Message.pending
|
|
|
|
for message in messages
|
|
|
|
for recipient in message.recipients
|
2009-03-06 20:08:11 +01:00
|
|
|
if recipient.settings['messages.sendAsEmail'] == "1" && !recipient.email.blank?
|
2009-03-09 13:02:43 +01:00
|
|
|
begin
|
2011-05-11 15:14:39 +02:00
|
|
|
Mailer.foodsoft_message(message, recipient).deliver
|
2009-03-09 13:02:43 +01:00
|
|
|
rescue
|
|
|
|
logger.warn "Deliver failed for #{recipient.nick}: #{recipient.email}"
|
|
|
|
end
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|
|
|
|
end
|
2009-01-15 18:26:37 +01:00
|
|
|
message.update_attribute(:email_state, 1)
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-05-07 20:50:39 +02:00
|
|
|
|
2011-05-07 21:55:24 +02:00
|
|
|
|
2011-05-07 20:50:39 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: messages
|
|
|
|
#
|
2011-05-07 21:55:24 +02:00
|
|
|
# id :integer(4) not null, primary key
|
|
|
|
# sender_id :integer(4)
|
2011-05-07 20:50:39 +02:00
|
|
|
# recipients_ids :text
|
|
|
|
# subject :string(255) not null
|
|
|
|
# body :text
|
2011-05-07 21:55:24 +02:00
|
|
|
# email_state :integer(4) default(0), not null
|
|
|
|
# private :boolean(1) default(FALSE)
|
2011-05-07 20:50:39 +02:00
|
|
|
# created_at :datetime
|
|
|
|
#
|
|
|
|
|