From fb311531d042a629cb8558b2b4652fd30e9f35bc Mon Sep 17 00:00:00 2001 From: Jacob Vosmaer Date: Thu, 4 Aug 2016 11:45:35 +0200 Subject: Improve output from redis check --- bin/check | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/check b/bin/check index d34a2d0..9585416 100755 --- a/bin/check +++ b/bin/check @@ -32,4 +32,10 @@ end puts "\n" print "Send ping to redis server: " -abort unless GitlabNet.new.redis_client.ping +if GitlabNet.new.redis_client.ping + print 'OK' +else + abort 'FAILED' +end + +puts "\n" -- cgit v1.2.1 From 1ea542c0cf25a296786975035f629c0c8bc23e3b Mon Sep 17 00:00:00 2001 From: Jacob Vosmaer Date: Thu, 4 Aug 2016 11:55:19 +0200 Subject: Refactor 'GitlabKey' class away It is not nice to have both 'GitlabKeys' and 'GitlabKey'. We also do not need GitlabKey to be a class when it has no state. --- bin/authorized_keys | 2 +- lib/gitlab_keys.rb | 26 +++++++++++--------------- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/bin/authorized_keys b/bin/authorized_keys index 6aab4a5..ca01646 100755 --- a/bin/authorized_keys +++ b/bin/authorized_keys @@ -21,5 +21,5 @@ authorized_key = GitlabNet.new.authorized_key(key) if authorized_key.nil? puts "# No key was found for #{key}" else - puts GitlabKey.new.key_line("key-#{authorized_key['id']}", authorized_key["key"]) + puts GitlabKeys.key_line("key-#{authorized_key['id']}", authorized_key["key"]) end diff --git a/lib/gitlab_keys.rb b/lib/gitlab_keys.rb index c719e8d..dc654fd 100644 --- a/lib/gitlab_keys.rb +++ b/lib/gitlab_keys.rb @@ -6,12 +6,19 @@ require_relative 'gitlab_logger' class GitlabKeys attr_accessor :auth_file, :key + def self.command(key_id) + "#{ROOT_PATH}/bin/gitlab-shell #{key_id}" + end + + def self.key_line(key_id, public_key) + "command=\"#{command(key_id)}\",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty #{public_key}" + end + def initialize @command = ARGV.shift @key_id = ARGV.shift @key = ARGV.shift @auth_file = GitlabConfig.new.auth_file - @gitlab_key = GitlabKey.new end def exec @@ -34,7 +41,7 @@ class GitlabKeys def add_key lock do $logger.info "Adding key #{@key_id} => #{@key.inspect}" - auth_line = @gitlab_key.key_line(@key_id, @key) + auth_line = self.class.key_line(@key_id, @key) open_auth_file('a') { |file| file.puts(auth_line) } end true @@ -61,7 +68,7 @@ class GitlabKeys abort("#{$0}: invalid input #{input.inspect}") unless tokens.count == 2 key_id, public_key = tokens $logger.info "Adding key #{key_id} => #{public_key.inspect}" - file.puts(@gitlab_key.key_line(key_id, public_key)) + file.puts(self.class.key_line(key_id, public_key)) end end end @@ -77,7 +84,7 @@ class GitlabKeys $logger.info "Removing key #{@key_id}" open_auth_file('r+') do |f| while line = f.gets do - next unless line.start_with?("command=\"#{@gitlab_key.command(@key_id)}\"") + next unless line.start_with?("command=\"#{self.class.command(@key_id)}\"") f.seek(-line.length, IO::SEEK_CUR) # Overwrite the line with #'s. Because the 'line' variable contains # a terminating '\n', we write line.length - 1 '#' characters. @@ -128,14 +135,3 @@ class GitlabKeys end end end - - -class GitlabKey - def command(key_id) - "#{ROOT_PATH}/bin/gitlab-shell #{key_id}" - end - - def key_line(key_id, public_key) - "command=\"#{command(key_id)}\",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty #{public_key}" - end -end -- cgit v1.2.1