Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-shell
Commits
1c6a8d1d
Commit
1c6a8d1d
authored
Nov 07, 2018
by
Ash McKenzie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include LFS operation when making auth request
Operation is either upload or download
parent
9cf3334c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
82 additions
and
26 deletions
+82
-26
lib/gitlab_net.rb
lib/gitlab_net.rb
+8
-14
lib/gitlab_shell.rb
lib/gitlab_shell.rb
+5
-4
spec/gitlab_net_spec.rb
spec/gitlab_net_spec.rb
+21
-6
spec/vcr_cassettes/lfs-authenticate-ok-download.yml
spec/vcr_cassettes/lfs-authenticate-ok-download.yml
+46
-0
spec/vcr_cassettes/lfs-authenticate-ok-upload.yml
spec/vcr_cassettes/lfs-authenticate-ok-upload.yml
+2
-2
No files found.
lib/gitlab_net.rb
View file @
1c6a8d1d
...
...
@@ -53,28 +53,22 @@ class GitlabNet # rubocop:disable Metrics/ClassLength
JSON
.
parse
(
resp
.
body
)
rescue
nil
end
def
lfs_authenticate
(
gl_id
,
repo
)
def
lfs_authenticate
(
gl_id
,
repo
,
operation
)
id_sym
,
_
,
id
=
self
.
class
.
parse_who
(
gl_id
)
params
=
{
project:
sanitize_path
(
repo
),
operation:
operation
}
if
id_sym
==
:key_id
params
=
{
project:
sanitize_path
(
repo
),
key_id:
id
}
elsif
id_sym
==
:user_id
params
=
{
project:
sanitize_path
(
repo
),
user_id:
id
}
case
id_sym
when
:key_id
params
[
:key_id
]
=
id
when
:user_id
params
[
:user_id
]
=
id
else
raise
ArgumentError
,
"lfs_authenticate() got unsupported GL_ID='
#{
gl_id
}
'!"
end
resp
=
post
(
"
#{
internal_api_endpoint
}
/lfs_authenticate"
,
params
)
if
resp
.
code
==
'200'
GitlabLfsAuthentication
.
build_from_json
(
resp
.
body
)
end
GitlabLfsAuthentication
.
build_from_json
(
resp
.
body
)
if
resp
.
code
==
'200'
end
def
broadcast_message
...
...
lib/gitlab_shell.rb
View file @
1c6a8d1d
...
...
@@ -155,8 +155,9 @@ class GitlabShell # rubocop:disable Metrics/ClassLength
if
@command
==
'git-lfs-authenticate'
GitlabMetrics
.
measure
(
'lfs-authenticate'
)
do
$logger
.
info
(
'Processing LFS authentication'
,
user:
log_username
)
lfs_authenticate
operation
=
args
[
2
]
$logger
.
info
(
'Processing LFS authentication'
,
operation:
operation
,
user:
log_username
)
lfs_authenticate
(
operation
)
end
return
end
...
...
@@ -224,8 +225,8 @@ class GitlabShell # rubocop:disable Metrics/ClassLength
@config
.
audit_usernames
?
username
:
"user with id
#{
@gl_id
}
"
end
def
lfs_authenticate
lfs_access
=
api
.
lfs_authenticate
(
@gl_id
,
@repo_name
)
def
lfs_authenticate
(
operation
)
lfs_access
=
api
.
lfs_authenticate
(
@gl_id
,
@repo_name
,
operation
)
return
unless
lfs_access
...
...
spec/gitlab_net_spec.rb
View file @
1c6a8d1d
...
...
@@ -67,12 +67,27 @@ describe GitlabNet, vcr: true do
describe
'#lfs_authenticate'
do
context
'lfs authentication succeeded'
do
it
'should return the correct data'
do
VCR
.
use_cassette
(
'lfs-authenticate-ok'
)
do
lfs_access
=
gitlab_net
.
lfs_authenticate
(
key
,
project
)
expect
(
lfs_access
.
username
).
to
eq
(
'root'
)
expect
(
lfs_access
.
lfs_token
).
to
eq
(
'Hyzhyde_wLUeyUQsR3tHGTG8eNocVQm4ssioTEsBSdb6KwCSzQ'
)
expect
(
lfs_access
.
repository_http_path
).
to
eq
(
URI
.
join
(
internal_api_endpoint
.
sub
(
'api/v4'
,
''
),
project
).
to_s
)
let
(
:repository_http_path
)
{
URI
.
join
(
internal_api_endpoint
.
sub
(
'api/v4'
,
''
),
project
).
to_s
}
context
'for download operation'
do
it
'should return the correct data'
do
VCR
.
use_cassette
(
'lfs-authenticate-ok-download'
)
do
lfs_access
=
gitlab_net
.
lfs_authenticate
(
key
,
project
,
'download'
)
expect
(
lfs_access
.
username
).
to
eq
(
'root'
)
expect
(
lfs_access
.
lfs_token
).
to
eq
(
'Hyzhyde_wLUeyUQsR3tHGTG8eNocVQm4ssioTEsBSdb6KwCSzQ'
)
expect
(
lfs_access
.
repository_http_path
).
to
eq
(
repository_http_path
)
end
end
end
context
'for upload operation'
do
it
'should return the correct data'
do
VCR
.
use_cassette
(
'lfs-authenticate-ok-upload'
)
do
lfs_access
=
gitlab_net
.
lfs_authenticate
(
key
,
project
,
'upload'
)
expect
(
lfs_access
.
username
).
to
eq
(
'root'
)
expect
(
lfs_access
.
lfs_token
).
to
eq
(
'Hyzhyde_wLUeyUQsR3tHGTG8eNocVQm4ssioTEsBSdb6KwCSzQ'
)
expect
(
lfs_access
.
repository_http_path
).
to
eq
(
repository_http_path
)
end
end
end
end
...
...
spec/vcr_cassettes/lfs-authenticate-ok-download.yml
0 → 100644
View file @
1c6a8d1d
---
http_interactions
:
-
request
:
method
:
post
uri
:
http://localhost:3000/api/v4/internal/lfs_authenticate
body
:
encoding
:
US-ASCII
string
:
project=gitlab-org%2Fgitlab-test.git&key_id=1&operation=download&secret_token=0a3938d9d95d807e94d937af3a4fbbea%0A
headers
:
Accept-Encoding
:
-
gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept
:
-
"
*/*"
User-Agent
:
-
Ruby
Content-Type
:
-
application/x-www-form-urlencoded
response
:
status
:
code
:
200
message
:
OK
headers
:
Cache-Control
:
-
max-age=0, private, must-revalidate
Content-Length
:
-
'
158'
Content-Type
:
-
application/json
Date
:
-
Wed, 21 Jun 2017 10:44:50 GMT
Etag
:
-
W/"0a8ccf1603566e521c169d5e43c86cd2"
Vary
:
-
Origin
X-Frame-Options
:
-
SAMEORIGIN
X-Request-Id
:
-
d82d6071-1868-4a37-b026-65ab37f96f2f
X-Runtime
:
-
'
0.331056'
body
:
encoding
:
UTF-8
string
:
'
{"username":"root","lfs_token":"Hyzhyde_wLUeyUQsR3tHGTG8eNocVQm4ssioTEsBSdb6KwCSzQ","repository_http_path":"http://localhost:3000/gitlab-org/gitlab-test.git"}'
http_version
:
recorded_at
:
Wed, 21 Jun 2017 10:44:50 GMT
recorded_with
:
VCR 2.4.0
spec/vcr_cassettes/lfs-authenticate-ok.yml
→
spec/vcr_cassettes/lfs-authenticate-ok
-upload
.yml
View file @
1c6a8d1d
...
...
@@ -5,7 +5,7 @@ http_interactions:
uri
:
http://localhost:3000/api/v4/internal/lfs_authenticate
body
:
encoding
:
US-ASCII
string
:
project=gitlab-org%2Fgitlab-test.git&key_id=1&secret_token=0a3938d9d95d807e94d937af3a4fbbea%0A
string
:
project=gitlab-org%2Fgitlab-test.git&key_id=1&
operation=upload&
secret_token=0a3938d9d95d807e94d937af3a4fbbea%0A
headers
:
Accept-Encoding
:
-
gzip;q=1.0,deflate;q=0.6,identity;q=0.3
...
...
@@ -41,6 +41,6 @@ http_interactions:
body
:
encoding
:
UTF-8
string
:
'
{"username":"root","lfs_token":"Hyzhyde_wLUeyUQsR3tHGTG8eNocVQm4ssioTEsBSdb6KwCSzQ","repository_http_path":"http://localhost:3000/gitlab-org/gitlab-test.git"}'
http_version
:
http_version
:
recorded_at
:
Wed, 21 Jun 2017 10:44:50 GMT
recorded_with
:
VCR 2.4.0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment