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
Jérome Perrin
gitlab-ce
Commits
a6d3727f
Commit
a6d3727f
authored
Jun 25, 2018
by
Jan Beckmann
Committed by
Phil Hughes
Jun 25, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "2FA should not attempt to use U2F in unsupported browsers"
parent
ff9b99ca
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
60 additions
and
40 deletions
+60
-40
app/assets/javascripts/u2f/authenticate.js
app/assets/javascripts/u2f/authenticate.js
+1
-7
app/views/u2f/_authenticate.html.haml
app/views/u2f/_authenticate.html.haml
+0
-3
changelogs/unreleased/40005-u2f-unspported-browsers.yml
changelogs/unreleased/40005-u2f-unspported-browsers.yml
+5
-0
spec/javascripts/u2f/authenticate_spec.js
spec/javascripts/u2f/authenticate_spec.js
+54
-30
No files found.
app/assets/javascripts/u2f/authenticate.js
View file @
a6d3727f
...
...
@@ -11,7 +11,6 @@ export default class U2FAuthenticate {
constructor
(
container
,
form
,
u2fParams
,
fallbackButton
,
fallbackUI
)
{
this
.
u2fUtils
=
null
;
this
.
container
=
container
;
this
.
renderNotSupported
=
this
.
renderNotSupported
.
bind
(
this
);
this
.
renderAuthenticated
=
this
.
renderAuthenticated
.
bind
(
this
);
this
.
renderError
=
this
.
renderError
.
bind
(
this
);
this
.
renderInProgress
=
this
.
renderInProgress
.
bind
(
this
);
...
...
@@ -41,7 +40,6 @@ export default class U2FAuthenticate {
this
.
signRequests
=
u2fParams
.
sign_requests
.
map
(
request
=>
_
(
request
).
omit
(
'
challenge
'
));
this
.
templates
=
{
notSupported
:
'
#js-authenticate-u2f-not-supported
'
,
setup
:
'
#js-authenticate-u2f-setup
'
,
inProgress
:
'
#js-authenticate-u2f-in-progress
'
,
error
:
'
#js-authenticate-u2f-error
'
,
...
...
@@ -55,7 +53,7 @@ export default class U2FAuthenticate {
this
.
u2fUtils
=
utils
;
this
.
renderInProgress
();
})
.
catch
(()
=>
this
.
renderNotSupported
());
.
catch
(()
=>
this
.
switchToFallbackUI
());
}
authenticate
()
{
...
...
@@ -96,10 +94,6 @@ export default class U2FAuthenticate {
this
.
fallbackButton
.
classList
.
add
(
'
hidden
'
);
}
renderNotSupported
()
{
return
this
.
renderTemplate
(
'
notSupported
'
);
}
switchToFallbackUI
()
{
this
.
fallbackButton
.
classList
.
add
(
'
hidden
'
);
this
.
container
[
0
].
classList
.
add
(
'
hidden
'
);
...
...
app/views/u2f/_authenticate.html.haml
View file @
a6d3727f
...
...
@@ -2,9 +2,6 @@
%a
.btn.btn-block.btn-info
#js-login-2fa-device
{
href:
'#'
}
Sign in via 2FA code
-# haml-lint:disable InlineJavaScript
%script
#js-authenticate-u2f-not-supported
{
type:
"text/template"
}
%p
Your browser doesn't support U2F. Please use Google Chrome desktop (version 41 or newer).
%script
#js-authenticate-u2f-in-progress
{
type:
"text/template"
}
%p
Trying to communicate with your device. Plug it in (if you haven't already) and press the button on the device now.
...
...
changelogs/unreleased/40005-u2f-unspported-browsers.yml
0 → 100644
View file @
a6d3727f
---
title
:
Improve U2F workflow when using unsupported browsers
merge_request
:
19938
author
:
Jan Beckmann
type
:
changed
spec/javascripts/u2f/authenticate_spec.js
View file @
a6d3727f
...
...
@@ -6,7 +6,7 @@ import MockU2FDevice from './mock_u2f_device';
describe
(
'
U2FAuthenticate
'
,
function
()
{
preloadFixtures
(
'
u2f/authenticate.html.raw
'
);
beforeEach
((
done
)
=>
{
beforeEach
(()
=>
{
loadFixtures
(
'
u2f/authenticate.html.raw
'
);
this
.
u2fDevice
=
new
MockU2FDevice
();
this
.
container
=
$
(
'
#js-authenticate-u2f
'
);
...
...
@@ -19,9 +19,32 @@ describe('U2FAuthenticate', function () {
document
.
querySelector
(
'
#js-login-2fa-device
'
),
document
.
querySelector
(
'
.js-2fa-form
'
),
);
});
describe
(
'
with u2f unavailable
'
,
()
=>
{
beforeEach
(()
=>
{
spyOn
(
this
.
component
,
'
switchToFallbackUI
'
);
this
.
oldu2f
=
window
.
u2f
;
window
.
u2f
=
null
;
});
afterEach
(()
=>
{
window
.
u2f
=
this
.
oldu2f
;
});
it
(
'
falls back to normal 2fa
'
,
(
done
)
=>
{
this
.
component
.
start
().
then
(()
=>
{
expect
(
this
.
component
.
switchToFallbackUI
).
toHaveBeenCalled
();
done
();
}).
catch
(
done
.
fail
);
});
});
describe
(
'
with u2f available
'
,
()
=>
{
beforeEach
((
done
)
=>
{
// bypass automatic form submission within renderAuthenticated
spyOn
(
this
.
component
,
'
renderAuthenticated
'
).
and
.
returnValue
(
true
);
this
.
u2fDevice
=
new
MockU2FDevice
();
this
.
component
.
start
().
then
(
done
).
catch
(
done
.
fail
);
});
...
...
@@ -61,4 +84,5 @@ describe('U2FAuthenticate', function () {
expect
(
this
.
component
.
renderAuthenticated
).
toHaveBeenCalledWith
(
'
{"deviceData":"this is data from the device"}
'
);
});
});
});
});
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