Commit e08d947e authored by Douwe Maan's avatar Douwe Maan

Use relative URL for Markdown references, except in mails.

parent c5de2ce7
...@@ -13,22 +13,34 @@ module IssuesHelper ...@@ -13,22 +13,34 @@ module IssuesHelper
OpenStruct.new(id: 0, title: 'None (backlog)', name: 'Unassigned') OpenStruct.new(id: 0, title: 'None (backlog)', name: 'Unassigned')
end end
def url_for_project_issues(project = @project) def url_for_project_issues(project = @project, options = {})
return '' if project.nil? return '' if project.nil?
project.issues_tracker.project_url if options[:only_path]
project.issues_tracker.project_path
else
project.issues_tracker.project_url
end
end end
def url_for_new_issue(project = @project) def url_for_new_issue(project = @project, options = {})
return '' if project.nil? return '' if project.nil?
project.issues_tracker.new_issue_url if options[:only_path]
project.issues_tracker.new_issue_path
else
project.issues_tracker.new_issue_url
end
end end
def url_for_issue(issue_iid, project = @project) def url_for_issue(issue_iid, project = @project, options = {})
return '' if project.nil? return '' if project.nil?
project.issues_tracker.issue_url(issue_iid) if options[:only_path]
project.issues_tracker.issue_path(issue_iid)
else
project.issues_tracker.issue_url(issue_iid)
end
end end
def title_for_issue(issue_iid, project = @project) def title_for_issue(issue_iid, project = @project)
......
...@@ -47,4 +47,16 @@ class GitlabIssueTrackerService < IssueTrackerService ...@@ -47,4 +47,16 @@ class GitlabIssueTrackerService < IssueTrackerService
def issue_url(iid) def issue_url(iid)
namespace_project_issue_url(namespace_id: project.namespace, project_id: project, id: iid) namespace_project_issue_url(namespace_id: project.namespace, project_id: project, id: iid)
end end
def project_path
namespace_project_issues_path(project.namespace, project)
end
def new_issue_path
new_namespace_project_issue_path(namespace_id: project.namespace, project_id: project)
end
def issue_path(iid)
namespace_project_issue_path(namespace_id: project.namespace, project_id: project, id: iid)
end
end end
...@@ -34,6 +34,18 @@ class IssueTrackerService < Service ...@@ -34,6 +34,18 @@ class IssueTrackerService < Service
self.issues_url.gsub(':id', iid.to_s) self.issues_url.gsub(':id', iid.to_s)
end end
def project_path
project_url
end
def new_issue_path
new_issue_url
end
def issue_path(iid)
issue_url(iid)
end
def fields def fields
[ [
{ type: 'text', name: 'description', placeholder: description }, { type: 'text', name: 'description', placeholder: description },
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
- if project_nav_tab? :issues - if project_nav_tab? :issues
= nav_link(controller: :issues) do = nav_link(controller: :issues) do
= link_to url_for_project_issues, title: 'Issues', class: 'shortcuts-issues' do = link_to url_for_project_issues(@project, only_path: true), title: 'Issues', class: 'shortcuts-issues' do
%i.fa.fa-exclamation-circle %i.fa.fa-exclamation-circle
%span %span
Issues Issues
......
%div %div
= replace_image_links_with_base64(markdown(@note.note), @note.project) = replace_image_links_with_base64(markdown(@note.note, reference_only_path: false), @note.project)
-if @issue.description -if @issue.description
= replace_image_links_with_base64(markdown(@issue.description), @issue.project) = replace_image_links_with_base64(markdown(@issue.description, reference_only_path: false), @issue.project)
- if @issue.assignee_id.present? - if @issue.assignee_id.present?
%p %p
......
...@@ -6,4 +6,4 @@ ...@@ -6,4 +6,4 @@
Assignee: #{@merge_request.author_name} &rarr; #{@merge_request.assignee_name} Assignee: #{@merge_request.author_name} &rarr; #{@merge_request.assignee_name}
-if @merge_request.description -if @merge_request.description
= replace_image_links_with_base64(markdown(@merge_request.description), @merge_request.project) = replace_image_links_with_base64(markdown(@merge_request.description, reference_only_path: false), @merge_request.project)
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
%ul.dropdown-menu %ul.dropdown-menu
- if @project.issues_enabled && can?(current_user, :write_issue, @project) - if @project.issues_enabled && can?(current_user, :write_issue, @project)
%li %li
= link_to url_for_new_issue, title: "New Issue" do = link_to url_for_new_issue(@project, only_path: true), title: "New Issue" do
New issue New issue
- if @project.merge_requests_enabled && can?(current_user, :write_merge_request, @project) - if @project.merge_requests_enabled && can?(current_user, :write_merge_request, @project)
%li %li
......
...@@ -32,12 +32,12 @@ module Gitlab ...@@ -32,12 +32,12 @@ module Gitlab
module Markdown module Markdown
include IssuesHelper include IssuesHelper
attr_reader :html_options attr_reader :options, :html_options
# Public: Parse the provided text with GitLab-Flavored Markdown # Public: Parse the provided text with GitLab-Flavored Markdown
# #
# text - the source text # text - the source text
# project - extra options for the reference links as given to link_to # project - the project
# html_options - extra options for the reference links as given to link_to # html_options - extra options for the reference links as given to link_to
def gfm(text, project = @project, html_options = {}) def gfm(text, project = @project, html_options = {})
gfm_with_options(text, {}, project, html_options) gfm_with_options(text, {}, project, html_options)
...@@ -46,9 +46,10 @@ module Gitlab ...@@ -46,9 +46,10 @@ module Gitlab
# Public: Parse the provided text with GitLab-Flavored Markdown # Public: Parse the provided text with GitLab-Flavored Markdown
# #
# text - the source text # text - the source text
# options - parse_tasks: true - render tasks # options - parse_tasks - render tasks
# - xhtml: true - output XHTML instead of HTML # - xhtml - output XHTML instead of HTML
# project - extra options for the reference links as given to link_to # - reference_only_path - Use relative path for reference links
# project - the project
# html_options - extra options for the reference links as given to link_to # html_options - extra options for the reference links as given to link_to
def gfm_with_options(text, options = {}, project = @project, html_options = {}) def gfm_with_options(text, options = {}, project = @project, html_options = {})
return text if text.nil? return text if text.nil?
...@@ -58,6 +59,13 @@ module Gitlab ...@@ -58,6 +59,13 @@ module Gitlab
# for gsub calls to work as we need them to. # for gsub calls to work as we need them to.
text = text.dup.to_str text = text.dup.to_str
options.reverse_merge!(
parse_tasks: false,
xhtml: false,
reference_only_path: true
)
@options = options
@html_options = html_options @html_options = html_options
# Extract pre blocks so they are not altered # Extract pre blocks so they are not altered
...@@ -113,12 +121,13 @@ module Gitlab ...@@ -113,12 +121,13 @@ module Gitlab
markdown_pipeline = HTML::Pipeline::Gitlab.new(filters).pipeline markdown_pipeline = HTML::Pipeline::Gitlab.new(filters).pipeline
result = markdown_pipeline.call(text, markdown_context) result = markdown_pipeline.call(text, markdown_context)
saveoptions = 0
save_options = 0
if options[:xhtml] if options[:xhtml]
saveoptions |= Nokogiri::XML::Node::SaveOptions::AS_XHTML save_options |= Nokogiri::XML::Node::SaveOptions::AS_XHTML
end end
text = result[:output].to_html(save_with: saveoptions) text = result[:output].to_html(save_with: save_options)
if options[:parse_tasks] if options[:parse_tasks]
text = parse_tasks(text) text = parse_tasks(text)
...@@ -229,33 +238,37 @@ module Gitlab ...@@ -229,33 +238,37 @@ module Gitlab
end end
def reference_user(identifier, project = @project, _ = nil) def reference_user(identifier, project = @project, _ = nil)
options = html_options.merge( link_options = html_options.merge(
class: "gfm gfm-project_member #{html_options[:class]}" class: "gfm gfm-project_member #{html_options[:class]}"
) )
if identifier == "all" if identifier == "all"
link_to("@all", namespace_project_url(project.namespace, project), options) link_to(
"@all",
namespace_project_url(project.namespace, project, only_path: options[:reference_only_path]),
link_options
)
elsif namespace = Namespace.find_by(path: identifier) elsif namespace = Namespace.find_by(path: identifier)
url = url =
if namespace.type == "Group" if namespace.type == "Group"
group_url(identifier) group_url(identifier, only_path: options[:reference_only_path])
else else
user_url(identifier) user_url(identifier, only_path: options[:reference_only_path])
end end
link_to("@#{identifier}", url, options) link_to("@#{identifier}", url, link_options)
end end
end end
def reference_label(identifier, project = @project, _ = nil) def reference_label(identifier, project = @project, _ = nil)
if label = project.labels.find_by(id: identifier) if label = project.labels.find_by(id: identifier)
options = html_options.merge( link_options = html_options.merge(
class: "gfm gfm-label #{html_options[:class]}" class: "gfm gfm-label #{html_options[:class]}"
) )
link_to( link_to(
render_colored_label(label), render_colored_label(label),
namespace_project_issues_path(project.namespace, project, label_name: label.name), namespace_project_issues_path(project.namespace, project, label_name: label.name),
options link_options
) )
end end
end end
...@@ -263,14 +276,14 @@ module Gitlab ...@@ -263,14 +276,14 @@ module Gitlab
def reference_issue(identifier, project = @project, prefix_text = nil) def reference_issue(identifier, project = @project, prefix_text = nil)
if project.default_issues_tracker? if project.default_issues_tracker?
if project.issue_exists? identifier if project.issue_exists? identifier
url = url_for_issue(identifier, project) url = url_for_issue(identifier, project, only_path: options[:reference_only_path])
title = title_for_issue(identifier, project) title = title_for_issue(identifier, project)
options = html_options.merge( link_options = html_options.merge(
title: "Issue: #{title}", title: "Issue: #{title}",
class: "gfm gfm-issue #{html_options[:class]}" class: "gfm gfm-issue #{html_options[:class]}"
) )
link_to("#{prefix_text}##{identifier}", url, options) link_to("#{prefix_text}##{identifier}", url, link_options)
end end
else else
if project.external_issue_tracker.present? if project.external_issue_tracker.present?
...@@ -280,44 +293,46 @@ module Gitlab ...@@ -280,44 +293,46 @@ module Gitlab
end end
end end
def reference_merge_request(identifier, project = @project, def reference_merge_request(identifier, project = @project, prefix_text = nil)
prefix_text = nil)
if merge_request = project.merge_requests.find_by(iid: identifier) if merge_request = project.merge_requests.find_by(iid: identifier)
options = html_options.merge( link_options = html_options.merge(
title: "Merge Request: #{merge_request.title}", title: "Merge Request: #{merge_request.title}",
class: "gfm gfm-merge_request #{html_options[:class]}" class: "gfm gfm-merge_request #{html_options[:class]}"
) )
url = namespace_project_merge_request_url(project.namespace, project, url = namespace_project_merge_request_url(project.namespace, project,
merge_request) merge_request,
link_to("#{prefix_text}!#{identifier}", url, options) only_path: options[:reference_only_path])
link_to("#{prefix_text}!#{identifier}", url, link_options)
end end
end end
def reference_snippet(identifier, project = @project, _ = nil) def reference_snippet(identifier, project = @project, _ = nil)
if snippet = project.snippets.find_by(id: identifier) if snippet = project.snippets.find_by(id: identifier)
options = html_options.merge( link_options = html_options.merge(
title: "Snippet: #{snippet.title}", title: "Snippet: #{snippet.title}",
class: "gfm gfm-snippet #{html_options[:class]}" class: "gfm gfm-snippet #{html_options[:class]}"
) )
link_to( link_to(
"$#{identifier}", "$#{identifier}",
namespace_project_snippet_url(project.namespace, project, snippet), namespace_project_snippet_url(project.namespace, project, snippet,
options only_path: options[:reference_only_path]),
link_options
) )
end end
end end
def reference_commit(identifier, project = @project, prefix_text = nil) def reference_commit(identifier, project = @project, prefix_text = nil)
if project.valid_repo? && commit = project.repository.commit(identifier) if project.valid_repo? && commit = project.repository.commit(identifier)
options = html_options.merge( link_options = html_options.merge(
title: commit.link_title, title: commit.link_title,
class: "gfm gfm-commit #{html_options[:class]}" class: "gfm gfm-commit #{html_options[:class]}"
) )
prefix_text = "#{prefix_text}@" if prefix_text prefix_text = "#{prefix_text}@" if prefix_text
link_to( link_to(
"#{prefix_text}#{identifier}", "#{prefix_text}#{identifier}",
namespace_project_commit_url(project.namespace, project, commit), namespace_project_commit_url( project.namespace, project, commit,
options only_path: options[:reference_only_path]),
link_options
) )
end end
end end
...@@ -332,7 +347,7 @@ module Gitlab ...@@ -332,7 +347,7 @@ module Gitlab
from = project.repository.commit(from_id) && from = project.repository.commit(from_id) &&
to = project.repository.commit(to_id) to = project.repository.commit(to_id)
options = html_options.merge( link_options = html_options.merge(
title: "Commits #{from_id} through #{to_id}", title: "Commits #{from_id} through #{to_id}",
class: "gfm gfm-commit_range #{html_options[:class]}" class: "gfm gfm-commit_range #{html_options[:class]}"
) )
...@@ -340,22 +355,23 @@ module Gitlab ...@@ -340,22 +355,23 @@ module Gitlab
link_to( link_to(
"#{prefix_text}#{identifier}", "#{prefix_text}#{identifier}",
namespace_project_compare_url(project.namespace, project, from: from_id, to: to_id), namespace_project_compare_url(project.namespace, project,
options from: from_id, to: to_id,
only_path: options[:reference_only_path]),
link_options
) )
end end
end end
def reference_external_issue(identifier, project = @project, def reference_external_issue(identifier, project = @project, prefix_text = nil)
prefix_text = nil) url = url_for_issue(identifier, project, only_path: options[:reference_only_path])
url = url_for_issue(identifier, project)
title = project.external_issue_tracker.title title = project.external_issue_tracker.title
options = html_options.merge( link_options = html_options.merge(
title: "Issue in #{title}", title: "Issue in #{title}",
class: "gfm gfm-issue #{html_options[:class]}" class: "gfm gfm-issue #{html_options[:class]}"
) )
link_to("#{prefix_text}##{identifier}", url, options) link_to("#{prefix_text}##{identifier}", url, link_options)
end end
# Turn list items that start with "[ ]" into HTML checkbox inputs. # Turn list items that start with "[ ]" into HTML checkbox inputs.
......
...@@ -522,7 +522,7 @@ describe GitlabMarkdownHelper do ...@@ -522,7 +522,7 @@ describe GitlabMarkdownHelper do
# First issue link # First issue link
expect(groups[1]). expect(groups[1]).
to match(/href="#{namespace_project_issue_url(project.namespace, project, issues[0])}"/) to match(/href="#{namespace_project_issue_path(project.namespace, project, issues[0])}"/)
expect(groups[1]).to match(/##{issues[0].iid}$/) expect(groups[1]).to match(/##{issues[0].iid}$/)
# Internal commit link # Internal commit link
...@@ -531,7 +531,7 @@ describe GitlabMarkdownHelper do ...@@ -531,7 +531,7 @@ describe GitlabMarkdownHelper do
# Second issue link # Second issue link
expect(groups[3]). expect(groups[3]).
to match(/href="#{namespace_project_issue_url(project.namespace, project, issues[1])}"/) to match(/href="#{namespace_project_issue_path(project.namespace, project, issues[1])}"/)
expect(groups[3]).to match(/##{issues[1].iid}$/) expect(groups[3]).to match(/##{issues[1].iid}$/)
# Trailing commit link # Trailing commit link
...@@ -651,7 +651,7 @@ describe GitlabMarkdownHelper do ...@@ -651,7 +651,7 @@ describe GitlabMarkdownHelper do
end end
it "should leave ref-like href of 'manual' links untouched" do it "should leave ref-like href of 'manual' links untouched" do
expect(markdown("why not [inspect !#{merge_request.iid}](http://example.tld/#!#{merge_request.iid})")).to eq("<p>why not <a href=\"http://example.tld/#!#{merge_request.iid}\">inspect </a><a class=\"gfm gfm-merge_request \" href=\"#{namespace_project_merge_request_url(project.namespace, project, merge_request)}\" title=\"Merge Request: #{merge_request.title}\">!#{merge_request.iid}</a><a href=\"http://example.tld/#!#{merge_request.iid}\"></a></p>\n") expect(markdown("why not [inspect !#{merge_request.iid}](http://example.tld/#!#{merge_request.iid})")).to eq("<p>why not <a href=\"http://example.tld/#!#{merge_request.iid}\">inspect </a><a class=\"gfm gfm-merge_request \" href=\"#{namespace_project_merge_request_path(project.namespace, project, merge_request)}\" title=\"Merge Request: #{merge_request.title}\">!#{merge_request.iid}</a><a href=\"http://example.tld/#!#{merge_request.iid}\"></a></p>\n")
end end
it "should leave ref-like src of images untouched" do it "should leave ref-like src of images untouched" do
......
...@@ -31,6 +31,7 @@ describe GitlabIssueTrackerService do ...@@ -31,6 +31,7 @@ describe GitlabIssueTrackerService do
context 'with absolute urls' do context 'with absolute urls' do
before do before do
GitlabIssueTrackerService.default_url_options[:script_name] = "/gitlab/root"
@service = project.create_gitlab_issue_tracker_service(active: true) @service = project.create_gitlab_issue_tracker_service(active: true)
end end
...@@ -39,13 +40,13 @@ describe GitlabIssueTrackerService do ...@@ -39,13 +40,13 @@ describe GitlabIssueTrackerService do
end end
it 'should give the correct path' do it 'should give the correct path' do
expect(@service.project_url).to eq("http://localhost/#{project.path_with_namespace}/issues") expect(@service.project_url).to eq("http://localhost/gitlab/root/#{project.path_with_namespace}/issues")
expect(@service.new_issue_url).to eq("http://localhost/#{project.path_with_namespace}/issues/new") expect(@service.new_issue_url).to eq("http://localhost/gitlab/root/#{project.path_with_namespace}/issues/new")
expect(@service.issue_url(432)).to eq("http://localhost/#{project.path_with_namespace}/issues/432") expect(@service.issue_url(432)).to eq("http://localhost/gitlab/root/#{project.path_with_namespace}/issues/432")
end end
end end
context 'with enabled relative urls' do context 'with relative urls' do
before do before do
GitlabIssueTrackerService.default_url_options[:script_name] = "/gitlab/root" GitlabIssueTrackerService.default_url_options[:script_name] = "/gitlab/root"
@service = project.create_gitlab_issue_tracker_service(active: true) @service = project.create_gitlab_issue_tracker_service(active: true)
...@@ -56,9 +57,9 @@ describe GitlabIssueTrackerService do ...@@ -56,9 +57,9 @@ describe GitlabIssueTrackerService do
end end
it 'should give the correct path' do it 'should give the correct path' do
expect(@service.project_url).to eq("http://localhost/gitlab/root/#{project.path_with_namespace}/issues") expect(@service.project_path).to eq("/gitlab/root/#{project.path_with_namespace}/issues")
expect(@service.new_issue_url).to eq("http://localhost/gitlab/root/#{project.path_with_namespace}/issues/new") expect(@service.new_issue_path).to eq("/gitlab/root/#{project.path_with_namespace}/issues/new")
expect(@service.issue_url(432)).to eq("http://localhost/gitlab/root/#{project.path_with_namespace}/issues/432") expect(@service.issue_path(432)).to eq("/gitlab/root/#{project.path_with_namespace}/issues/432")
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment