debian-mirror-gitlab/app/services/issues/reorder_service.rb
2023-04-23 21:23:45 +05:30

37 lines
1 KiB
Ruby

# frozen_string_literal: true
module Issues
class ReorderService < Issues::BaseService
include Gitlab::Utils::StrongMemoize
# TODO: this is to be removed once we get to rename the IssuableBaseService project param to container
def initialize(container:, current_user: nil, params: {})
super(project: container, current_user: current_user, params: params)
end
def execute(issue)
return false unless can?(current_user, :update_issue, issue)
return false unless move_between_ids
update(issue, { move_between_ids: move_between_ids })
end
private
def update(issue, attrs)
::Issues::UpdateService.new(container: project, current_user: current_user, params: attrs).execute(issue)
rescue ActiveRecord::RecordNotFound
false
end
def move_between_ids
strong_memoize(:move_between_ids) do
ids = [params[:move_before_id], params[:move_after_id]]
.map(&:to_i)
.map { |m| m > 0 ? m : nil }
ids.any? ? ids : nil
end
end
end
end