issues_finder.rb 3.8 KB
Newer Older
1 2 3 4 5 6 7
# Finders::Issues class
#
# Used to filter Issues collections by set of params
#
# Arguments:
#   current_user - which user use
#   params:
8
#     scope: 'created_by_me' or 'assigned_to_me' or 'all'
9 10 11
#     state: 'open' or 'closed' or 'all'
#     group_id: integer
#     project_id: integer
12
#     milestone_title: string
13 14 15 16
#     assignee_id: integer
#     search: string
#     label_name: string
#     sort: string
17
#     my_reaction_emoji: string
18
#     public_only: boolean
19
#     due_date: date or '0', '', 'overdue', 'week', or 'month'
20 21 22 23
#     created_after: datetime
#     created_before: datetime
#     updated_after: datetime
#     updated_before: datetime
24
#
25
class IssuesFinder < IssuableFinder
26 27
  CONFIDENTIAL_ACCESS_LEVEL = Gitlab::Access::REPORTER

28 29 30 31
  def self.scalar_params
    @scalar_params ||= super + [:due_date]
  end

32
  def klass
33
    Issue.includes(:author)
34
  end
35

36
  def with_confidentiality_access_check
37
    return Issue.all if user_can_see_all_confidential_issues?
38
    return Issue.where('issues.confidential IS NOT TRUE') if user_cannot_see_confidential_issues?
39 40 41 42 43 44 45 46 47 48 49

    Issue.where('
      issues.confidential IS NOT TRUE
      OR (issues.confidential = TRUE
        AND (issues.author_id = :user_id
          OR EXISTS (SELECT TRUE FROM issue_assignees WHERE user_id = :user_id AND issue_id = issues.id)
          OR issues.project_id IN(:project_ids)))',
      user_id: current_user.id,
      project_ids: current_user.authorized_projects(CONFIDENTIAL_ACCESS_LEVEL).select(:id))
  end

50 51 52
  private

  def init_collection
53 54 55 56 57 58 59 60 61
    if public_only?
      Issue.public_only
    else
      with_confidentiality_access_check
    end
  end

  def public_only?
    params.fetch(:public_only, false)
62 63
  end

64 65 66 67 68 69 70 71 72 73 74 75 76 77
  def filter_items(items)
    by_due_date(super)
  end

  def by_due_date(items)
    if due_date?
      if filter_by_no_due_date?
        items = items.without_due_date
      elsif filter_by_overdue?
        items = items.due_before(Date.today)
      elsif filter_by_due_this_week?
        items = items.due_between(Date.today.beginning_of_week, Date.today.end_of_week)
      elsif filter_by_due_this_month?
        items = items.due_between(Date.today.beginning_of_month, Date.today.end_of_month)
78 79
      elsif filter_by_due_next_month_and_previous_two_weeks?
        items = items.due_between(Date.today - 2.weeks, (Date.today + 1.month).end_of_month)
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
      end
    end

    items
  end

  def filter_by_no_due_date?
    due_date? && params[:due_date] == Issue::NoDueDate.name
  end

  def filter_by_overdue?
    due_date? && params[:due_date] == Issue::Overdue.name
  end

  def filter_by_due_this_week?
    due_date? && params[:due_date] == Issue::DueThisWeek.name
  end

  def filter_by_due_this_month?
    due_date? && params[:due_date] == Issue::DueThisMonth.name
  end

102 103 104 105
  def filter_by_due_next_month_and_previous_two_weeks?
    due_date? && params[:due_date] == Issue::DueNextMonthAndPreviousTwoWeeks.name
  end

106 107 108 109
  def due_date?
    params[:due_date].present?
  end

110
  def user_can_see_all_confidential_issues?
111 112
    return @user_can_see_all_confidential_issues if defined?(@user_can_see_all_confidential_issues)

113 114
    return @user_can_see_all_confidential_issues = false if current_user.blank?
    return @user_can_see_all_confidential_issues = true if current_user.full_private_access?
115

116 117
    @user_can_see_all_confidential_issues =
      project? &&
118 119 120 121
      project &&
      project.team.max_member_access(current_user.id) >= CONFIDENTIAL_ACCESS_LEVEL
  end

122
  def user_cannot_see_confidential_issues?
123 124
    return false if user_can_see_all_confidential_issues?

125
    current_user.blank?
126 127
  end

128 129 130 131 132 133 134 135 136 137 138 139
  def by_assignee(items)
    if assignee
      items.assigned_to(assignee)
    elsif no_assignee?
      items.unassigned
    elsif assignee_id? || assignee_username? # assignee not found
      items.none
    else
      items
    end
  end

140 141 142
  def item_project_ids(items)
    items&.reorder(nil)&.select(:project_id)
  end
143
end