debian-mirror-gitlab/lib/gitlab/identifier.rb

54 lines
1.3 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
# Detect user based on identifier like
2018-12-13 13:39:08 +05:30
# key-13 or user-36
2014-09-02 18:07:02 +05:30
module Gitlab
module Identifier
2018-12-13 13:39:08 +05:30
def identify(identifier)
if identifier =~ /\Auser-\d+\Z/
2014-09-02 18:07:02 +05:30
# git push over http
2016-11-03 12:29:30 +05:30
identify_using_user(identifier)
2014-09-02 18:07:02 +05:30
elsif identifier =~ /\Akey-\d+\Z/
# git push over ssh
2016-11-03 12:29:30 +05:30
identify_using_ssh_key(identifier)
end
end
# Tries to identify a user based on a user identifier (e.g. "user-123").
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-11-03 12:29:30 +05:30
def identify_using_user(identifier)
user_id = identifier.gsub("user-", "")
identify_with_cache(:user, user_id) do
User.find_by(id: user_id)
end
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-11-03 12:29:30 +05:30
# Tries to identify a user based on an SSH key identifier (e.g. "key-123").
def identify_using_ssh_key(identifier)
key_id = identifier.gsub("key-", "")
identify_with_cache(:ssh_key, key_id) do
User.find_by_ssh_key_id(key_id)
end
end
def identify_with_cache(category, key)
if identification_cache[category].key?(key)
identification_cache[category][key]
else
identification_cache[category][key] = yield
end
end
def identification_cache
@identification_cache ||= {
email: {},
user: {},
ssh_key: {}
}
end
2014-09-02 18:07:02 +05:30
end
end