2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
# Search for milestones
|
|
|
|
#
|
|
|
|
# params - Hash
|
2019-03-02 22:35:43 +05:30
|
|
|
# project_ids: Array of project ids or single project id or ActiveRecord relation.
|
|
|
|
# group_ids: Array of group ids or single group id or ActiveRecord relation.
|
2017-09-10 17:25:29 +05:30
|
|
|
# order - Orders by field default due date asc.
|
|
|
|
# title - filter by title.
|
|
|
|
# state - filters by state.
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
class MilestonesFinder
|
2018-03-27 19:54:05 +05:30
|
|
|
include FinderMethods
|
2020-03-13 15:44:24 +05:30
|
|
|
include TimeFrameFilter
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
attr_reader :params
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
def initialize(params = {})
|
|
|
|
@params = params
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
|
|
|
items = Milestone.all
|
|
|
|
items = by_groups_and_projects(items)
|
|
|
|
items = by_title(items)
|
2019-03-02 22:35:43 +05:30
|
|
|
items = by_search_title(items)
|
2017-09-10 17:25:29 +05:30
|
|
|
items = by_state(items)
|
2020-03-13 15:44:24 +05:30
|
|
|
items = by_timeframe(items)
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
order(items)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def by_groups_and_projects(items)
|
2019-03-02 22:35:43 +05:30
|
|
|
items.for_projects_and_groups(params[:project_ids], params[:group_ids])
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-09-10 17:25:29 +05:30
|
|
|
def by_title(items)
|
|
|
|
if params[:title]
|
|
|
|
items.where(title: params[:title])
|
|
|
|
else
|
|
|
|
items
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
def by_search_title(items)
|
|
|
|
if params[:search_title].present?
|
|
|
|
items.search_title(params[:search_title])
|
|
|
|
else
|
|
|
|
items
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def by_state(items)
|
|
|
|
Milestone.filter_by_state(items, params[:state])
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-09-10 17:25:29 +05:30
|
|
|
def order(items)
|
2018-03-17 18:26:18 +05:30
|
|
|
order_statement = Gitlab::Database.nulls_last_order('due_date', 'ASC')
|
|
|
|
items.reorder(order_statement).order('title ASC')
|
2015-11-26 14:37:03 +05:30
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2015-11-26 14:37:03 +05:30
|
|
|
end
|