Skip to content
代码片段 群组 项目
提交 88559d7f 编辑于 作者: Brett Walker's avatar Brett Walker
浏览文件

Use autolinker filter for commit descriptions

Changelog: fixed
上级 52d173b0
No related branches found
No related tags found
无相关合并请求
......@@ -2,10 +2,10 @@
require 'uri'
# TODO: This is now a legacy filter, and is only used with the Ruby parser.
# The current markdown parser now properly handles autolinking.
# The Ruby parser is now only for benchmarking purposes.
# issue: https://gitlab.com/gitlab-org/gitlab/-/issues/454601
# This filter handles autolinking when a pipeline does not
# use the MarkdownFilter, which handles it's own autolinking.
# This happens in particular for the SingleLinePipeline and the
# CommitDescriptionPipeline.
#
# rubocop:disable Rails/OutputSafety -- this is legacy/unused, no need fixing.
# rubocop:disable Gitlab/NoCodeCoverageComment -- no coverage needed for a legacy filter
......@@ -16,15 +16,11 @@ module Filter
#
# Based on HTML::Pipeline::AutolinkFilter
#
# Note that our CommonMark parser, `commonmarker` (using the autolink extension)
# handles standard autolinking, like http/https. We detect additional
# schemes (smb, rdar, etc).
#
# Context options:
# :autolink - Boolean, skips all processing done by this filter when false
# :link_attr - Hash of attributes for the generated links
#
class AutolinkLegacyFilter < HTML::Pipeline::Filter
class AutolinkFilter < HTML::Pipeline::Filter
include ActionView::Helpers::TagHelper
include Gitlab::Utils::SanitizeNodeLink
......@@ -67,7 +63,12 @@ class AutolinkLegacyFilter < HTML::Pipeline::Filter
}.freeze
def call
return doc if MarkdownFilter.glfm_markdown?(context) && context[:pipeline] != :single_line
if MarkdownFilter.glfm_markdown?(context) &&
context[:pipeline] != :single_line &&
context[:pipeline] != :commit_description
return doc
end
return doc if context[:autolink] == false
doc.xpath(TEXT_QUERY).each do |node|
......
......@@ -6,7 +6,7 @@ module Banzai
module Filter
# HTML Filter for markdown links with spaces in the URLs
#
# Based on Banzai::Filter::AutolinkLegacyFilter
# Based on Banzai::Filter::AutolinkFilter
#
# CommonMark does not allow spaces in the url portion of a link/url.
# For example, `[example](page slug)` is not valid.
......
......@@ -10,7 +10,7 @@ def self.filters
Filter::BroadcastMessageSanitizationFilter,
Filter::EmojiFilter,
Filter::ColorFilter,
Filter::AutolinkLegacyFilter,
Filter::AutolinkFilter,
Filter::ExternalLinkFilter
]
end
......
......@@ -32,7 +32,7 @@ def self.filters
Filter::TableOfContentsLegacyFilter,
Filter::TableOfContentsTagLegacyFilter,
Filter::TableOfContentsTagFilter,
Filter::AutolinkLegacyFilter,
Filter::AutolinkFilter,
Filter::ExternalLinkFilter,
Filter::SuggestionFilter,
Filter::FootnoteFilter,
......
......@@ -10,7 +10,7 @@ def self.filters
Filter::AssetProxyFilter,
Filter::EmojiFilter,
Filter::CustomEmojiFilter,
Filter::AutolinkLegacyFilter,
Filter::AutolinkFilter,
Filter::ExternalLinkFilter,
*reference_filters
]
......
......@@ -2,11 +2,7 @@
require 'spec_helper'
# TODO: This is now a legacy filter, and is only used with the Ruby parser.
# The current markdown parser now properly handles autolinking.
# The Ruby parser is now only for benchmarking purposes.
# issue: https://gitlab.com/gitlab-org/gitlab/-/issues/454601
RSpec.describe Banzai::Filter::AutolinkLegacyFilter, feature_category: :team_planning do
RSpec.describe Banzai::Filter::AutolinkFilter, feature_category: :team_planning do
include FilterSpecHelper
let_it_be(:context) { { markdown_engine: Banzai::Filter::MarkdownFilter::CMARK_ENGINE } }
......@@ -14,6 +10,26 @@
let(:link) { 'http://about.gitlab.com/' }
let(:quotes) { ['"', "'"] }
context 'when using default markdown engine' do
it 'does nothing' do
exp = act = link
expect(filter(act, {}).to_html).to eq exp
end
it 'autolinks when using single_line pipeline' do
doc = filter("See #{link}", { pipeline: :single_line })
expect(doc.at_css('a').text).to eq link
end
it 'autolinks when using commit_description pipeline' do
doc = filter("See #{link}", { pipeline: :commit_description })
expect(doc.at_css('a').text).to eq link
end
end
it 'does nothing when :autolink is false' do
exp = act = link
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册