Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2016-09-07 00:32:39 +0300
committerPatricio Cano <suprnova32@gmail.com>2016-09-15 20:21:00 +0300
commitc144db2935f0f71c7f282a3015d126526bc16b57 (patch)
treebe83c7b4dac7e56c236de5eb9d1dde9173eec965 /lib
parent85152f0291b7e6dd4a92a068e7d5c4334df54e80 (diff)
Better authentication handling, syntax fixes and better actor handling for LFS Tokens
Diffstat (limited to 'lib')
-rw-r--r--lib/api/internal.rb9
-rw-r--r--lib/gitlab/auth.rb35
-rw-r--r--lib/gitlab/lfs_token.rb21
3 files changed, 36 insertions, 29 deletions
diff --git a/lib/api/internal.rb b/lib/api/internal.rb
index 1f189d81d16..f8211bdd8af 100644
--- a/lib/api/internal.rb
+++ b/lib/api/internal.rb
@@ -78,14 +78,7 @@ module API
status 200
key = Key.find(params[:key_id])
- user = key.user
-
- token_handler =
- if user
- Gitlab::LfsToken.new(user)
- else
- Gitlab::LfsToken.new(key)
- end
+ token_handler = Gitlab::LfsToken.new(key)
{
username: token_handler.actor_name,
diff --git a/lib/gitlab/auth.rb b/lib/gitlab/auth.rb
index 02b33c8c683..14e29124aac 100644
--- a/lib/gitlab/auth.rb
+++ b/lib/gitlab/auth.rb
@@ -2,21 +2,13 @@ module Gitlab
module Auth
Result = Struct.new(:user, :type)
+ class MissingPersonalTokenError < StandardError; end
+
class << self
def find_for_git_client(login, password, project:, ip:)
raise "Must provide an IP for rate limiting" if ip.nil?
- result = Result.new
-
- if valid_ci_request?(login, password, project)
- result.type = :ci
- else
- result = populate_result(login, password)
- end
-
- success = result.user.present? || [:ci, :missing_personal_token].include?(result.type)
- rate_limit!(ip, success: success, login: login)
- result
+ populate_result(login, password, project, ip)
end
def find_with_user_password(login, password)
@@ -75,21 +67,26 @@ module Gitlab
end
end
- def populate_result(login, password)
- result =
+ def populate_result(login, password, project, ip)
+ result = Result.new(nil, :ci) if valid_ci_request?(login, password, project)
+
+ result ||=
user_with_password_for_git(login, password) ||
oauth_access_token_check(login, password) ||
lfs_token_check(login, password) ||
personal_access_token_check(login, password)
- if result
+ if result && result.type != :ci
result.type = nil unless result.user
if result.user && result.type == :gitlab_or_ldap && result.user.two_factor_enabled?
- result.type = :missing_personal_token
+ raise Gitlab::Auth::MissingPersonalTokenError
end
end
+ success = result ? result.user.present? || [:ci].include?(result.type) : false
+ rate_limit!(ip, success: success, login: login)
+
result || Result.new
end
@@ -118,15 +115,17 @@ module Gitlab
def lfs_token_check(login, password)
actor =
- if login.start_with?('lfs-deploy-key')
- DeployKey.find(login.sub('lfs-deploy-key-', ''))
+ if login =~ /\Alfs-deploy-key-\d+\Z/
+ /\d+\Z/.match(login) do |id|
+ DeployKey.find(id[0])
+ end
else
User.by_login(login)
end
token_handler = Gitlab::LfsToken.new(actor)
- Result.new(actor, token_handler.type) if actor && token_handler.value == password
+ Result.new(actor, token_handler.type) if actor && Devise.secure_compare(token_handler.value, password)
end
end
end
diff --git a/lib/gitlab/lfs_token.rb b/lib/gitlab/lfs_token.rb
index 8f49deb4d03..d7db8017475 100644
--- a/lib/gitlab/lfs_token.rb
+++ b/lib/gitlab/lfs_token.rb
@@ -2,15 +2,18 @@ module Gitlab
class LfsToken
attr_accessor :actor
+ TOKEN_LENGTH = 50
+ EXPIRY_TIME = 1800
+
def initialize(actor)
- @actor = actor
+ set_actor(actor)
end
def generate
- token = Devise.friendly_token(50)
+ token = Devise.friendly_token(TOKEN_LENGTH)
Gitlab::Redis.with do |redis|
- redis.set(redis_key, token, ex: 600)
+ redis.set(redis_key, token, ex: EXPIRY_TIME)
end
token
@@ -35,5 +38,17 @@ module Gitlab
def redis_key
"gitlab:lfs_token:#{actor.class.name.underscore}_#{actor.id}" if actor
end
+
+ def set_actor(actor)
+ @actor =
+ case actor
+ when DeployKey, User
+ actor
+ when Key
+ actor.user
+ else
+ #
+ end
+ end
end
end