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

102 lines
2.9 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
# Finders::Issues class
#
# Used to filter Issues collections by set of params
#
# Arguments:
# current_user - which user use
# params:
2018-11-08 19:23:39 +05:30
# scope: 'created_by_me' or 'assigned_to_me' or 'all'
2014-09-02 18:07:02 +05:30
# state: 'open' or 'closed' or 'all'
# group_id: integer
# project_id: integer
2017-08-17 22:00:37 +05:30
# milestone_title: string
2014-09-02 18:07:02 +05:30
# assignee_id: integer
# search: string
2019-03-02 22:35:43 +05:30
# in: 'title', 'description', or a string joining them with comma
2014-09-02 18:07:02 +05:30
# label_name: string
# sort: string
2018-03-17 18:26:18 +05:30
# my_reaction_emoji: string
# public_only: boolean
2018-03-27 19:54:05 +05:30
# due_date: date or '0', '', 'overdue', 'week', or 'month'
# created_after: datetime
# created_before: datetime
# updated_after: datetime
# updated_before: datetime
2014-09-02 18:07:02 +05:30
#
2015-04-26 12:48:37 +05:30
class IssuesFinder < IssuableFinder
2017-09-10 17:25:29 +05:30
CONFIDENTIAL_ACCESS_LEVEL = Gitlab::Access::REPORTER
2018-03-27 19:54:05 +05:30
def self.scalar_params
@scalar_params ||= super + [:due_date]
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2014-09-02 18:07:02 +05:30
def klass
2018-03-27 19:54:05 +05:30
Issue.includes(:author)
2014-09-02 18:07:02 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-06-02 11:05:42 +05:30
2020-04-22 19:07:51 +05:30
def params_class
IssuesFinder::Params
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2017-09-10 17:25:29 +05:30
def with_confidentiality_access_check
2020-04-22 19:07:51 +05:30
return Issue.all if params.user_can_see_all_confidential_issues?
return Issue.where('issues.confidential IS NOT TRUE') if params.user_cannot_see_confidential_issues?
2017-09-10 17:25:29 +05:30
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)
2019-07-07 11:18:12 +05:30
OR EXISTS (:authorizations)))',
2017-09-10 17:25:29 +05:30
user_id: current_user.id,
2019-07-07 11:18:12 +05:30
authorizations: current_user.authorizations_for_projects(min_access_level: CONFIDENTIAL_ACCESS_LEVEL, related_project_column: "issues.project_id"))
2017-09-10 17:25:29 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2017-09-10 17:25:29 +05:30
2016-06-02 11:05:42 +05:30
private
def init_collection
2020-04-22 19:07:51 +05:30
if params.public_only?
2018-03-17 18:26:18 +05:30
Issue.public_only
else
with_confidentiality_access_check
end
end
2018-03-27 19:54:05 +05:30
def filter_items(items)
2019-07-07 11:18:12 +05:30
issues = super
issues = by_due_date(issues)
issues = by_confidential(issues)
issues
end
def by_confidential(items)
return items if params[:confidential].nil?
params[:confidential] ? items.confidential_only : items.public_only
2018-03-27 19:54:05 +05:30
end
def by_due_date(items)
2020-04-22 19:07:51 +05:30
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)
2018-03-27 19:54:05 +05:30
end
2016-06-02 11:05:42 +05:30
end
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
IssuesFinder.prepend_if_ee('EE::IssuesFinder')