BigW Consortium Gitlab

lfs_storage_controller.rb 1.96 KB
Newer Older
Jacob Vosmaer committed
1 2 3
class Projects::LfsStorageController < Projects::GitHttpClientController
  include LfsHelper

4
  before_action :require_lfs_enabled!
Jacob Vosmaer committed
5
  before_action :lfs_check_access!
6
  before_action :verify_workhorse_api!, only: [:upload_authorize]
Jacob Vosmaer committed
7 8 9 10 11 12 13 14 15 16 17 18

  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
19 20
    set_workhorse_internal_api_content_type
    render json: Gitlab::Workhorse.lfs_upload_ok(oid, size)
Jacob Vosmaer committed
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
  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']
56 57 58
    return if name.include?('/')
    return unless oid.present? && name.start_with?(oid)
    name
Jacob Vosmaer committed
59 60 61
  end

  def store_file(oid, size, tmp_file)
62
    # Define tmp_file_path early because we use it in "ensure"
Jacob Vosmaer committed
63 64 65
    tmp_file_path = File.join("#{Gitlab.config.lfs.storage_path}/tmp/upload", tmp_file)

    object = LfsObject.find_or_create_by(oid: oid, size: size)
66 67
    file_exists = object.file.exists? || move_tmp_file_to_storage(object, tmp_file_path)
    file_exists && link_to_project(object)
Jacob Vosmaer committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
  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