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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/* CodeQ: an online programming tutor.
Copyright (C) 2015 UL FRI
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/**
* Created by robert on 10/14/15.
*
*/
(function(){
"use strict";
var jqScreen = $('#screen_aai_login'),
jqNavBarRight = $('.nav.navbar-nav.navbar-right'),
jqNavigationHomeBtn = $('#navigation-home'),
jqCancelAaiLogin = $("#cancel_aai_login"),
jqDisabledOverlay = $('#disabled'),
jqAaiIframe = $('#aai_iframe'),
baseSamlUrl = 'https://codeq.si/saml/Login?sid=',
samlLoginUrl = '';
codeq.globalStateMachine.register('aailogin',{
'jqScreen': jqScreen,
'enter': function(){
jqDisabledOverlay.css('display', '');
codeq.samlLogin = true;//set the flag
$('.saml-login-hide').css('display','none');//hide the change password buttons, in the case we go back to the normal login page (cancel or error) they will be reset to being visible when we enter the normal login state
jqNavigationHomeBtn.off('click');//remove the click listener of this element here
jqNavBarRight.css('display','none');//hide settings etc.
//enable the back button
jqCancelAaiLogin.on('click',function(){
codeq.globalStateMachine.transition('login');
});
$('#signed-in-title').html('');
jqScreen.css('display','');
codeq.comms.connect()
.then(function(){
samlLoginUrl = baseSamlUrl + codeq.comms.getSid();
jqAaiIframe.attr('src', samlLoginUrl);
return codeq.comms.samlLogin();
})
.then(function(data){
//upgrade
if (data.code == 1) codeq.globalStateMachine.transition('upgradeToAAI');
//not upgrade
else codeq.loginCallbackFunction(data);
})
.fail(function(reason){
if(codeq.samlLogin){//if the user goes back to the normal login screen the timeout (which will happen) mustn't do anything
codeq.log.error('SAML login failed: ' + reason);
alert('SAML login failed: ' + reason);
codeq.globalStateMachine.transition('login');
}
})
.done();
jqDisabledOverlay.css('display','none');
},
'exit' : function(){
//disable site specific listeners
codeq.comms.off('saml_login');
jqAaiIframe.attr('src','');//lets remove the url
jqCancelAaiLogin.off('click');
samlLoginUrl = '';
jqScreen.css('display', 'none');
//re-enable the click listener of the logo
jqNavigationHomeBtn.on('click', function(e){
codeq.globalStateMachine.transition('language');
e.preventDefault();
});
//show the menu buttons
jqNavBarRight.css('display','');
}
});
})();
|