summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/remote_mirror.rb
blob: df3cd422527d671e2bbc1929fb799a6fd8a8a43a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

module Gitlab
  module Git
    class RemoteMirror
      include Gitlab::Git::WrapsGitalyErrors

      attr_reader :repository, :ref_name, :only_branches_matching, :ssh_key, :known_hosts

      def initialize(repository, ref_name, only_branches_matching: [], ssh_key: nil, known_hosts: nil)
        @repository = repository
        @ref_name = ref_name
        @only_branches_matching = only_branches_matching
        @ssh_key = ssh_key
        @known_hosts = known_hosts
      end

      def update
        wrapped_gitaly_errors do
          repository.gitaly_remote_client.update_remote_mirror(
            ref_name,
            only_branches_matching,
            ssh_key: ssh_key,
            known_hosts: known_hosts
          )
        end
      end
    end
  end
end