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:
|
|
|
|
# scope: 'created-by-me' or 'assigned-to-me' or 'all'
|
|
|
|
# state: 'open' or 'closed' or 'all'
|
|
|
|
# group_id: integer
|
|
|
|
# project_id: integer
|
|
|
|
# milestone_id: integer
|
|
|
|
# assignee_id: integer
|
|
|
|
# search: string
|
|
|
|
# label_name: string
|
|
|
|
# sort: string
|
|
|
|
#
|
2014-09-02 08:28:27 -04:00
|
|
|
class IssuesFinder < IssuableFinder
|
2014-02-25 12:15:08 -05:00
|
|
|
def klass
|
|
|
|
Issue
|
|
|
|
end
|
2016-03-17 15:38:51 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def init_collection
|
2016-12-12 03:43:56 -05:00
|
|
|
IssuesFinder.not_restricted_by_confidentiality(current_user)
|
2016-03-17 15:38:51 -04:00
|
|
|
end
|
2016-06-27 16:22:19 -04:00
|
|
|
|
2016-12-12 03:43:56 -05:00
|
|
|
def self.not_restricted_by_confidentiality(user)
|
|
|
|
return Issue.where('issues.confidential IS NULL OR issues.confidential IS FALSE') if user.blank?
|
|
|
|
|
|
|
|
return Issue.all if user.admin?
|
|
|
|
|
|
|
|
Issue.where('
|
|
|
|
issues.confidential IS NULL
|
|
|
|
OR issues.confidential IS FALSE
|
|
|
|
OR (issues.confidential = TRUE
|
|
|
|
AND (issues.author_id = :user_id
|
|
|
|
OR issues.assignee_id = :user_id
|
|
|
|
OR issues.project_id IN(:project_ids)))',
|
|
|
|
user_id: user.id,
|
|
|
|
project_ids: user.authorized_projects(Gitlab::Access::REPORTER).select(:id))
|
|
|
|
end
|
2014-02-25 12:15:08 -05:00
|
|
|
end
|