2018-09-11 15:08:34 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-02-25 12:15:08 -05:00
|
|
|
# Finders::Issues class
|
|
|
|
#
|
|
|
|
# Used to filter Issues collections by set of params
|
|
|
|
#
|
|
|
|
# Arguments:
|
|
|
|
# current_user - which user use
|
|
|
|
# params:
|
2018-05-13 22:07:53 -04:00
|
|
|
# scope: 'created_by_me' or 'assigned_to_me' or 'all'
|
2020-09-03 17:08:18 -04:00
|
|
|
# state: 'opened' or 'closed' or 'all'
|
2014-02-25 12:15:08 -05:00
|
|
|
# group_id: integer
|
|
|
|
# project_id: integer
|
2021-07-29 05:08:46 -04:00
|
|
|
# milestone_title: string (cannot be simultaneously used with milestone_wildcard_id)
|
|
|
|
# milestone_wildcard_id: 'none', 'any', 'upcoming', 'started' (cannot be simultaneously used with milestone_title)
|
2014-02-25 12:15:08 -05:00
|
|
|
# assignee_id: integer
|
|
|
|
# search: string
|
2019-02-05 03:32:27 -05:00
|
|
|
# in: 'title', 'description', or a string joining them with comma
|
2014-02-25 12:15:08 -05:00
|
|
|
# label_name: string
|
|
|
|
# sort: string
|
2017-09-03 03:34:50 -04:00
|
|
|
# my_reaction_emoji: string
|
2018-01-23 06:03:15 -05:00
|
|
|
# public_only: boolean
|
2021-09-16 17:11:39 -04:00
|
|
|
# include_hidden: boolean
|
2018-02-20 07:33:49 -05:00
|
|
|
# due_date: date or '0', '', 'overdue', 'week', or 'month'
|
2018-02-28 06:16:29 -05:00
|
|
|
# created_after: datetime
|
|
|
|
# created_before: datetime
|
|
|
|
# updated_after: datetime
|
|
|
|
# updated_before: datetime
|
2020-07-07 08:09:16 -04:00
|
|
|
# confidential: boolean
|
2021-08-12 02:10:10 -04:00
|
|
|
# issue_types: array of strings (one of WorkItem::Type.base_types)
|
2014-02-25 12:15:08 -05:00
|
|
|
#
|
2014-09-02 08:28:27 -04:00
|
|
|
class IssuesFinder < IssuableFinder
|
2017-06-20 11:38:14 -04:00
|
|
|
CONFIDENTIAL_ACCESS_LEVEL = Gitlab::Access::REPORTER
|
|
|
|
|
2018-02-20 07:33:49 -05:00
|
|
|
def self.scalar_params
|
|
|
|
@scalar_params ||= super + [:due_date]
|
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2014-02-25 12:15:08 -05:00
|
|
|
def klass
|
2018-02-12 12:07:43 -05:00
|
|
|
Issue.includes(:author)
|
2014-02-25 12:15:08 -05:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-03-17 15:38:51 -04:00
|
|
|
|
2020-03-30 17:08:01 -04:00
|
|
|
def params_class
|
2020-09-10 11:09:10 -04:00
|
|
|
self.class.const_get(:Params, false)
|
2020-03-30 17:08:01 -04:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-06-29 07:43:56 -04:00
|
|
|
def with_confidentiality_access_check
|
2021-08-12 14:10:45 -04:00
|
|
|
# Only admins can see hidden issues, so for non-admins, we filter out any hidden issues
|
|
|
|
issues = Issue.without_hidden
|
|
|
|
|
|
|
|
return issues.all if params.user_can_see_all_confidential_issues?
|
2021-03-23 20:09:26 -04:00
|
|
|
|
2021-04-05 23:09:02 -04:00
|
|
|
# If already filtering by assignee we can skip confidentiality since a user
|
|
|
|
# can always see confidential issues assigned to them. This is just an
|
|
|
|
# optimization since a very common usecase of this Finder is to load the
|
|
|
|
# count of issues assigned to the user for the header bar.
|
2021-08-12 14:10:45 -04:00
|
|
|
return issues.all if current_user && assignee_filter.includes_user?(current_user)
|
2021-03-23 20:09:26 -04:00
|
|
|
|
2021-08-12 14:10:45 -04:00
|
|
|
return issues.where('issues.confidential IS NOT TRUE') if params.user_cannot_see_confidential_issues?
|
2017-06-20 11:38:14 -04:00
|
|
|
|
2021-08-12 14:10:45 -04:00
|
|
|
issues.where('
|
2017-06-20 11:38:14 -04:00
|
|
|
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)
|
2019-05-07 07:08:25 -04:00
|
|
|
OR EXISTS (:authorizations)))',
|
2017-06-20 11:38:14 -04:00
|
|
|
user_id: current_user.id,
|
2019-05-07 07:08:25 -04:00
|
|
|
authorizations: current_user.authorizations_for_projects(min_access_level: CONFIDENTIAL_ACCESS_LEVEL, related_project_column: "issues.project_id"))
|
2017-06-20 11:38:14 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-06-20 11:38:14 -04:00
|
|
|
|
2017-06-29 07:43:56 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def init_collection
|
2021-09-16 17:11:39 -04:00
|
|
|
if params.include_hidden?
|
|
|
|
Issue.all
|
|
|
|
elsif params.public_only?
|
2018-01-23 06:03:15 -05:00
|
|
|
Issue.public_only
|
|
|
|
else
|
|
|
|
with_confidentiality_access_check
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-20 07:33:49 -05:00
|
|
|
def filter_items(items)
|
2019-02-25 06:00:24 -05:00
|
|
|
issues = super
|
|
|
|
issues = by_due_date(issues)
|
|
|
|
issues = by_confidential(issues)
|
2021-04-19 11:09:08 -04:00
|
|
|
by_issue_types(issues)
|
2019-02-25 06:00:24 -05:00
|
|
|
end
|
|
|
|
|
2021-09-20 02:09:32 -04:00
|
|
|
# Negates all params found in `negatable_params`
|
|
|
|
def filter_negated_items(items)
|
|
|
|
issues = super
|
|
|
|
by_negated_issue_types(issues)
|
|
|
|
end
|
|
|
|
|
2019-02-25 06:00:24 -05:00
|
|
|
def by_confidential(items)
|
|
|
|
return items if params[:confidential].nil?
|
|
|
|
|
|
|
|
params[:confidential] ? items.confidential_only : items.public_only
|
2019-02-06 07:31:56 -05:00
|
|
|
end
|
|
|
|
|
2018-02-20 07:33:49 -05:00
|
|
|
def by_due_date(items)
|
2020-03-30 17:08:01 -04:00
|
|
|
return items unless params.due_date?
|
|
|
|
|
|
|
|
if params.filter_by_no_due_date?
|
|
|
|
items.without_due_date
|
|
|
|
elsif params.filter_by_overdue?
|
|
|
|
items.due_before(Date.today)
|
|
|
|
elsif params.filter_by_due_this_week?
|
|
|
|
items.due_between(Date.today.beginning_of_week, Date.today.end_of_week)
|
|
|
|
elsif params.filter_by_due_this_month?
|
|
|
|
items.due_between(Date.today.beginning_of_month, Date.today.end_of_month)
|
|
|
|
elsif params.filter_by_due_next_month_and_previous_two_weeks?
|
|
|
|
items.due_between(Date.today - 2.weeks, (Date.today + 1.month).end_of_month)
|
2020-11-13 10:09:24 -05:00
|
|
|
else
|
|
|
|
items.none
|
2018-02-20 07:33:49 -05:00
|
|
|
end
|
2017-07-11 12:12:33 -04:00
|
|
|
end
|
2020-08-04 20:09:52 -04:00
|
|
|
|
|
|
|
def by_issue_types(items)
|
|
|
|
issue_type_params = Array(params[:issue_types]).map(&:to_s)
|
|
|
|
return items if issue_type_params.blank?
|
2021-08-12 02:10:10 -04:00
|
|
|
return Issue.none unless (WorkItem::Type.base_types.keys & issue_type_params).sort == issue_type_params.sort
|
2020-08-04 20:09:52 -04:00
|
|
|
|
|
|
|
items.with_issue_type(params[:issue_types])
|
|
|
|
end
|
2021-09-20 02:09:32 -04:00
|
|
|
|
|
|
|
def by_negated_issue_types(items)
|
|
|
|
issue_type_params = Array(not_params[:issue_types]).map(&:to_s) & WorkItem::Type.base_types.keys
|
|
|
|
return items if issue_type_params.blank?
|
|
|
|
|
|
|
|
items.without_issue_type(issue_type_params)
|
|
|
|
end
|
2014-02-25 12:15:08 -05:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
IssuesFinder.prepend_mod_with('IssuesFinder')
|