Commit a23f0e8c authored by Grzegorz Bizon's avatar Grzegorz Bizon

Reuse existing issue services when moving issue

parent 93812f25
module Issues module Issues
class CloseService < Issues::BaseService class CloseService < Issues::BaseService
def execute(issue, commit = nil) def execute(issue, commit = nil, notifications: true, system_note: true)
if project.jira_tracker? && project.jira_service.active if project.jira_tracker? && project.jira_service.active
project.jira_service.execute(commit, issue) project.jira_service.execute(commit, issue)
todo_service.close_issue(issue, current_user) todo_service.close_issue(issue, current_user)
...@@ -9,8 +9,8 @@ module Issues ...@@ -9,8 +9,8 @@ module Issues
if project.default_issues_tracker? && issue.close if project.default_issues_tracker? && issue.close
event_service.close_issue(issue, current_user) event_service.close_issue(issue, current_user)
create_note(issue, commit) create_note(issue, commit) if system_note
notification_service.close_issue(issue, current_user) notification_service.close_issue(issue, current_user) if notifications
todo_service.close_issue(issue, current_user) todo_service.close_issue(issue, current_user)
execute_hooks(issue, 'close') execute_hooks(issue, 'close')
end end
......
module Issues module Issues
class CreateService < Issues::BaseService class CreateService < Issues::BaseService
def execute def execute(set_author: true)
filter_params filter_params
label_params = params[:label_ids] label_params = params[:label_ids]
issue = project.issues.new(params.except(:label_ids)) issue = project.issues.new(params.except(:label_ids))
issue.author = current_user issue.author = current_user if set_author
if issue.save if issue.save
issue.update_attributes(label_ids: label_params) issue.update_attributes(label_ids: label_params)
......
...@@ -4,14 +4,20 @@ module Issues ...@@ -4,14 +4,20 @@ module Issues
super(project, current_user, params) super(project, current_user, params)
@issue_old = issue @issue_old = issue
@issue_new = issue.dup @issue_new = nil
@project_old = @project @project_old = @project
@project_new = Project.find(new_project_id)
if new_project_id
@project_new = Project.find(new_project_id)
end
end end
def execute def execute
return unless move? return unless move?
# Using trasaction because of a high footprint on
# rewriting notes (unfolding references)
#
ActiveRecord::Base.transaction do ActiveRecord::Base.transaction do
# New issue tasks # New issue tasks
# #
...@@ -25,10 +31,7 @@ module Issues ...@@ -25,10 +31,7 @@ module Issues
close_old_issue close_old_issue
end end
# Notifications and hooks notify_participants
#
# notify_participants
# trigger_hooks_and_events
@issue_new @issue_new
end end
...@@ -45,20 +48,14 @@ module Issues ...@@ -45,20 +48,14 @@ module Issues
end end
def create_new_issue def create_new_issue
@issue_new.project = @project_new new_params = { id: nil, iid: nil, milestone: nil, label_ids: [],
project: @project_new, author: @issue_old.author,
# Reset internal ID, will be regenerated before save description: rewrite_references(@issue_old) }
#
@issue_new.iid = nil
# Reset labels and milestones, as those are not valid in context create_service = CreateService.new(@project_new, @current_user,
# of a new project params.merge(new_params))
#
@issue_new.labels = []
@issue_new.milestone = nil
@issue_new.description = rewrite_references(@issue_old) @issue_new = create_service.execute(set_author: false)
@issue_new.save!
end end
def rewrite_notes def rewrite_notes
...@@ -72,7 +69,8 @@ module Issues ...@@ -72,7 +69,8 @@ module Issues
end end
def close_old_issue def close_old_issue
@issue_old.update(state: :closed) close_service = CloseService.new(@project_new, @current_user)
close_service.execute(@issue_old, notifications: false, system_note: false)
end end
def add_moved_from_note def add_moved_from_note
...@@ -93,30 +91,14 @@ module Issues ...@@ -93,30 +91,14 @@ module Issues
def noteable_content(noteable) def noteable_content(noteable)
case noteable case noteable
when Issue when Issue then noteable.description
noteable.description when Note then noteable.note
when Note
noteable.note
else else
raise 'Unexpected noteable while moving an issue' raise 'Unexpected noteable while moving an issue!'
end end
end end
def trigger_hooks_and_events
event_service.close_issue(@issue_old, @current_user)
event_service.open_issue(@issue_new, @current_user)
@issue_new.create_cross_references!(@current_user)
execute_hooks(@issue_old, 'close')
execute_hooks(@issue_new, 'open')
end
def notify_participants def notify_participants
todo_service.close_issue(@issue_old, @current_user)
todo_service.open_issue(@issue_new, @current_user)
notification_service.issue_moved(@issue_old, @issue_new, @current_user)
end end
end end
end end
...@@ -236,14 +236,6 @@ class NotificationService ...@@ -236,14 +236,6 @@ class NotificationService
end end
end end
def issue_moved(issue, old_project, new_project, current_user)
recipients = build_recipients(issue, old_project, current_user)
recipients.each do |recipient|
mailer.send('issue_moved', recipient.id, issue.id, current_user.id).deliver_later
end
end
protected protected
# Get project users with WATCH notification level # Get project users with WATCH notification level
......
...@@ -76,7 +76,7 @@ describe Issues::MoveService, services: true do ...@@ -76,7 +76,7 @@ describe Issues::MoveService, services: true do
it 'persists all changes' do it 'persists all changes' do
expect(old_issue.changed?).to be false expect(old_issue.changed?).to be false
expect(new_issue.persisted?).to be true expect(new_issue.changed?).to be false
end end
it 'preserves author' do it 'preserves author' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment