blob: dce8d42ddf7aa57b3f2f99d0ceb1cee82046b79e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// -*- js-indent-level: 2 -*-
jQuery(function($) {
var loggedIn = function(res) {
console.log(res);
if (res.returnURI) {
window.location.assign(res.returnURI);
} else {
window.location.reload(true);
}
};
var loggedOut = function(res) {
};
var gotAssertion = function(assertion) {
// got an assertion, now send it up to the server for verification
if (assertion) {
$.ajax({
type: 'POST',
url: '/login/browserid/verify',
data: { assertion: assertion },
success: function(res, status, xhr) {
if (res === null) {
loggedOut();
}
else {
loggedIn(res);
}
},
error: function(res, status, xhr) {
//console.log(res);
//console.log(status);
alert("Whoops, I failed to authenticate you! " + res.responseText);
}
});
} else {
loggedOut();
}
}
$('#browserid').click(function() {
navigator.id.get(gotAssertion, {allowPersistent: true});
return false;
});
// Query persistent login.
var login = $('head').attr('data-logged-in');
if (login === "false") {
navigator.id.get(gotAssertion, {silent: true});
}
});
|