debian-mirror-gitlab/app/finders/milestones_finder.rb

77 lines
1.7 KiB
Ruby
Raw Normal View History

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
2020-10-24 23:57:45 +05:30
# ids - filters by id.
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.
2021-01-03 14:25:43 +05:30
# start_date & end_date - filters by timeframe (see TimeFrameFilter)
# containing_date - filters by point in time (see TimeFrameFilter)
2017-09-10 17:25:29 +05:30
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
2020-10-24 23:57:45 +05:30
items = by_ids(items)
2017-09-10 17:25:29 +05:30
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)
2021-01-03 14:25:43 +05:30
items = containing_date(items)
2017-09-10 17:25:29 +05:30
order(items)
end
private
2020-10-24 23:57:45 +05:30
def by_ids(items)
return items unless params[:ids].present?
items.id_in(params[:ids])
end
2017-09-10 17:25:29 +05:30
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
def order(items)
2020-06-23 00:09:42 +05:30
sort_by = params[:sort].presence || 'due_date_asc'
items.sort_by_attribute(sort_by)
2015-11-26 14:37:03 +05:30
end
end