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
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
Boxiang Sun
gitlab-ce
Commits
f0fe1b9d
Commit
f0fe1b9d
authored
Feb 24, 2017
by
Alexis Reigel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gpg email verification
parent
0668521b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
81 additions
and
13 deletions
+81
-13
app/helpers/badges_helper.rb
app/helpers/badges_helper.rb
+11
-0
app/models/gpg_key.rb
app/models/gpg_key.rb
+16
-0
app/views/profiles/gpg_keys/_key.html.haml
app/views/profiles/gpg_keys/_key.html.haml
+1
-1
spec/features/profiles/gpg_keys_spec.rb
spec/features/profiles/gpg_keys_spec.rb
+11
-9
spec/models/gpg_key_spec.rb
spec/models/gpg_key_spec.rb
+42
-3
No files found.
app/helpers/badges_helper.rb
0 → 100644
View file @
f0fe1b9d
module
BadgesHelper
def
verified_email_badge
(
email
,
verified
)
css_classes
=
%w(btn btn-xs disabled)
css_classes
<<
'btn-success'
if
verified
content_tag
'span'
,
class:
css_classes
do
"
#{
email
}
#{
verified
?
'Verified'
:
'Unverified'
}
"
end
end
end
app/models/gpg_key.rb
View file @
f0fe1b9d
...
...
@@ -31,6 +31,18 @@ class GpgKey < ActiveRecord::Base
Gitlab
::
Gpg
::
CurrentKeyChain
.
emails
(
fingerprint
)
end
def
emails_with_verified_status
emails_in_key_chain
=
emails
emails_from_key
=
Gitlab
::
Gpg
.
emails_from_key
(
key
)
emails_from_key
.
map
do
|
email
|
[
email
,
email
==
user
.
email
&&
emails_in_key_chain
.
include?
(
email
)
]
end
end
private
def
extract_fingerprint
...
...
@@ -40,6 +52,10 @@ class GpgKey < ActiveRecord::Base
end
def
add_to_keychain
emails_from_key
=
Gitlab
::
Gpg
.
emails_from_key
(
key
)
return
unless
emails_from_key
.
include?
(
user
.
email
)
Gitlab
::
Gpg
::
CurrentKeyChain
.
add
(
key
)
end
...
...
app/views/profiles/gpg_keys/_key.html.haml
View file @
f0fe1b9d
...
...
@@ -2,7 +2,7 @@
.pull-left.append-right-10
=
icon
'key'
,
class:
"settings-list-icon hidden-xs"
.key-list-item-info
=
key
.
emails
.
join
(
' '
)
=
key
.
emails
_with_verified_status
.
map
{
|
email
,
verified
|
verified_email_badge
(
email
,
verified
)
}.
join
(
' '
).
html_safe
.description
=
key
.
fingerprint
.pull-right
...
...
spec/features/profiles/gpg_keys_spec.rb
View file @
f0fe1b9d
require
'rails_helper'
feature
'Profile > GPG Keys'
,
:gpg
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
,
email:
GpgHelpers
::
User2
.
emails
.
first
)
}
before
do
login_as
(
user
)
...
...
@@ -13,24 +13,26 @@ feature 'Profile > GPG Keys', :gpg do
end
scenario
'saves the new key'
do
fill_in
(
'Key'
,
with:
attributes_for
(
:gpg_key
)[
:key
]
)
fill_in
(
'Key'
,
with:
GpgHelpers
::
User2
.
public_key
)
click_button
(
'Add key'
)
expect
(
page
).
to
have_content
(
GpgHelpers
::
User1
.
emails
.
join
)
expect
(
page
).
to
have_content
(
GpgHelpers
::
User1
.
fingerprint
)
expect
(
page
).
to
have_content
(
'bette.cartwright@example.com Verified'
)
expect
(
page
).
to
have_content
(
'bette.cartwright@example.net Unverified'
)
expect
(
page
).
to
have_content
(
GpgHelpers
::
User2
.
fingerprint
)
end
end
scenario
'User sees their key
s
'
do
create
(
:gpg_key
,
user:
user
)
scenario
'User sees their key'
do
create
(
:gpg_key
,
user:
user
,
key:
GpgHelpers
::
User2
.
public_key
)
visit
profile_gpg_keys_path
expect
(
page
).
to
have_content
(
GpgHelpers
::
User1
.
emails
.
join
)
expect
(
page
).
to
have_content
(
GpgHelpers
::
User1
.
fingerprint
)
expect
(
page
).
to
have_content
(
'bette.cartwright@example.com Verified'
)
expect
(
page
).
to
have_content
(
'bette.cartwright@example.net Unverified'
)
expect
(
page
).
to
have_content
(
GpgHelpers
::
User2
.
fingerprint
)
end
scenario
'User removes a key via the key index'
do
create
(
:gpg_key
,
user:
user
)
create
(
:gpg_key
,
user:
user
,
key:
GpgHelpers
::
User2
.
public_key
)
visit
profile_gpg_keys_path
click_link
(
'Remove'
)
...
...
spec/models/gpg_key_spec.rb
View file @
f0fe1b9d
...
...
@@ -23,9 +23,20 @@ describe GpgKey do
end
describe
'add_to_keychain'
do
it
'calls add_to_keychain after create'
do
expect
(
Gitlab
::
Gpg
::
CurrentKeyChain
).
to
receive
(
:add
).
with
(
GpgHelpers
::
User1
.
public_key
)
create
:gpg_key
context
"user's email matches one of the key's emails"
do
it
'calls .add after create'
do
expect
(
Gitlab
::
Gpg
::
CurrentKeyChain
).
to
receive
(
:add
).
with
(
GpgHelpers
::
User2
.
public_key
)
user
=
create
:user
,
email:
GpgHelpers
::
User2
.
emails
.
first
create
:gpg_key
,
user:
user
,
key:
GpgHelpers
::
User2
.
public_key
end
end
context
"user's email does not match one of the key's emails"
do
it
'does not call .add after create'
do
expect
(
Gitlab
::
Gpg
::
CurrentKeyChain
).
not_to
receive
(
:add
)
user
=
create
:user
create
:gpg_key
,
user:
user
,
key:
GpgHelpers
::
User2
.
public_key
end
end
end
...
...
@@ -64,4 +75,32 @@ describe GpgKey do
expect
(
gpg_key
.
emails
).
to
eq
GpgHelpers
::
User1
.
emails
end
end
describe
'#emails_with_verified_status'
,
:gpg
do
context
'key is in the keychain'
do
it
'email is verified if the user has the matching email'
do
user
=
create
:user
,
email:
'bette.cartwright@example.com'
gpg_key
=
create
:gpg_key
,
key:
GpgHelpers
::
User2
.
public_key
,
user:
user
expect
(
gpg_key
.
emails_with_verified_status
).
to
match_array
[
[
'bette.cartwright@example.com'
,
true
],
[
'bette.cartwright@example.net'
,
false
]
]
end
end
context
'key is in not the keychain'
do
it
'emails are unverified'
do
user
=
create
:user
,
email:
'bette.cartwright@example.com'
gpg_key
=
create
:gpg_key
,
key:
GpgHelpers
::
User2
.
public_key
,
user:
user
Gitlab
::
Gpg
::
CurrentKeyChain
.
remove
(
GpgHelpers
::
User2
.
fingerprint
)
expect
(
gpg_key
.
emails_with_verified_status
).
to
match_array
[
[
'bette.cartwright@example.com'
,
false
],
[
'bette.cartwright@example.net'
,
false
]
]
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