gitlab-org--gitlab-foss/app/services/boards/issues/move_service.rb
2016-08-17 12:58:58 -03:00

54 lines
1.2 KiB
Ruby

module Boards
module Issues
class MoveService < Boards::BaseService
def execute
return false unless issue.present?
return false unless valid_move?
return false unless user.can?(:update_issue, issue)
update_service.execute(issue)
reopen_service.execute(issue) if moving_from.done?
close_service.execute(issue) if moving_to.done?
true
end
private
def valid_move?
moving_from.present? && moving_to.present?
end
def issue
@issue ||= project.issues.visible_to_user(user).find_by!(iid: params[:id])
end
def moving_from
@moving_from ||= board.lists.find_by(id: params[:from])
end
def moving_to
@moving_to ||= board.lists.find_by(id: params[:to])
end
def close_service
::Issues::CloseService.new(project, user)
end
def reopen_service
::Issues::ReopenService.new(project, user)
end
def update_service
::Issues::UpdateService.new(project, user, issue_params)
end
def issue_params
{
add_label_ids: [moving_to.label_id].compact,
remove_label_ids: [moving_from.label_id].compact
}
end
end
end
end