summaryrefslogtreecommitdiff
path: root/app/models/snippet_blob.rb
blob: fa5fa151607af09742fff1c74e60fb10932dafc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class SnippetBlob
  include BlobLike

  attr_reader :snippet

  def initialize(snippet)
    @snippet = snippet
  end

  delegate :id, to: :snippet

  def name
    snippet.file_name
  end

  alias_method :path, :name

  def size
    data.bytesize
  end

  def data
    snippet.content
  end

  def rendered_markup
    return unless Gitlab::MarkupHelper.gitlab_markdown?(name)

    Banzai.render_field(snippet, :content)
  end
end