33 lines
819 B
Ruby
33 lines
819 B
Ruby
|
module Gitlab
|
||
|
module Git
|
||
|
class LfsChanges
|
||
|
def initialize(repository, newrev)
|
||
|
@repository = repository
|
||
|
@newrev = newrev
|
||
|
end
|
||
|
|
||
|
def new_pointers(object_limit: nil, not_in: nil)
|
||
|
@new_pointers ||= begin
|
||
|
rev_list.new_objects(not_in: not_in, require_path: true) do |object_ids|
|
||
|
object_ids = object_ids.take(object_limit) if object_limit
|
||
|
|
||
|
Gitlab::Git::Blob.batch_lfs_pointers(@repository, object_ids)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def all_pointers
|
||
|
rev_list.all_objects(require_path: true) do |object_ids|
|
||
|
Gitlab::Git::Blob.batch_lfs_pointers(@repository, object_ids)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def rev_list
|
||
|
Gitlab::Git::RevList.new(@repository, newrev: @newrev)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|