debian-mirror-gitlab/lib/gitlab/git/remote_mirror.rb
2021-10-27 15:23:28 +05:30

33 lines
969 B
Ruby

# frozen_string_literal: true
module Gitlab
module Git
class RemoteMirror
include Gitlab::Git::WrapsGitalyErrors
attr_reader :repository, :remote_url, :only_branches_matching, :ssh_key, :known_hosts, :keep_divergent_refs
def initialize(repository, remote_url, only_branches_matching: [], ssh_key: nil, known_hosts: nil, keep_divergent_refs: false)
@repository = repository
@remote_url = remote_url
@only_branches_matching = only_branches_matching
@ssh_key = ssh_key
@known_hosts = known_hosts
@keep_divergent_refs = keep_divergent_refs
end
def update
wrapped_gitaly_errors do
repository.gitaly_remote_client.update_remote_mirror(
remote_url,
only_branches_matching,
ssh_key: ssh_key,
known_hosts: known_hosts,
keep_divergent_refs: keep_divergent_refs
)
end
end
end
end
end