Files
grecia/app/models/comment_notifier.rb
2015-09-14 14:09:24 +02:00

34 lines
746 B
Ruby

class CommentNotifier
def initialize(args = {})
@comment = args.fetch(:comment)
@author = @comment.author
end
def process
send_comment_email
send_reply_email
end
private
def send_comment_email
Mailer.comment(@comment).deliver_later if email_on_comment?
end
def send_reply_email
Mailer.reply(@comment).deliver_later if email_on_comment_reply?
end
def email_on_comment?
commentable_author = @comment.commentable.author
commentable_author != @author && commentable_author.email_on_comment?
end
def email_on_comment_reply?
return false unless @comment.reply?
parent_author = @comment.parent.author
parent_author != @author && parent_author.email_on_comment_reply?
end
end