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
|
|
|
|
|
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
|
|
|
|
|
2019-11-08 04:06:07 -05:00
|
|
|
def snippet_badge(snippet)
|
|
|
|
return unless attrs = snippet_badge_attributes(snippet)
|
|
|
|
|
2020-08-03 23:09:50 -04:00
|
|
|
icon_name, text = attrs
|
2019-12-20 04:24:38 -05:00
|
|
|
tag.span(class: %w[badge badge-gray]) do
|
2020-08-03 23:09:50 -04:00
|
|
|
concat(sprite_icon(icon_name, size: 14, css_class: 'gl-vertical-align-middle'))
|
2019-11-08 04:06:07 -05:00
|
|
|
concat(' ')
|
|
|
|
concat(text)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def snippet_badge_attributes(snippet)
|
|
|
|
if snippet.private?
|
2020-08-03 23:09:50 -04:00
|
|
|
['lock', _('private')]
|
2019-11-08 04:06:07 -05:00
|
|
|
end
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
|
|
|
|
2021-08-09 20:10:29 -04:00
|
|
|
def snippet_report_abuse_path(snippet)
|
|
|
|
return unless snippet.submittable_as_spam_by?(current_user)
|
|
|
|
|
|
|
|
mark_as_spam_snippet_path(snippet)
|
|
|
|
end
|
|
|
|
|
2020-07-27 08:09:50 -04:00
|
|
|
def embedded_raw_snippet_button(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'),
|
2020-07-27 08:09:50 -04:00
|
|
|
gitlab_raw_snippet_blob_url(snippet, blob.path),
|
2021-04-09 23:09:09 -04:00
|
|
|
class: 'gl-button btn btn-default',
|
2019-11-08 04:06:07 -05:00
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener noreferrer',
|
|
|
|
title: 'Open raw')
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
|
|
|
|
2020-07-27 08:09:50 -04:00
|
|
|
def embedded_snippet_download_button(snippet, blob)
|
2019-11-08 04:06:07 -05:00
|
|
|
link_to(external_snippet_icon('download'),
|
2020-07-27 08:09:50 -04:00
|
|
|
gitlab_raw_snippet_blob_url(snippet, blob.path, nil, inline: false),
|
2021-04-09 23:09:09 -04:00
|
|
|
class: 'gl-button btn btn-default',
|
2019-11-08 04:06:07 -05:00
|
|
|
target: '_blank',
|
|
|
|
title: 'Download',
|
|
|
|
rel: 'noopener noreferrer')
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
2021-03-15 20:09:44 -04:00
|
|
|
|
|
|
|
def snippet_file_count(snippet)
|
|
|
|
file_count = snippet.statistics&.file_count
|
|
|
|
|
|
|
|
return unless file_count&.nonzero?
|
|
|
|
|
|
|
|
tooltip = n_('%d file', '%d files', file_count) % file_count
|
|
|
|
|
|
|
|
tag.span(class: 'file_count', title: tooltip, data: { toggle: 'tooltip', container: 'body' }) do
|
|
|
|
concat(sprite_icon('documents', css_class: 'gl-vertical-align-middle'))
|
|
|
|
concat(' ')
|
|
|
|
concat(file_count)
|
|
|
|
end
|
|
|
|
end
|
2021-04-21 11:09:35 -04:00
|
|
|
|
|
|
|
def project_snippets_award_api_path(snippet)
|
|
|
|
if Feature.enabled?(:improved_emoji_picker, snippet.project, default_enabled: :yaml)
|
|
|
|
api_v4_projects_snippets_award_emoji_path(id: snippet.project.id, snippet_id: snippet.id)
|
|
|
|
end
|
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|