debian-mirror-gitlab/lib/banzai/filter/user_reference_filter.rb

181 lines
5.5 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2015-12-23 02:04:40 +05:30
module Banzai
module Filter
2015-09-11 14:41:01 +05:30
# HTML filter that replaces user or group references with links.
#
# A special `@all` reference is also supported.
class UserReferenceFilter < ReferenceFilter
self.reference_type = :user
2015-09-11 14:41:01 +05:30
# Public: Find `@user` user references in text
#
# UserReferenceFilter.references_in(text) do |match, username|
# "<a href=...>@#{user}</a>"
# end
#
# text - String text to search.
#
# Yields the String match, and the String user name.
#
# Returns a String replaced with the return of the block.
def self.references_in(text)
text.gsub(User.reference_pattern) do |match|
yield match, $~[:user]
end
end
def call
2018-03-17 18:26:18 +05:30
return doc if project.nil? && group.nil? && !skip_project_check?
2016-06-02 11:05:42 +05:30
ref_pattern = User.reference_pattern
ref_pattern_start = /\A#{ref_pattern}\z/
2015-12-23 02:04:40 +05:30
nodes.each do |node|
2016-06-02 11:05:42 +05:30
if text_node?(node)
replace_text_when_pattern_matches(node, ref_pattern) do |content|
user_link_filter(content)
end
elsif element_node?(node)
2017-08-17 22:00:37 +05:30
yield_valid_link(node) do |link, inner_html|
2016-06-02 11:05:42 +05:30
if link =~ ref_pattern_start
replace_link_node_with_href(node, link) do
2017-08-17 22:00:37 +05:30
user_link_filter(link, link_content: inner_html)
2016-06-02 11:05:42 +05:30
end
end
end
end
2015-12-23 02:04:40 +05:30
end
2016-06-02 11:05:42 +05:30
doc
2015-09-11 14:41:01 +05:30
end
# Replace `@user` user references in text with links to the referenced
# user's profile page.
#
# text - String text to replace references in.
2017-08-17 22:00:37 +05:30
# link_content - Original content of the link being replaced.
2015-09-11 14:41:01 +05:30
#
# Returns a String with `@user` references replaced with links. All links
# have `gfm` and `gfm-project_member` class names attached for styling.
2017-08-17 22:00:37 +05:30
def user_link_filter(text, link_content: nil)
2015-09-11 14:41:01 +05:30
self.class.references_in(text) do |match, username|
2017-08-17 22:00:37 +05:30
if username == 'all' && !skip_project_check?
link_to_all(link_content: link_content)
2015-09-11 14:41:01 +05:30
else
2018-03-17 18:26:18 +05:30
cached_call(:banzai_url_for_object, match, path: [User, username.downcase]) do
if namespace = namespaces[username.downcase]
link_to_namespace(namespace, link_content: link_content) || match
else
match
end
end
2015-09-11 14:41:01 +05:30
end
end
end
# Returns a Hash containing all Namespace objects for the username
# references in the current document.
#
# The keys of this Hash are the namespace paths, the values the
# corresponding Namespace objects.
def namespaces
2018-03-17 18:26:18 +05:30
@namespaces ||= Namespace.eager_load(:owner, :route)
.where_full_path_in(usernames)
.index_by(&:full_path)
.transform_keys(&:downcase)
end
# Returns all usernames referenced in the current document.
def usernames
refs = Set.new
nodes.each do |node|
node.to_html.scan(User.reference_pattern) do
refs << $~[:user]
end
end
refs.to_a
end
2015-09-11 14:41:01 +05:30
private
def urls
2016-06-02 11:05:42 +05:30
Gitlab::Routing.url_helpers
2015-09-11 14:41:01 +05:30
end
def link_class
2019-02-15 15:39:39 +05:30
reference_class(:project_member, tooltip: false)
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
def link_to_all(link_content: nil)
author = context[:author]
2018-03-17 18:26:18 +05:30
if author && !team_member?(author)
2017-08-17 22:00:37 +05:30
link_content
2016-11-03 12:29:30 +05:30
else
2018-03-17 18:26:18 +05:30
parent_url(link_content, author)
2016-11-03 12:29:30 +05:30
end
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
def link_to_namespace(namespace, link_content: nil)
2015-09-11 14:41:01 +05:30
if namespace.is_a?(Group)
2017-08-17 22:00:37 +05:30
link_to_group(namespace.full_path, namespace, link_content: link_content)
2015-09-11 14:41:01 +05:30
else
2017-08-17 22:00:37 +05:30
link_to_user(namespace.path, namespace, link_content: link_content)
2015-09-11 14:41:01 +05:30
end
end
2017-08-17 22:00:37 +05:30
def link_to_group(group, namespace, link_content: nil)
2015-09-11 14:41:01 +05:30
url = urls.group_url(group, only_path: context[:only_path])
2015-10-24 18:46:33 +05:30
data = data_attribute(group: namespace.id)
2017-08-17 22:00:37 +05:30
content = link_content || Group.reference_prefix + group
2015-09-11 14:41:01 +05:30
2017-08-17 22:00:37 +05:30
link_tag(url, data, content, namespace.full_name)
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
def link_to_user(user, namespace, link_content: nil)
2015-09-11 14:41:01 +05:30
url = urls.user_url(user, only_path: context[:only_path])
2015-10-24 18:46:33 +05:30
data = data_attribute(user: namespace.owner_id)
2017-08-17 22:00:37 +05:30
content = link_content || User.reference_prefix + user
2015-12-23 02:04:40 +05:30
2017-08-17 22:00:37 +05:30
link_tag(url, data, content, namespace.owner_name)
2015-12-23 02:04:40 +05:30
end
2015-09-11 14:41:01 +05:30
2017-08-17 22:00:37 +05:30
def link_tag(url, data, link_content, title)
%(<a href="#{url}" #{data} class="#{link_class}" title="#{escape_once(title)}">#{link_content}</a>)
2015-09-11 14:41:01 +05:30
end
2018-03-17 18:26:18 +05:30
def parent
context[:project] || context[:group]
end
def parent_group?
parent.is_a?(Group)
end
def team_member?(user)
if parent_group?
parent.member?(user)
else
parent.team.member?(user)
end
end
def parent_url(link_content, author)
if parent_group?
url = urls.group_url(parent, only_path: context[:only_path])
data = data_attribute(group: group.id, author: author.try(:id))
else
url = urls.project_url(parent, only_path: context[:only_path])
data = data_attribute(project: project.id, author: author.try(:id))
end
content = link_content || User.reference_prefix + 'all'
link_tag(url, data, content, 'All Project and Group Members')
end
2015-09-11 14:41:01 +05:30
end
end
end