2016-07-20 12:41:26 -04:00
|
|
|
class Projects::LfsStorageController < Projects::GitHttpClientController
|
2016-11-21 10:31:51 -05:00
|
|
|
include LfsRequest
|
|
|
|
include WorkhorseRequest
|
2016-07-20 12:41:26 -04:00
|
|
|
|
2016-11-21 10:31:51 -05:00
|
|
|
skip_before_action :verify_workhorse_api!, only: [:download, :upload_finalize]
|
2016-07-20 12:41:26 -04:00
|
|
|
|
|
|
|
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
|
2016-08-19 13:10:41 -04:00
|
|
|
set_workhorse_internal_api_content_type
|
|
|
|
render json: Gitlab::Workhorse.lfs_upload_ok(oid, size)
|
2016-07-20 12:41:26 -04:00
|
|
|
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']
|
2016-08-10 11:40:20 -04:00
|
|
|
return if name.include?('/')
|
|
|
|
return unless oid.present? && name.start_with?(oid)
|
|
|
|
name
|
2016-07-20 12:41:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def store_file(oid, size, tmp_file)
|
2016-08-10 10:49:23 -04:00
|
|
|
# Define tmp_file_path early because we use it in "ensure"
|
2016-07-20 12:41:26 -04:00
|
|
|
tmp_file_path = File.join("#{Gitlab.config.lfs.storage_path}/tmp/upload", tmp_file)
|
|
|
|
|
|
|
|
object = LfsObject.find_or_create_by(oid: oid, size: size)
|
2016-08-10 10:49:23 -04:00
|
|
|
file_exists = object.file.exists? || move_tmp_file_to_storage(object, tmp_file_path)
|
|
|
|
file_exists && link_to_project(object)
|
2016-07-20 12:41:26 -04:00
|
|
|
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
|