Use NotificationService for observers pt1

This commit is contained in:
Dmitriy Zaporozhets 2013-03-26 09:47:40 +02:00
parent f7e630c452
commit 448152ab94
3 changed files with 13 additions and 17 deletions

View file

@ -2,41 +2,33 @@ class IssueObserver < ActiveRecord::Observer
cattr_accessor :current_user cattr_accessor :current_user
def after_create(issue) def after_create(issue)
if issue.assignee && issue.assignee != current_user notification.new_issue(issue, current_user)
Notify.delay.new_issue_email(issue.id)
end
end end
def after_close(issue, transition) def after_close(issue, transition)
send_reassigned_email(issue) if issue.is_being_reassigned? notification.close_issue(issue, current_user)
create_note(issue) create_note(issue)
end end
def after_reopen(issue, transition) def after_reopen(issue, transition)
send_reassigned_email(issue) if issue.is_being_reassigned?
create_note(issue) create_note(issue)
end end
def after_update(issue) def after_update(issue)
send_reassigned_email(issue) if issue.is_being_reassigned? if issue.is_being_reassigned?
notification.reassigned_issue(issue, current_user)
end
end end
protected protected
# Create issue note with service comment like 'Status changed to closed'
def create_note(issue) def create_note(issue)
Note.create_status_change_note(issue, current_user, issue.state) Note.create_status_change_note(issue, current_user, issue.state)
[issue.author, issue.assignee].compact.uniq.each do |recipient|
Notify.delay.issue_status_changed_email(recipient.id, issue.id, issue.state, current_user.id)
end
end end
def send_reassigned_email(issue) def notification
recipient_ids = [issue.assignee_id, issue.assignee_id_was].keep_if {|id| id && id != current_user.id } NotificationService.new
recipient_ids.each do |recipient_id|
Notify.delay.reassigned_issue_email(recipient_id, issue.id, issue.assignee_id_was)
end
end end
end end

View file

@ -9,7 +9,7 @@ class KeyObserver < ActiveRecord::Observer
) )
# Notify about ssh key being added # Notify about ssh key being added
Notify.delay.new_ssh_key_email(key.id) if key.user NotificationService.new.new_key(key)
end end
def after_destroy(key) def after_destroy(key)

View file

@ -35,4 +35,8 @@ class NoteObserver < ActiveRecord::Observer
def team_without_note_author(note) def team_without_note_author(note)
note.project.users.reject { |u| u.id == note.author.id } note.project.users.reject { |u| u.id == note.author.id }
end end
def notification
NotificationService.new
end
end end