debian-mirror-gitlab/lib/banzai/reference_parser/issue_parser.rb

61 lines
1.8 KiB
Ruby
Raw Normal View History

module Banzai
module ReferenceParser
2018-03-17 18:26:18 +05:30
class IssueParser < IssuableParser
self.reference_type = :issue
def nodes_visible_to_user(user, nodes)
2018-03-17 18:26:18 +05:30
issues = records_for_nodes(nodes)
2018-03-27 19:54:05 +05:30
issues_to_check = issues.values
2018-03-27 19:54:05 +05:30
unless can?(user, :read_cross_project)
issues_to_check, cross_project_issues = issues_to_check.partition do |issue|
issue.project == project
end
end
readable_issues = Ability.issues_readable_by_user(issues_to_check, user).to_set
2016-09-13 17:45:13 +05:30
nodes.select do |node|
2018-03-27 19:54:05 +05:30
issue_in_node = issues[node]
# We check the inclusion of readable issues first because it's faster.
#
# But we need to fall back to `read_issue_iid` if the user cannot read
# cross project, since it might be possible the user can see the IID
# but not the issue.
if readable_issues.include?(issue_in_node)
true
elsif cross_project_issues&.include?(issue_in_node)
can_read_reference?(user, issue_in_node)
else
false
end
end
end
2018-03-17 18:26:18 +05:30
def records_for_nodes(nodes)
@issues_for_nodes ||= grouped_objects_for_nodes(
nodes,
Issue.all.includes(
:author,
2017-08-17 22:00:37 +05:30
:assignees,
{
# These associations are primarily used for checking permissions.
# Eager loading these ensures we don't end up running dozens of
# queries in this process.
project: [
{ namespace: :owner },
{ group: [:owners, :group_members] },
:invited_groups,
2018-03-17 18:26:18 +05:30
:project_members,
:project_feature
]
}
),
self.class.data_attribute
)
end
end
end
end