debian-mirror-gitlab/app/services/boards/issues/list_service.rb

73 lines
1.8 KiB
Ruby
Raw Normal View History

2016-09-13 17:45:13 +05:30
module Boards
module Issues
2018-03-17 18:26:18 +05:30
class ListService < Boards::BaseService
2016-09-13 17:45:13 +05:30
def execute
issues = IssuesFinder.new(current_user, filter_params).execute
2018-11-08 19:23:39 +05:30
issues = filter(issues)
2017-08-17 22:00:37 +05:30
issues.order_by_position_and_priority
2016-09-13 17:45:13 +05:30
end
private
2018-11-08 19:23:39 +05:30
def filter(issues)
issues = without_board_labels(issues) unless list&.movable? || list&.closed?
issues = with_list_label(issues) if list&.label?
issues
end
2016-11-03 12:29:30 +05:30
def board
2018-03-17 18:26:18 +05:30
@board ||= parent.boards.find(params[:board_id])
2016-11-03 12:29:30 +05:30
end
2016-09-13 17:45:13 +05:30
def list
2017-08-17 22:00:37 +05:30
return @list if defined?(@list)
@list = board.lists.find(params[:id]) if params.key?(:id)
end
2016-09-13 17:45:13 +05:30
def filter_params
2018-03-17 18:26:18 +05:30
set_parent
2016-09-13 17:45:13 +05:30
set_state
2018-05-09 12:01:36 +05:30
set_scope
2016-09-13 17:45:13 +05:30
params
end
2018-03-17 18:26:18 +05:30
def set_parent
2018-03-27 19:54:05 +05:30
if parent.is_a?(Group)
params[:group_id] = parent.id
else
params[:project_id] = parent.id
end
2016-09-13 17:45:13 +05:30
end
def set_state
2017-08-17 22:00:37 +05:30
params[:state] = list && list.closed? ? 'closed' : 'opened'
2016-09-13 17:45:13 +05:30
end
2018-05-09 12:01:36 +05:30
def set_scope
params[:include_subgroups] = board.group_board?
end
2016-09-13 17:45:13 +05:30
def board_label_ids
@board_label_ids ||= board.lists.movable.pluck(:label_id)
end
def without_board_labels(issues)
return issues unless board_label_ids.any?
2018-11-08 19:23:39 +05:30
issues.where.not('EXISTS (?)', issues_label_links.limit(1))
2018-03-17 18:26:18 +05:30
end
def issues_label_links
LabelLink.where("label_links.target_type = 'Issue' AND label_links.target_id = issues.id").where(label_id: board_label_ids)
2016-09-13 17:45:13 +05:30
end
def with_list_label(issues)
2018-11-08 19:23:39 +05:30
issues.where('EXISTS (?)', LabelLink.where("label_links.target_type = 'Issue' AND label_links.target_id = issues.id")
.where("label_links.label_id = ?", list.label_id).limit(1))
2016-09-13 17:45:13 +05:30
end
end
end
end