2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2011-10-16 17:07:10 -04:00
|
|
|
module SnippetsHelper
|
2019-06-04 19:50:57 -04:00
|
|
|
def snippets_upload_path(snippet, user)
|
|
|
|
return unless user
|
|
|
|
|
|
|
|
if snippet&.persisted?
|
|
|
|
upload_path('personal_snippet', id: snippet.id)
|
|
|
|
else
|
|
|
|
upload_path('user', id: user.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-08 04:06:07 -05:00
|
|
|
def download_raw_snippet_button(snippet)
|
|
|
|
link_to(icon('download'),
|
2019-12-10 16:08:01 -05:00
|
|
|
gitlab_raw_snippet_path(snippet, inline: false),
|
2019-11-08 04:06:07 -05:00
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener noreferrer',
|
|
|
|
class: "btn btn-sm has-tooltip",
|
|
|
|
title: 'Download',
|
|
|
|
data: { container: 'body' })
|
|
|
|
end
|
|
|
|
|
2016-12-09 16:38:10 -05:00
|
|
|
# Return the path of a snippets index for a user or for a project
|
|
|
|
#
|
|
|
|
# @returns String, path to snippet index
|
2016-12-09 18:33:23 -05:00
|
|
|
def subject_snippets_path(subject = nil, opts = nil)
|
2016-12-09 16:38:10 -05:00
|
|
|
if subject.is_a?(Project)
|
2017-06-29 13:06:35 -04:00
|
|
|
project_snippets_path(subject, opts)
|
2016-12-09 16:38:10 -05:00
|
|
|
else # assume subject === User
|
|
|
|
dashboard_snippets_path(opts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-22 04:24:38 -05:00
|
|
|
# Get an array of line numbers surrounding a matching
|
|
|
|
# line, bounded by min/max.
|
|
|
|
#
|
|
|
|
# @returns Array of line numbers
|
|
|
|
def bounded_line_numbers(line, min, max, surrounding_lines)
|
|
|
|
lower = line - surrounding_lines > min ? line - surrounding_lines : min
|
|
|
|
upper = line + surrounding_lines < max ? line + surrounding_lines : max
|
|
|
|
(lower..upper).to_a
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a sorted set of lines to be included in a snippet preview.
|
|
|
|
# This ensures matching adjacent lines do not display duplicated
|
|
|
|
# surrounding code.
|
|
|
|
#
|
|
|
|
# @returns Array, unique and sorted.
|
2016-02-05 11:20:29 -05:00
|
|
|
def matching_lines(lined_content, surrounding_lines, query)
|
2016-01-22 04:24:38 -05:00
|
|
|
used_lines = []
|
|
|
|
lined_content.each_with_index do |line, line_number|
|
|
|
|
used_lines.concat bounded_line_numbers(
|
|
|
|
line_number,
|
|
|
|
0,
|
|
|
|
lined_content.size,
|
|
|
|
surrounding_lines
|
2017-04-13 12:43:46 -04:00
|
|
|
) if line.downcase.include?(query.downcase)
|
2016-01-22 04:24:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
used_lines.uniq.sort
|
|
|
|
end
|
|
|
|
|
|
|
|
# 'Chunkify' entire snippet. Splits the snippet data into matching lines +
|
|
|
|
# surrounding_lines() worth of unmatching lines.
|
|
|
|
#
|
|
|
|
# @returns a hash with {snippet_object, snippet_chunks:{data,start_line}}
|
2016-02-05 11:20:29 -05:00
|
|
|
def chunk_snippet(snippet, query, surrounding_lines = 3)
|
2016-01-22 04:24:38 -05:00
|
|
|
lined_content = snippet.content.split("\n")
|
2016-02-05 11:20:29 -05:00
|
|
|
used_lines = matching_lines(lined_content, surrounding_lines, query)
|
2016-01-22 04:24:38 -05:00
|
|
|
|
|
|
|
snippet_chunk = []
|
|
|
|
snippet_chunks = []
|
|
|
|
snippet_start_line = 0
|
|
|
|
last_line = -1
|
|
|
|
|
|
|
|
# Go through each used line, and add consecutive lines as a single chunk
|
|
|
|
# to the snippet chunk array.
|
|
|
|
used_lines.each do |line_number|
|
|
|
|
if last_line < 0
|
|
|
|
# Start a new chunk.
|
|
|
|
snippet_start_line = line_number
|
|
|
|
snippet_chunk << lined_content[line_number]
|
|
|
|
elsif last_line == line_number - 1
|
|
|
|
# Consecutive line, continue chunk.
|
|
|
|
snippet_chunk << lined_content[line_number]
|
|
|
|
else
|
|
|
|
# Non-consecutive line, add chunk to chunk array.
|
|
|
|
snippet_chunks << {
|
|
|
|
data: snippet_chunk.join("\n"),
|
|
|
|
start_line: snippet_start_line + 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Start a new chunk.
|
|
|
|
snippet_chunk = [lined_content[line_number]]
|
|
|
|
snippet_start_line = line_number
|
|
|
|
end
|
2018-01-11 11:34:01 -05:00
|
|
|
|
2016-01-22 04:24:38 -05:00
|
|
|
last_line = line_number
|
|
|
|
end
|
|
|
|
# Add final chunk to chunk array
|
|
|
|
snippet_chunks << {
|
|
|
|
data: snippet_chunk.join("\n"),
|
|
|
|
start_line: snippet_start_line + 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return snippet with chunk array
|
|
|
|
{ snippet_object: snippet, snippet_chunks: snippet_chunks }
|
|
|
|
end
|
2018-02-06 08:33:18 -05:00
|
|
|
|
2019-11-08 04:06:07 -05:00
|
|
|
def snippet_embed_tag(snippet)
|
2019-12-10 16:08:01 -05:00
|
|
|
content_tag(:script, nil, src: gitlab_snippet_url(snippet, format: :js))
|
2019-12-11 10:07:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def snippet_embed_input(snippet)
|
|
|
|
content_tag(:input,
|
|
|
|
nil,
|
|
|
|
type: :text,
|
|
|
|
readonly: true,
|
|
|
|
class: 'js-snippet-url-area snippet-embed-input form-control',
|
|
|
|
data: { url: gitlab_snippet_url(snippet) },
|
|
|
|
value: snippet_embed_tag(snippet),
|
|
|
|
autocomplete: 'off')
|
2019-11-08 04:06:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def snippet_badge(snippet)
|
|
|
|
return unless attrs = snippet_badge_attributes(snippet)
|
|
|
|
|
|
|
|
css_class, text = attrs
|
|
|
|
tag.span(class: ['badge', 'badge-gray']) do
|
|
|
|
concat(tag.i(class: ['fa', css_class]))
|
|
|
|
concat(' ')
|
|
|
|
concat(text)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def snippet_badge_attributes(snippet)
|
|
|
|
if snippet.private?
|
|
|
|
['fa-lock', _('private')]
|
|
|
|
end
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
|
|
|
|
2019-11-08 04:06:07 -05:00
|
|
|
def embedded_raw_snippet_button
|
2018-02-06 08:33:18 -05:00
|
|
|
blob = @snippet.blob
|
2018-12-13 12:49:05 -05:00
|
|
|
return if blob.empty? || blob.binary? || blob.stored_externally?
|
2018-02-06 08:33:18 -05:00
|
|
|
|
2019-11-08 04:06:07 -05:00
|
|
|
link_to(external_snippet_icon('doc-code'),
|
2019-12-10 16:08:01 -05:00
|
|
|
gitlab_raw_snippet_url(@snippet),
|
2019-11-08 04:06:07 -05:00
|
|
|
class: 'btn',
|
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener noreferrer',
|
|
|
|
title: 'Open raw')
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def embedded_snippet_download_button
|
2019-11-08 04:06:07 -05:00
|
|
|
link_to(external_snippet_icon('download'),
|
2019-12-10 16:08:01 -05:00
|
|
|
gitlab_raw_snippet_url(@snippet, inline: false),
|
2019-11-08 04:06:07 -05:00
|
|
|
class: 'btn',
|
|
|
|
target: '_blank',
|
|
|
|
title: 'Download',
|
|
|
|
rel: 'noopener noreferrer')
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|