debian-mirror-gitlab/app/services/projects/lfs_pointers/lfs_list_service.rb

20 lines
597 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-11-08 19:23:39 +05:30
# This service list all existent Lfs objects in a repository
module Projects
module LfsPointers
class LfsListService < BaseService
# Retrieve all lfs blob pointers and returns a hash
# with the structure { lfs_file_oid => lfs_file_size }
def execute
return {} unless project&.lfs_enabled?
2020-04-22 19:07:51 +05:30
Gitlab::Git::LfsChanges.new(project.repository)
2018-11-08 19:23:39 +05:30
.all_pointers
.map! { |blob| [blob.lfs_oid, blob.lfs_size] }
.to_h
end
end
end
end