2017-02-05 13:04:23 -05:00
|
|
|
require 'gitaly'
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module GitalyClient
|
2017-03-13 10:04:46 -04:00
|
|
|
SERVER_VERSION_FILE = 'GITALY_SERVER_VERSION'.freeze
|
|
|
|
|
2017-03-24 13:22:42 -04:00
|
|
|
def self.configure_channel(storage, address)
|
|
|
|
@addresses ||= {}
|
|
|
|
@addresses[storage] = address
|
|
|
|
@channels ||= {}
|
|
|
|
@channels[storage] = new_channel(address)
|
2017-03-22 13:23:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.new_channel(address)
|
|
|
|
# NOTE: Gitaly currently runs on a Unix socket, so permissions are
|
|
|
|
# handled using the file system and no additional authentication is
|
|
|
|
# required (therefore the :this_channel_is_insecure flag)
|
|
|
|
GRPC::Core::Channel.new(address, {}, :this_channel_is_insecure)
|
2017-02-05 13:04:23 -05:00
|
|
|
end
|
|
|
|
|
2017-03-24 13:22:42 -04:00
|
|
|
def self.get_channel(storage)
|
|
|
|
@channels[storage]
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.get_address(storage)
|
|
|
|
@addresses[storage]
|
2017-02-05 13:04:23 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.enabled?
|
2017-03-22 13:23:40 -04:00
|
|
|
Gitlab.config.gitaly.enabled
|
2017-02-05 13:04:23 -05:00
|
|
|
end
|
2017-02-24 10:53:44 -05:00
|
|
|
|
|
|
|
def self.feature_enabled?(feature)
|
|
|
|
enabled? && ENV["GITALY_#{feature.upcase}"] == '1'
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.migrate(feature)
|
|
|
|
is_enabled = feature_enabled?(feature)
|
|
|
|
metric_name = feature.to_s
|
|
|
|
metric_name += "_gitaly" if is_enabled
|
|
|
|
|
|
|
|
Gitlab::Metrics.measure(metric_name) do
|
|
|
|
yield is_enabled
|
|
|
|
end
|
|
|
|
end
|
2017-03-13 10:04:46 -04:00
|
|
|
|
|
|
|
def self.expected_server_version
|
|
|
|
path = Rails.root.join(SERVER_VERSION_FILE)
|
|
|
|
path.read.chomp
|
|
|
|
end
|
2017-02-05 13:04:23 -05:00
|
|
|
end
|
|
|
|
end
|