summaryrefslogtreecommitdiff
path: root/app/finders/milestones_finder.rb
blob: 9ffd623338fac44855df393391a65249b0603370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# frozen_string_literal: true

# Search for milestones
#
# params - Hash
#   ids - filters by id.
#   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.
#   order - Orders by field default due date asc.
#   title - filter by title.
#   state - filters by state.
#   start_date & end_date - filters by timeframe (see TimeFrameFilter)
#   containing_date - filters by point in time (see TimeFrameFilter)

class MilestonesFinder
  include FinderMethods
  include TimeFrameFilter
  include UpdatedAtFilter

  attr_reader :params

  EXPIRED_LAST_SORTS = %i[expired_last_due_date_asc expired_last_due_date_desc].freeze

  def initialize(params = {})
    @params = params
  end

  def execute
    items = Milestone.all
    items = by_ids(items)
    items = by_groups_and_projects(items)
    items = by_title(items)
    items = by_search_title(items)
    items = by_search(items)
    items = by_state(items)
    items = by_timeframe(items)
    items = containing_date(items)
    items = by_updated_at(items)
    items = by_iids(items)

    order(items)
  end

  private

  def by_ids(items)
    return items unless params[:ids].present?

    items.id_in(params[:ids])
  end

  def by_groups_and_projects(items)
    items.for_projects_and_groups(params[:project_ids], params[:group_ids])
  end

  # rubocop: disable CodeReuse/ActiveRecord
  def by_title(items)
    if params[:title]
      items.where(title: params[:title])
    else
      items
    end
  end
  # rubocop: enable CodeReuse/ActiveRecord

  def by_search_title(items)
    if params[:search_title].present?
      items.search_title(params[:search_title])
    else
      items
    end
  end

  def by_search(items)
    return items if params[:search].blank?

    items.search(params[:search])
  end

  def by_state(items)
    Milestone.filter_by_state(items, params[:state])
  end

  def order(items)
    sort_by = params[:sort].presence || :due_date_asc

    if sort_by_expired_last?(sort_by)
      items.sort_with_expired_last(sort_by)
    else
      items.sort_by_attribute(sort_by)
    end
  end

  def sort_by_expired_last?(sort_by)
    EXPIRED_LAST_SORTS.include?(sort_by)
  end

  def by_iids(items)
    return items unless params[:iids].present? && !params[:include_parent_milestones]

    items.by_iid(params[:iids])
  end
end