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
8c4b6a32
Commit
8c4b6a32
authored
Jun 15, 2017
by
Alexis Reigel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bail if the commit has no signature
parent
69e511c4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
7 deletions
+11
-7
app/models/commit.rb
app/models/commit.rb
+1
-5
lib/gitlab/gpg/commit.rb
lib/gitlab/gpg/commit.rb
+4
-2
spec/lib/gitlab/gpg/commit_spec.rb
spec/lib/gitlab/gpg/commit_spec.rb
+6
-0
No files found.
app/models/commit.rb
View file @
8c4b6a32
...
...
@@ -242,11 +242,7 @@ class Commit
cached_signature
=
GpgSignature
.
find_by
(
commit_sha:
sha
)
return
cached_signature
if
cached_signature
.
present?
gpg_commit
=
Gitlab
::
Gpg
::
Commit
.
new
(
self
)
return
unless
gpg_commit
.
has_signature?
@signature
=
gpg_commit
.
signature
@signature
=
Gitlab
::
Gpg
::
Commit
.
new
(
self
).
signature
end
def
revert_branch_name
...
...
lib/gitlab/gpg/commit.rb
View file @
8c4b6a32
...
...
@@ -10,10 +10,12 @@ module Gitlab
end
def
has_signature?
@signature_text
&&
@signed_text
!!
(
@signature_text
&&
@signed_text
)
end
def
signature
return
unless
has_signature?
Gitlab
::
Gpg
.
using_tmp_keychain
do
# first we need to get the keyid from the signature to query the gpg
# key belonging to the keyid.
...
...
@@ -43,7 +45,7 @@ module Gitlab
project:
commit
.
project
,
gpg_key:
gpg_key
,
gpg_key_primary_keyid:
gpg_key
&
.
primary_keyid
,
valid_signature:
!!
(
gpg_key
&&
verified_signature
&
.
valid?
)
valid_signature:
!!
(
gpg_key
&&
verified_signature
.
valid?
)
)
end
end
...
...
spec/lib/gitlab/gpg/commit_spec.rb
View file @
8c4b6a32
...
...
@@ -4,6 +4,12 @@ RSpec.describe Gitlab::Gpg::Commit do
describe
'#signature'
do
let!
(
:project
)
{
create
:project
,
:repository
,
path:
'sample-project'
}
context
'unisgned commit'
do
it
'returns nil'
do
expect
(
described_class
.
new
(
project
.
commit
).
signature
).
to
be_nil
end
end
context
'known public key'
do
it
'returns a valid signature'
do
gpg_key
=
create
:gpg_key
,
key:
GpgHelpers
::
User1
.
public_key
...
...
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