2014-07-15 11:28:21 -04:00
|
|
|
module DiffHelper
|
2015-11-17 10:08:58 -05:00
|
|
|
def diff_view
|
|
|
|
params[:view] == 'parallel' ? 'parallel' : 'inline'
|
|
|
|
end
|
|
|
|
|
2014-09-08 15:12:54 -04:00
|
|
|
def allowed_diff_size
|
2014-07-15 11:28:21 -04:00
|
|
|
if diff_hard_limit_enabled?
|
2014-09-08 15:12:54 -04:00
|
|
|
Commit::DIFF_HARD_LIMIT_FILES
|
2014-07-15 11:28:21 -04:00
|
|
|
else
|
2014-09-08 15:12:54 -04:00
|
|
|
Commit::DIFF_SAFE_FILES
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-27 12:06:51 -04:00
|
|
|
def allowed_diff_lines
|
|
|
|
if diff_hard_limit_enabled?
|
|
|
|
Commit::DIFF_HARD_LIMIT_LINES
|
|
|
|
else
|
|
|
|
Commit::DIFF_SAFE_LINES
|
2014-07-15 11:28:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-14 16:38:37 -05:00
|
|
|
def safe_diff_files(diffs, diff_refs)
|
2015-04-27 12:06:51 -04:00
|
|
|
lines = 0
|
|
|
|
safe_files = []
|
|
|
|
diffs.first(allowed_diff_size).each do |diff|
|
|
|
|
lines += diff.diff.lines.count
|
|
|
|
break if lines > allowed_diff_lines
|
2016-01-14 16:38:37 -05:00
|
|
|
safe_files << Gitlab::Diff::File.new(diff, diff_refs)
|
2015-04-27 12:06:51 -04:00
|
|
|
end
|
|
|
|
safe_files
|
2014-07-15 11:28:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def diff_hard_limit_enabled?
|
|
|
|
# Enabling hard limit allows user to see more diff information
|
|
|
|
if params[:force_show_diff].present?
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
2014-09-08 14:54:52 -04:00
|
|
|
|
2016-01-20 08:59:14 -05:00
|
|
|
def generate_line_code(file_path, line)
|
|
|
|
Gitlab::Diff::LineCode.generate(file_path, line.new_pos, line.old_pos)
|
|
|
|
end
|
|
|
|
|
2014-09-09 05:10:40 -04:00
|
|
|
def unfold_bottom_class(bottom)
|
|
|
|
(bottom) ? 'js-unfold-bottom' : ''
|
|
|
|
end
|
|
|
|
|
2015-02-08 18:12:44 -05:00
|
|
|
def unfold_class(unfold)
|
|
|
|
(unfold) ? 'unfold js-unfold' : ''
|
|
|
|
end
|
|
|
|
|
2014-09-09 05:10:40 -04:00
|
|
|
def diff_line_content(line)
|
|
|
|
if line.blank?
|
2016-01-12 11:02:16 -05:00
|
|
|
" ".html_safe
|
2014-09-09 05:10:40 -04:00
|
|
|
else
|
2016-01-13 11:39:15 -05:00
|
|
|
line.html_safe
|
2014-09-09 05:10:40 -04:00
|
|
|
end
|
|
|
|
end
|
2014-09-12 12:43:44 -04:00
|
|
|
|
|
|
|
def line_comments
|
2015-04-03 10:46:23 -04:00
|
|
|
@line_comments ||= @line_notes.select(&:active?).group_by(&:line_code)
|
2014-09-12 12:43:44 -04:00
|
|
|
end
|
2014-09-12 13:51:44 -04:00
|
|
|
|
|
|
|
def organize_comments(type_left, type_right, line_code_left, line_code_right)
|
|
|
|
comments_left = comments_right = nil
|
|
|
|
|
|
|
|
unless type_left.nil? && type_right == 'new'
|
|
|
|
comments_left = line_comments[line_code_left]
|
|
|
|
end
|
|
|
|
|
|
|
|
unless type_left.nil? && type_right.nil?
|
|
|
|
comments_right = line_comments[line_code_right]
|
|
|
|
end
|
|
|
|
|
|
|
|
[comments_left, comments_right]
|
|
|
|
end
|
2014-12-25 07:32:49 -05:00
|
|
|
|
|
|
|
def inline_diff_btn
|
2015-11-17 13:17:15 -05:00
|
|
|
diff_btn('Inline', 'inline', diff_view == 'inline')
|
2014-12-25 07:32:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def parallel_diff_btn
|
2015-11-17 13:17:15 -05:00
|
|
|
diff_btn('Side-by-side', 'parallel', diff_view == 'parallel')
|
2014-12-25 07:32:49 -05:00
|
|
|
end
|
2015-01-19 08:07:37 -05:00
|
|
|
|
2015-04-13 01:27:45 -04:00
|
|
|
def submodule_link(blob, ref, repository = @repository)
|
|
|
|
tree, commit = submodule_links(blob, ref, repository)
|
2015-01-19 08:07:37 -05:00
|
|
|
commit_id = if commit.nil?
|
2015-12-02 08:53:20 -05:00
|
|
|
Commit.truncate_sha(blob.id)
|
2015-01-19 08:07:37 -05:00
|
|
|
else
|
2015-12-02 08:53:20 -05:00
|
|
|
link_to Commit.truncate_sha(blob.id), commit
|
2015-01-19 08:07:37 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
[
|
|
|
|
content_tag(:span, link_to(truncate(blob.name, length: 40), tree)),
|
|
|
|
'@',
|
|
|
|
content_tag(:span, commit_id, class: 'monospace'),
|
|
|
|
].join(' ').html_safe
|
|
|
|
end
|
2015-09-30 06:31:02 -04:00
|
|
|
|
|
|
|
def commit_for_diff(diff)
|
|
|
|
if diff.deleted_file
|
2015-10-20 08:23:56 -04:00
|
|
|
first_commit = @first_commit || @commit
|
2015-11-17 07:10:01 -05:00
|
|
|
first_commit.parent || @first_commit
|
2015-09-30 06:31:02 -04:00
|
|
|
else
|
|
|
|
@commit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def diff_file_html_data(project, diff_commit, diff_file)
|
|
|
|
{
|
|
|
|
blob_diff_path: namespace_project_blob_diff_path(project.namespace, project,
|
|
|
|
tree_join(diff_commit.id, diff_file.file_path))
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def editable_diff?(diff)
|
|
|
|
!diff.deleted_file && @merge_request && @merge_request.source_project
|
|
|
|
end
|
2015-11-17 04:49:23 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def diff_btn(title, name, selected)
|
|
|
|
params_copy = params.dup
|
|
|
|
params_copy[:view] = name
|
|
|
|
|
|
|
|
# Always use HTML to handle case where JSON diff rendered this button
|
|
|
|
params_copy.delete(:format)
|
|
|
|
|
|
|
|
link_to url_for(params_copy), id: "#{name}-diff-btn", class: (selected ? 'btn active' : 'btn') do
|
|
|
|
title
|
|
|
|
end
|
|
|
|
end
|
2014-07-15 11:28:21 -04:00
|
|
|
end
|