summaryrefslogtreecommitdiff
path: root/app/controllers/projects/raw_controller.rb
blob: c56f432a1f1fce3f51de39865f17af7e64d0c28a (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Controller for viewing a file's raw
class Projects::RawController < Projects::ApplicationController
  include ExtractsPath

  before_action :require_non_empty_project
  before_action :assign_ref_vars
  before_action :authorize_download_code!

  def show
    @blob = @repository.blob_at(@commit.id, @path)

    if @blob
      headers['X-Content-Type-Options'] = 'nosniff'

      if @blob.lfs_pointer?
        send_lfs_object
      else
        stream_data
      end
    else
      render_404
    end
  end

  private

  def get_blob_type
    if @blob.text?
      'text/plain; charset=utf-8'
    elsif @blob.image?
      @blob.content_type
    else
      'application/octet-stream'
    end
  end

  def stream_data
    type = get_blob_type

    send_data(
        @blob.data,
        type: type,
        disposition: 'inline'
      )
  end

  def send_lfs_object
    lfs_object = LfsObject.find_by_oid(@blob.lfs_oid)
    return nil unless lfs_object && lfs_object.file.exists?

    if lfs_object.projects.exists?(lfs_object.storage_project(@project).id)
      send_file lfs_object.file.path, filename: @blob.name, disposition: 'attachment'
    end
  end
end