diff options
author | Patricio Cano <suprnova32@gmail.com> | 2016-08-29 14:41:39 -0500 |
---|---|---|
committer | Patricio Cano <suprnova32@gmail.com> | 2016-09-06 12:06:45 -0500 |
commit | a64f174d83caddfd3fe31698b5b2fd7701b5a573 (patch) | |
tree | 8172013137ce1e28e527825a15e4066944a952bb /lib/gitlab_lfs_authentication.rb | |
parent | dbf374e10ad859a02ef69af53031e245913b6e65 (diff) | |
download | gitlab-shell-a64f174d83caddfd3fe31698b5b2fd7701b5a573.tar.gz |
Refactored JSON header generation to its own class and added tests for it
Diffstat (limited to 'lib/gitlab_lfs_authentication.rb')
-rw-r--r-- | lib/gitlab_lfs_authentication.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/gitlab_lfs_authentication.rb b/lib/gitlab_lfs_authentication.rb new file mode 100644 index 0000000..b05da21 --- /dev/null +++ b/lib/gitlab_lfs_authentication.rb @@ -0,0 +1,22 @@ +require 'base64' +require 'json' + +class GitlabLfsAuthentication + attr_accessor :user, :repository_http_path + + def initialize(user, repository_http_path) + @user = user + @repository_http_path = repository_http_path + end + + def authenticate! + authorization = { + header: { + Authorization: "Basic #{Base64.strict_encode64("#{user['username']}:#{user['lfs_token']}")}" + }, + href: "#{repository_http_path}/info/lfs/" + } + + JSON.generate(authorization) + end +end |