lfs_storage_controller.rb 2.0 KB
Newer Older
J
Jacob Vosmaer 已提交
1 2 3
class Projects::LfsStorageController < Projects::GitHttpClientController
  include LfsHelper

J
Jacob Vosmaer 已提交
4
  before_action :require_lfs_enabled!
J
Jacob Vosmaer 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18
  before_action :lfs_check_access!

  def download
    lfs_object = LfsObject.find_by_oid(oid)
    unless lfs_object && lfs_object.file.exists?
      render_lfs_not_found
      return
    end

    send_file lfs_object.file.path, content_type: "application/octet-stream"
  end

  def upload_authorize
    render(
J
Rubocop  
Jacob Vosmaer 已提交
19 20 21 22 23 24
      json: {
        StoreLFSPath: "#{Gitlab.config.lfs.storage_path}/tmp/upload",
        LfsOid: oid,
        LfsSize: size,
      },
      content_type: 'application/json; charset=utf-8'
J
Jacob Vosmaer 已提交
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 56 57 58 59 60
    )
  end

  def upload_finalize
    unless tmp_filename
      render_lfs_forbidden
      return
    end

    if store_file(oid, size, tmp_filename)
      head 200
    else
      render plain: 'Unprocessable entity', status: 422
    end
  end

  private

  def download_request?
    action_name == 'download'
  end

  def upload_request?
    %w[upload_authorize upload_finalize].include? action_name
  end

  def oid
    params[:oid].to_s
  end

  def size
    params[:size].to_i
  end

  def tmp_filename
    name = request.headers['X-Gitlab-Lfs-Tmp']
61 62 63
    return if name.include?('/')
    return unless oid.present? && name.start_with?(oid)
    name
J
Jacob Vosmaer 已提交
64 65 66
  end

  def store_file(oid, size, tmp_file)
J
Jacob Vosmaer 已提交
67
    # Define tmp_file_path early because we use it in "ensure"
J
Jacob Vosmaer 已提交
68 69 70
    tmp_file_path = File.join("#{Gitlab.config.lfs.storage_path}/tmp/upload", tmp_file)

    object = LfsObject.find_or_create_by(oid: oid, size: size)
J
Jacob Vosmaer 已提交
71 72
    file_exists = object.file.exists? || move_tmp_file_to_storage(object, tmp_file_path)
    file_exists && link_to_project(object)
J
Jacob Vosmaer 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
  ensure
    FileUtils.rm_f(tmp_file_path)
  end

  def move_tmp_file_to_storage(object, path)
    File.open(path) do |f|
      object.file = f
    end

    object.file.store!
    object.save
  end

  def link_to_project(object)
    if object && !object.projects.exists?(storage_project.id)
      object.projects << storage_project
      object.save
    end
  end
end