Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
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
1
Merge Requests
1
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-ce
Commits
2fc165a7
Commit
2fc165a7
authored
Nov 09, 2020
by
Kerri Miller
Committed by
Heinrich Lee Yu
Nov 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 404 on Commit Signature API when using Rugged
parent
d99e0b64
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
56 additions
and
6 deletions
+56
-6
app/models/commit.rb
app/models/commit.rb
+14
-2
changelogs/unreleased/211357-api-endpoint-to-get-the-gpg-signature-of-a-commit-always-returns-4.yml
...to-get-the-gpg-signature-of-a-commit-always-returns-4.yml
+5
-0
doc/api/commits.md
doc/api/commits.md
+4
-2
lib/api/entities/commit_signature.rb
lib/api/entities/commit_signature.rb
+17
-2
scripts/lint-rugged
scripts/lint-rugged
+5
-0
spec/requests/api/commits_spec.rb
spec/requests/api/commits_spec.rb
+11
-0
No files found.
app/models/commit.rb
View file @
2fc165a7
...
@@ -335,7 +335,11 @@ class Commit
...
@@ -335,7 +335,11 @@ class Commit
strong_memoize
(
:raw_signature_type
)
do
strong_memoize
(
:raw_signature_type
)
do
next
unless
@raw
.
instance_of?
(
Gitlab
::
Git
::
Commit
)
next
unless
@raw
.
instance_of?
(
Gitlab
::
Git
::
Commit
)
@raw
.
raw_commit
.
signature_type
if
defined?
@raw
.
raw_commit
.
signature_type
if
raw_commit_from_rugged?
&&
gpg_commit
.
signature_text
.
present?
:PGP
elsif
defined?
@raw
.
raw_commit
.
signature_type
@raw
.
raw_commit
.
signature_type
end
end
end
end
end
...
@@ -347,7 +351,7 @@ class Commit
...
@@ -347,7 +351,7 @@ class Commit
strong_memoize
(
:signature
)
do
strong_memoize
(
:signature
)
do
case
signature_type
case
signature_type
when
:PGP
when
:PGP
Gitlab
::
Gpg
::
Commit
.
new
(
self
)
.
signature
gpg_commit
.
signature
when
:X509
when
:X509
Gitlab
::
X509
::
Commit
.
new
(
self
).
signature
Gitlab
::
X509
::
Commit
.
new
(
self
).
signature
else
else
...
@@ -356,6 +360,14 @@ class Commit
...
@@ -356,6 +360,14 @@ class Commit
end
end
end
end
def
raw_commit_from_rugged?
@raw
.
raw_commit
.
is_a?
(
Rugged
::
Commit
)
end
def
gpg_commit
@gpg_commit
||=
Gitlab
::
Gpg
::
Commit
.
new
(
self
)
end
def
revert_branch_name
def
revert_branch_name
"revert-
#{
short_id
}
"
"revert-
#{
short_id
}
"
end
end
...
...
changelogs/unreleased/211357-api-endpoint-to-get-the-gpg-signature-of-a-commit-always-returns-4.yml
0 → 100644
View file @
2fc165a7
---
title
:
Fix 404 error from Commit Signature API when using Rugged
merge_request
:
46736
author
:
type
:
fixed
doc/api/commits.md
View file @
2fc165a7
...
@@ -842,7 +842,8 @@ Example response if commit is GPG signed:
...
@@ -842,7 +842,8 @@ Example response if commit is GPG signed:
"gpg_key_primary_keyid"
:
"8254AAB3FBD54AC9"
,
"gpg_key_primary_keyid"
:
"8254AAB3FBD54AC9"
,
"gpg_key_user_name"
:
"John Doe"
,
"gpg_key_user_name"
:
"John Doe"
,
"gpg_key_user_email"
:
"johndoe@example.com"
,
"gpg_key_user_email"
:
"johndoe@example.com"
,
"gpg_key_subkey_id"
:
null
"gpg_key_subkey_id"
:
null
,
"commit_source"
:
"gitaly"
}
}
```
```
...
@@ -865,7 +866,8 @@ Example response if commit is X.509 signed:
...
@@ -865,7 +866,8 @@ Example response if commit is X.509 signed:
"subject_key_identifier"
:
"AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB"
,
"subject_key_identifier"
:
"AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB:AB"
,
"crl_url"
:
"http://example.com/pki.crl"
"crl_url"
:
"http://example.com/pki.crl"
}
}
}
},
"commit_source"
:
"gitaly"
}
}
```
```
...
...
lib/api/entities/commit_signature.rb
View file @
2fc165a7
...
@@ -4,13 +4,28 @@ module API
...
@@ -4,13 +4,28 @@ module API
module
Entities
module
Entities
class
CommitSignature
<
Grape
::
Entity
class
CommitSignature
<
Grape
::
Entity
expose
:signature_type
expose
:signature_type
expose
:signature
,
merge:
true
do
|
commit
,
options
|
expose
:signature
,
merge:
true
do
|
commit
,
options
|
if
commit
.
signature
.
is_a?
(
GpgSignature
)
if
commit
.
signature
.
is_a?
(
GpgSignature
)
||
commit
.
raw_commit_from_rugged?
::
API
::
Entities
::
GpgCommitSignature
.
represent
commit
.
signature
,
options
::
API
::
Entities
::
GpgCommitSignature
.
represent
commit
_signature
(
commit
)
,
options
elsif
commit
.
signature
.
is_a?
(
X509CommitSignature
)
elsif
commit
.
signature
.
is_a?
(
X509CommitSignature
)
::
API
::
Entities
::
X509Signature
.
represent
commit
.
signature
,
options
::
API
::
Entities
::
X509Signature
.
represent
commit
.
signature
,
options
end
end
end
end
expose
:commit_source
do
|
commit
,
_
|
commit
.
raw_commit_from_rugged?
?
"rugged"
:
"gitaly"
end
private
def
commit_signature
(
commit
)
if
commit
.
raw_commit_from_rugged?
commit
.
gpg_commit
.
signature
else
commit
.
signature
end
end
end
end
end
end
end
end
scripts/lint-rugged
View file @
2fc165a7
...
@@ -18,6 +18,11 @@ ALLOWED = [
...
@@ -18,6 +18,11 @@ ALLOWED = [
# Needed to detect Rugged enabled: https://gitlab.com/gitlab-org/gitlab/issues/35371
# Needed to detect Rugged enabled: https://gitlab.com/gitlab-org/gitlab/issues/35371
'lib/gitlab/config_checker/puma_rugged_checker.rb'
,
'lib/gitlab/config_checker/puma_rugged_checker.rb'
,
# Needed for GPG/X509 commit signature API
#
'app/models/commit.rb'
,
'lib/api/entities/commit_signature.rb'
,
# Needed for logging
# Needed for logging
'config/initializers/peek.rb'
,
'config/initializers/peek.rb'
,
'config/initializers/lograge.rb'
,
'config/initializers/lograge.rb'
,
...
...
spec/requests/api/commits_spec.rb
View file @
2fc165a7
...
@@ -1991,6 +1991,17 @@ RSpec.describe API::Commits do
...
@@ -1991,6 +1991,17 @@ RSpec.describe API::Commits do
expect
(
json_response
[
'x509_certificate'
][
'x509_issuer'
][
'subject'
]).
to
eq
(
commit
.
signature
.
x509_certificate
.
x509_issuer
.
subject
)
expect
(
json_response
[
'x509_certificate'
][
'x509_issuer'
][
'subject'
]).
to
eq
(
commit
.
signature
.
x509_certificate
.
x509_issuer
.
subject
)
expect
(
json_response
[
'x509_certificate'
][
'x509_issuer'
][
'subject_key_identifier'
]).
to
eq
(
commit
.
signature
.
x509_certificate
.
x509_issuer
.
subject_key_identifier
)
expect
(
json_response
[
'x509_certificate'
][
'x509_issuer'
][
'subject_key_identifier'
]).
to
eq
(
commit
.
signature
.
x509_certificate
.
x509_issuer
.
subject_key_identifier
)
expect
(
json_response
[
'x509_certificate'
][
'x509_issuer'
][
'crl_url'
]).
to
eq
(
commit
.
signature
.
x509_certificate
.
x509_issuer
.
crl_url
)
expect
(
json_response
[
'x509_certificate'
][
'x509_issuer'
][
'crl_url'
]).
to
eq
(
commit
.
signature
.
x509_certificate
.
x509_issuer
.
crl_url
)
expect
(
json_response
[
'commit_source'
]).
to
eq
(
'gitaly'
)
end
context
'with Rugged enabled'
,
:enable_rugged
do
it
'returns correct JSON'
do
get
api
(
route
,
current_user
)
expect
(
response
).
to
have_gitlab_http_status
(
:ok
)
expect
(
json_response
[
'signature_type'
]).
to
eq
(
'PGP'
)
expect
(
json_response
[
'commit_source'
]).
to
eq
(
'rugged'
)
end
end
end
end
end
end
end
...
...
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