author | Dan |
Sun, 21 Jun 2009 00:16:21 -0400 | |
changeset 1026 | f0431eb8161e |
parent 1002 | 4d1bb8deee88 |
child 1052 | 374d08d176cb |
permissions | -rw-r--r-- |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1 |
/* |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
2 |
* AJAX-based intelligent login interface |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
3 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
4 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
5 |
/* |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
6 |
* FRONTEND |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
7 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
8 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
9 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
10 |
* Performs a logon as a regular member. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
11 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
12 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
13 |
window.ajaxLogonToMember = function() |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
14 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
15 |
// IE <6 pseudo-compatibility |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
16 |
if ( KILL_SWITCH ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
17 |
return true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
18 |
if ( auth_level >= USER_LEVEL_MEMBER ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
19 |
return true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
20 |
ajaxLoginInit(function(k) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
21 |
{ |
1026
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
22 |
if ( on_main_page && main_page_members != physical_title ) |
741 | 23 |
{ |
24 |
window.location = makeUrl(main_page_members); |
|
25 |
} |
|
26 |
else |
|
27 |
{ |
|
28 |
window.location.reload(); |
|
29 |
} |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
30 |
}, USER_LEVEL_MEMBER); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
31 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
32 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
33 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
34 |
* Authenticates to the highest level the current user is allowed to go to. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
35 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
36 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
37 |
window.ajaxLogonToElev = function() |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
38 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
39 |
if ( auth_level == user_level ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
40 |
return true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
41 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
42 |
ajaxLoginInit(function(k) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
43 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
44 |
ENANO_SID = k; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
45 |
var url = String(' ' + window.location).substr(1); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
46 |
url = append_sid(url); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
47 |
window.location = url; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
48 |
}, user_level); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
49 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
50 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
51 |
/* |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
52 |
* BACKEND |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
53 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
54 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
55 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
56 |
* Holding object for various AJAX authentication information. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
57 |
* @var object |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
58 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
59 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
60 |
var logindata = {}; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
61 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
62 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
63 |
* Path to the image used to indicate loading progress |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
64 |
* @var string |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
65 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
66 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
67 |
if ( !ajax_login_loadimg_path ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
68 |
var ajax_login_loadimg_path = false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
69 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
70 |
if ( !ajax_login_successimg_path ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
71 |
var ajax_login_successimg_path = false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
72 |
|
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
73 |
if ( !ajax_login_lockimg_path ) |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
74 |
var ajax_login_lockimg_path = false; |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
75 |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
76 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
77 |
* Status variables |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
78 |
* @var int |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
79 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
80 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
81 |
var AJAX_STATUS_LOADING_KEY = 1; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
82 |
var AJAX_STATUS_GENERATING_KEY = 2; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
83 |
var AJAX_STATUS_LOGGING_IN = 3; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
84 |
var AJAX_STATUS_SUCCESS = 4; |
718
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
85 |
var AJAX_STATUS_ERROR = 5; |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
86 |
var AJAX_STATUS_DESTROY = 65535; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
87 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
88 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
89 |
* State constants |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
90 |
* @var int |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
91 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
92 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
93 |
var AJAX_STATE_EARLY_INIT = 1; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
94 |
var AJAX_STATE_LOADING_KEY = 2; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
95 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
96 |
/** |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
97 |
* Switch to decide if DiffieHellman shows a "browser incompatible" error |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
98 |
* @var bool |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
99 |
*/ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
100 |
|
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
101 |
var ajax_login_prevent_dh = IE || is_iPhone; |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
102 |
|
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
103 |
/** |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
104 |
* Performs the AJAX request to get an encryption key and from there spawns the login form. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
105 |
* @param function The function that will be called once authentication completes successfully. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
106 |
* @param int The security level to authenticate at - see http://docs.enanocms.org/Help:Appendix_B |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
107 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
108 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
109 |
window.ajaxLoginInit = function(call_on_finish, user_level) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
110 |
{ |
780
f65e35566b63
A few fixes to the most recently added feature: more efficiency tweaks, tweaked l10n to have beetter fetch-on-demand support to ensure that stubs are never returned
Dan
parents:
779
diff
changeset
|
111 |
load_component(['messagebox', 'flyin', 'fadefilter', 'jquery', 'jquery-ui', 'l10n', 'crypto']); |
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
112 |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
113 |
logindata = {}; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
114 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
115 |
var title = ( user_level > USER_LEVEL_MEMBER ) ? $lang.get('user_login_ajax_prompt_title_elev') : $lang.get('user_login_ajax_prompt_title'); |
550
685e839d934e
Added ability to delete the draft revision; [SECURITY] fixed lack of permission check on draft save; renamed messagebox() constructor to MessageBox() (backward compat. maintained)
Dan
parents:
532
diff
changeset
|
116 |
logindata.mb_object = new MessageBox(MB_OKCANCEL | MB_ICONLOCK, title, ''); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
117 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
118 |
logindata.mb_object.onclick['Cancel'] = function() |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
119 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
120 |
// Hide the error message and captcha |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
121 |
if ( document.getElementById('ajax_login_error_box') ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
122 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
123 |
document.getElementById('ajax_login_error_box').parentNode.removeChild(document.getElementById('ajax_login_error_box')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
124 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
125 |
if ( document.getElementById('autoCaptcha') ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
126 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
127 |
var to = fly_out_top(document.getElementById('autoCaptcha'), false, true); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
128 |
setTimeout(function() { |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
129 |
var d = document.getElementById('autoCaptcha'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
130 |
d.parentNode.removeChild(d); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
131 |
}, to); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
132 |
} |
471
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
133 |
// Ask the server to clean our key |
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
134 |
ajaxLoginPerformRequest({ |
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
135 |
mode: 'clean_key', |
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
136 |
key_aes: logindata.key_aes, |
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
137 |
key_dh: logindata.key_dh |
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
138 |
}); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
139 |
}; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
140 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
141 |
logindata.mb_object.onbeforeclick['OK'] = function() |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
142 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
143 |
ajaxLoginSubmitForm(); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
144 |
return true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
145 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
146 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
147 |
// Fetch the inner content area |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
148 |
logindata.mb_inner = document.getElementById('messageBox').getElementsByTagName('div')[0]; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
149 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
150 |
// Initialize state |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
151 |
logindata.showing_status = false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
152 |
logindata.user_level = user_level; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
153 |
logindata.successfunc = call_on_finish; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
154 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
155 |
// Build the "loading" window |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
156 |
ajaxLoginSetStatus(AJAX_STATUS_LOADING_KEY); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
157 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
158 |
// Request the key |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
159 |
ajaxLoginPerformRequest({ mode: 'getkey' }); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
160 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
161 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
162 |
/** |
532
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
parents:
509
diff
changeset
|
163 |
* For compatibility only. |
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
parents:
509
diff
changeset
|
164 |
*/ |
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
parents:
509
diff
changeset
|
165 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
166 |
window.ajaxLogonInit = function(call_on_finish, user_level) |
532
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
parents:
509
diff
changeset
|
167 |
{ |
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
parents:
509
diff
changeset
|
168 |
return ajaxLoginInit(call_on_finish, user_level); |
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
parents:
509
diff
changeset
|
169 |
} |
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
parents:
509
diff
changeset
|
170 |
|
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
parents:
509
diff
changeset
|
171 |
/** |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
172 |
* Sets the contents of the AJAX login window to the appropriate status message. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
173 |
* @param int One of AJAX_STATUS_* |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
174 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
175 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
176 |
window.ajaxLoginSetStatus = function(status) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
177 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
178 |
if ( !logindata.mb_inner ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
179 |
return false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
180 |
if ( logindata.showing_status ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
181 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
182 |
var div = document.getElementById('ajax_login_status'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
183 |
if ( div ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
184 |
logindata.mb_inner.removeChild(div); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
185 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
186 |
switch(status) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
187 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
188 |
case AJAX_STATUS_LOADING_KEY: |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
189 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
190 |
// Create the status div |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
191 |
var div = document.createElement('div'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
192 |
div.id = 'ajax_login_status'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
193 |
div.style.marginTop = '10px'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
194 |
div.style.textAlign = 'center'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
195 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
196 |
// The circly ball ajaxy image + status message |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
197 |
var status_msg = $lang.get('user_login_ajax_fetching_key'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
198 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
199 |
// Insert the status message |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
200 |
div.appendChild(document.createTextNode(status_msg)); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
201 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
202 |
// Append a br or two to space things properly |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
203 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
204 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
205 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
206 |
var img = document.createElement('img'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
207 |
img.src = ( ajax_login_loadimg_path ) ? ajax_login_loadimg_path : scriptPath + '/images/loading-big.gif'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
208 |
div.appendChild(img); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
209 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
210 |
// Another coupla brs |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
211 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
212 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
213 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
214 |
// The link to the full login form |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
215 |
var small = document.createElement('small'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
216 |
small.innerHTML = $lang.get('user_login_ajax_link_fullform', { link_full_form: makeUrlNS('Special', 'Login/' + title) }); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
217 |
div.appendChild(small); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
218 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
219 |
// Insert the entire message into the login window |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
220 |
logindata.mb_inner.innerHTML = ''; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
221 |
logindata.mb_inner.appendChild(div); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
222 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
223 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
224 |
case AJAX_STATUS_GENERATING_KEY: |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
225 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
226 |
// Create the status div |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
227 |
var div = document.createElement('div'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
228 |
div.id = 'ajax_login_status'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
229 |
div.style.marginTop = '10px'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
230 |
div.style.textAlign = 'center'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
231 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
232 |
// The circly ball ajaxy image + status message |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
233 |
var status_msg = $lang.get('user_login_ajax_generating_key'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
234 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
235 |
// Insert the status message |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
236 |
div.appendChild(document.createTextNode(status_msg)); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
237 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
238 |
// Append a br or two to space things properly |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
239 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
240 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
241 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
242 |
var img = document.createElement('img'); |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
243 |
img.src = ( ajax_login_lockimg_path ) ? ajax_login_lockimg_path : scriptPath + '/images/lock48.png'; |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
244 |
div.appendChild(img); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
245 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
246 |
// Another coupla brs |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
247 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
248 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
249 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
250 |
// The link to the full login form |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
251 |
var small = document.createElement('small'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
252 |
small.innerHTML = $lang.get('user_login_ajax_link_fullform_dh', { link_full_form: makeUrlNS('Special', 'Login/' + title) }); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
253 |
div.appendChild(small); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
254 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
255 |
// Insert the entire message into the login window |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
256 |
logindata.mb_inner.innerHTML = ''; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
257 |
logindata.mb_inner.appendChild(div); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
258 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
259 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
260 |
case AJAX_STATUS_LOGGING_IN: |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
261 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
262 |
// Create the status div |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
263 |
var div = document.createElement('div'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
264 |
div.id = 'ajax_login_status'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
265 |
div.style.marginTop = '10px'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
266 |
div.style.textAlign = 'center'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
267 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
268 |
// The circly ball ajaxy image + status message |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
269 |
var status_msg = $lang.get('user_login_ajax_loggingin'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
270 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
271 |
// Insert the status message |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
272 |
div.appendChild(document.createTextNode(status_msg)); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
273 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
274 |
// Append a br or two to space things properly |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
275 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
276 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
277 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
278 |
var img = document.createElement('img'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
279 |
img.src = ( ajax_login_loadimg_path ) ? ajax_login_loadimg_path : scriptPath + '/images/loading-big.gif'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
280 |
div.appendChild(img); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
281 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
282 |
// Insert the entire message into the login window |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
283 |
logindata.mb_inner.innerHTML = ''; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
284 |
logindata.mb_inner.appendChild(div); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
285 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
286 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
287 |
case AJAX_STATUS_SUCCESS: |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
288 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
289 |
// Create the status div |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
290 |
var div = document.createElement('div'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
291 |
div.id = 'ajax_login_status'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
292 |
div.style.marginTop = '10px'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
293 |
div.style.textAlign = 'center'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
294 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
295 |
// The circly ball ajaxy image + status message |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
296 |
var status_msg = $lang.get('user_login_success_short'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
297 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
298 |
// Insert the status message |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
299 |
div.appendChild(document.createTextNode(status_msg)); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
300 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
301 |
// Append a br or two to space things properly |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
302 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
303 |
div.appendChild(document.createElement('br')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
304 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
305 |
var img = document.createElement('img'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
306 |
img.src = ( ajax_login_successimg_path ) ? ajax_login_successimg_path : scriptPath + '/images/check.png'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
307 |
div.appendChild(img); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
308 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
309 |
// Insert the entire message into the login window |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
310 |
logindata.mb_inner.innerHTML = ''; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
311 |
logindata.mb_inner.appendChild(div); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
312 |
|
718
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
313 |
break; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
314 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
315 |
case AJAX_STATUS_ERROR: |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
316 |
// Create the status div |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
317 |
var div = document.createElement('div'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
318 |
div.id = 'ajax_login_status'; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
319 |
div.style.marginTop = '10px'; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
320 |
div.style.textAlign = 'center'; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
321 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
322 |
// The circly ball ajaxy image + status message |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
323 |
var status_msg = $lang.get('user_login_ajax_err_crypto'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
324 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
325 |
// Insert the status message |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
326 |
div.appendChild(document.createTextNode(status_msg)); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
327 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
328 |
// Append a br or two to space things properly |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
329 |
div.appendChild(document.createElement('br')); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
330 |
div.appendChild(document.createElement('br')); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
331 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
332 |
var img = document.createElement('img'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
333 |
img.src = ( ajax_login_successimg_path ) ? ajax_login_successimg_path : scriptPath + '/images/checkbad.png'; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
334 |
div.appendChild(img); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
335 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
336 |
// Append a br or two to space things properly |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
337 |
div.appendChild(document.createElement('br')); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
338 |
div.appendChild(document.createElement('br')); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
339 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
340 |
// The circly ball ajaxy image + status message |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
341 |
var detail_msg = $lang.get('user_login_ajax_err_crypto_details'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
342 |
var full_link = $lang.get('user_login_ajax_err_crypto_link'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
343 |
var link = document.createElement('a'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
344 |
link.href = makeUrlNS('Special', 'Login/' + title); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
345 |
link.appendChild(document.createTextNode(full_link)); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
346 |
var span = document.createElement('span'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
347 |
span.style.fontSize = 'smaller'; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
348 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
349 |
// Insert the message |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
350 |
span.appendChild(document.createTextNode(detail_msg + ' ')); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
351 |
span.appendChild(link); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
352 |
div.appendChild(span); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
353 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
354 |
// Insert the entire message into the login window |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
355 |
logindata.mb_inner.innerHTML = ''; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
356 |
logindata.mb_inner.appendChild(div); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
357 |
|
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
358 |
break; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
359 |
|
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
360 |
default: |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
361 |
eval(setHook('login_set_status')); |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
362 |
break; |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
363 |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
364 |
case AJAX_STATUS_DESTROY: |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
365 |
case null: |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
366 |
case undefined: |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
367 |
logindata.showing_status = false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
368 |
return null; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
369 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
370 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
371 |
logindata.showing_status = true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
372 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
373 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
374 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
375 |
* Performs an AJAX logon request to the server and calls ajaxLoginProcessResponse() on the result. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
376 |
* @param object JSON packet to send |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
377 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
378 |
|
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
379 |
window.ajaxLoginPerformRequest = function(json, _hookfunc) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
380 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
381 |
json = toJSONString(json); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
382 |
json = ajaxEscape(json); |
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
383 |
var hookfunc = typeof(_hookfunc) == 'function' ? _hookfunc : false; |
824
28d9fbcd4f0d
Login: reauth: window.location.hash is now updated to include the new SID so that page reloads will use it
Dan
parents:
816
diff
changeset
|
384 |
ajaxPost(makeUrlNS('Special', 'Login/action.json'), 'r=' + json, function(ajax) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
385 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
386 |
if ( ajax.readyState == 4 && ajax.status == 200 ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
387 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
388 |
// parse response |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
389 |
var response = String(ajax.responseText + ''); |
651
ce9d78d7251d
Improved JSON validation and error interface when validation fails; made rank manager support custom CSS
Dan
parents:
585
diff
changeset
|
390 |
if ( !check_json_response(response) ) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
391 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
392 |
handle_invalid_json(response); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
393 |
return false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
394 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
395 |
response = parseJSON(response); |
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
396 |
ajaxLoginProcessResponse(response, hookfunc); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
397 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
398 |
}, true); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
399 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
400 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
401 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
402 |
* Processes a response from the login server |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
403 |
* @param object JSON response |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
404 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
405 |
|
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
406 |
window.ajaxLoginProcessResponse = function(response, hookfunc) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
407 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
408 |
// Did the server send a plaintext error? |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
409 |
if ( response.mode == 'error' ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
410 |
{ |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
411 |
if ( logindata.mb_object ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
412 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
413 |
logindata.mb_object.destroy(); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
414 |
var error_msg = $lang.get('user_' + ( response.error.toLowerCase() )); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
415 |
new MessageBox(MB_ICONSTOP | MB_OK, $lang.get('user_err_login_generic_title'), error_msg); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
416 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
417 |
else |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
418 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
419 |
alert(response.error); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
420 |
} |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
421 |
return false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
422 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
423 |
// Main mode switch |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
424 |
switch ( response.mode ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
425 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
426 |
case 'build_box': |
471
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
427 |
// Rid ourselves of any loading windows |
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
428 |
ajaxLoginSetStatus(AJAX_STATUS_DESTROY); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
429 |
// The server wants us to build the login form, all the information is there |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
430 |
ajaxLoginBuildForm(response); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
431 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
432 |
case 'login_success': |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
433 |
ajaxLoginSetStatus(AJAX_STATUS_SUCCESS); |
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
434 |
logindata.successfunc(response.key, response); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
435 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
436 |
case 'login_failure': |
471
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
437 |
// Rid ourselves of any loading windows |
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
438 |
ajaxLoginSetStatus(AJAX_STATUS_DESTROY); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
439 |
document.getElementById('messageBox').style.backgroundColor = '#C0C0C0'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
440 |
var mb_parent = document.getElementById('messageBox').parentNode; |
1026
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
441 |
var do_respawn = ( typeof(response.respawn) == 'boolean' && response.respawn == true ) || typeof(response.respawn) != 'boolean'; |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
442 |
if ( do_respawn ) |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
443 |
{ |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
444 |
$(mb_parent).effect("shake", {}, 200); |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
445 |
setTimeout(function() |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
446 |
{ |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
447 |
document.getElementById('messageBox').style.backgroundColor = '#FFF'; |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
448 |
|
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
449 |
ajaxLoginBuildForm(response.respawn_info); |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
450 |
ajaxLoginShowFriendlyError(response); |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
451 |
}, 2500); |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
452 |
} |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
453 |
else |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
454 |
{ |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
455 |
ajaxLoginShowFriendlyError(response); |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
456 |
} |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
457 |
break; |
472
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
458 |
case 'login_success_reset': |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
459 |
var conf = confirm($lang.get('user_login_ajax_msg_used_temp_pass')); |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
460 |
if ( conf ) |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
461 |
{ |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
462 |
var url = makeUrlNS('Special', 'PasswordReset/stage2/' + response.user_id + '/' + response.temp_password); |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
463 |
window.location = url; |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
464 |
} |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
465 |
else |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
466 |
{ |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
467 |
// treat as a failure |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
468 |
ajaxLoginSetStatus(AJAX_STATUS_DESTROY); |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
469 |
document.getElementById('messageBox').style.backgroundColor = '#C0C0C0'; |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
470 |
var mb_parent = document.getElementById('messageBox').parentNode; |
699
c7d737202d59
Removed Adobe Spry and replaced with jQuery. Please report any new bugs on the forums or via IRC. In a related note, auto-completion should work now at least for usernames. Still hacking away at page name completion...
Dan
parents:
694
diff
changeset
|
471 |
$(mb_parent).effect("shake", {}, 1500); |
472
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
472 |
setTimeout(function() |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
473 |
{ |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
474 |
document.getElementById('messageBox').style.backgroundColor = '#FFF'; |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
475 |
ajaxLoginBuildForm(response.respawn_info); |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
476 |
// don't show an error here, just silently respawn |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
477 |
}, 2500); |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
478 |
} |
bc4b58034f4d
Implemented password reset (albeit hackishly) into the new login API; added dummy window.console object to hopefully reduce errors when Firebug isn't around; fixed the longstanding ACL dismiss/close button bug; fixed a couple undefined variables in mailer; fixed PHP error on attempted opening of /dev/(u)random in rijndael.php; clarified documentation for PageProcessor::update_page(); fixed some logic problems in theme ACL code; disabled CAPTCHA debug
Dan
parents:
471
diff
changeset
|
479 |
break; |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
480 |
case 'logout_success': |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
481 |
if ( ENANO_SID ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
482 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
483 |
ajaxLoginReplaceSIDInline(false, ENANO_SID, USER_LEVEL_MEMBER); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
484 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
485 |
break; |
471
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
486 |
case 'noop': |
7906fb190fc1
Implemented all security features on theme disabling and ACLs; added clean_key mode to login API to clean unused encryption keys
Dan
parents:
461
diff
changeset
|
487 |
break; |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
488 |
} |
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
489 |
if ( hookfunc ) |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
490 |
{ |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
491 |
hookfunc(response); |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
492 |
} |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
493 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
494 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
495 |
/* |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
496 |
* RESPONSE HANDLERS |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
497 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
498 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
499 |
/** |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
500 |
* Builds the login form. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
501 |
* @param object Metadata to build off of |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
502 |
*/ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
503 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
504 |
window.ajaxLoginBuildForm = function(data) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
505 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
506 |
// let's hope this effectively preloads the image... |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
507 |
var _1 = document.createElement('img'); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
508 |
_1.src = ( ajax_login_successimg_path ) ? ajax_login_successimg_path : scriptPath + '/images/check.png'; |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
509 |
var _2 = document.createElement('img'); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
510 |
_2.src = ( ajax_login_lockimg_path ) ? ajax_login_lockimg_path : scriptPath + '/images/lock48.png'; |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
511 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
512 |
var div = document.createElement('div'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
513 |
div.id = 'ajax_login_form'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
514 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
515 |
var show_captcha = ( data.locked_out && data.lockout_info.lockout_policy == 'captcha' ) ? data.lockout_info.captcha : false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
516 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
517 |
// text displayed on re-auth |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
518 |
if ( logindata.user_level > USER_LEVEL_MEMBER ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
519 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
520 |
div.innerHTML += $lang.get('user_login_ajax_prompt_body_elev') + '<br /><br />'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
521 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
522 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
523 |
// Create the form |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
524 |
var form = document.createElement('form'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
525 |
form.action = 'javascript:void(ajaxLoginSubmitForm());'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
526 |
form.onsubmit = function() |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
527 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
528 |
ajaxLoginSubmitForm(); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
529 |
return false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
530 |
} |
460 | 531 |
if ( IE ) |
532 |
{ |
|
533 |
form.style.marginTop = '-20px'; |
|
534 |
} |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
535 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
536 |
// Using tables to wrap form elements because it results in a |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
537 |
// more visually appealing form. Yes, tables suck. I don't really |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
538 |
// care - they make forms look good. |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
539 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
540 |
var table = document.createElement('table'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
541 |
table.style.margin = '0 auto'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
542 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
543 |
// Field - username |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
544 |
var tr1 = document.createElement('tr'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
545 |
var td1_1 = document.createElement('td'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
546 |
td1_1.appendChild(document.createTextNode($lang.get('user_login_field_username') + ':')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
547 |
tr1.appendChild(td1_1); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
548 |
var td1_2 = document.createElement('td'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
549 |
var f_username = document.createElement('input'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
550 |
f_username.id = 'ajax_login_field_username'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
551 |
f_username.name = 'ajax_login_field_username'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
552 |
f_username.type = 'text'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
553 |
f_username.size = '25'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
554 |
if ( data.username ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
555 |
f_username.value = data.username; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
556 |
td1_2.appendChild(f_username); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
557 |
tr1.appendChild(td1_2); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
558 |
table.appendChild(tr1); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
559 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
560 |
// Field - password |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
561 |
var tr2 = document.createElement('tr'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
562 |
var td2_1 = document.createElement('td'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
563 |
td2_1.appendChild(document.createTextNode($lang.get('user_login_field_password') + ':')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
564 |
tr2.appendChild(td2_1); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
565 |
var td2_2 = document.createElement('td'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
566 |
var f_password = document.createElement('input'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
567 |
f_password.id = 'ajax_login_field_password'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
568 |
f_password.name = 'ajax_login_field_username'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
569 |
f_password.type = 'password'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
570 |
f_password.size = '25'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
571 |
if ( !show_captcha ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
572 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
573 |
f_password.onkeyup = function(e) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
574 |
{ |
461 | 575 |
if ( !e ) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
576 |
e = window.event; |
461 | 577 |
if ( !e && IE ) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
578 |
return true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
579 |
if ( e.keyCode == 13 ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
580 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
581 |
ajaxLoginSubmitForm(); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
582 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
583 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
584 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
585 |
td2_2.appendChild(f_password); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
586 |
tr2.appendChild(td2_2); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
587 |
table.appendChild(tr2); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
588 |
|
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
589 |
eval(setHook('login_build_form')); |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
590 |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
591 |
// Field - captcha |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
592 |
if ( show_captcha ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
593 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
594 |
var tr3 = document.createElement('tr'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
595 |
var td3_1 = document.createElement('td'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
596 |
td3_1.appendChild(document.createTextNode($lang.get('user_login_field_captcha') + ':')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
597 |
tr3.appendChild(td3_1); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
598 |
var td3_2 = document.createElement('td'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
599 |
var f_captcha = document.createElement('input'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
600 |
f_captcha.id = 'ajax_login_field_captcha'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
601 |
f_captcha.name = 'ajax_login_field_username'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
602 |
f_captcha.type = 'text'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
603 |
f_captcha.size = '25'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
604 |
f_captcha.onkeyup = function(e) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
605 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
606 |
if ( !e ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
607 |
e = window.event; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
608 |
if ( !e.keyCode ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
609 |
return true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
610 |
if ( e.keyCode == 13 ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
611 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
612 |
ajaxLoginSubmitForm(); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
613 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
614 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
615 |
td3_2.appendChild(f_captcha); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
616 |
tr3.appendChild(td3_2); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
617 |
table.appendChild(tr3); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
618 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
619 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
620 |
// Done building the main part of the form |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
621 |
form.appendChild(table); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
622 |
|
688
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
623 |
// Field: remember login |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
624 |
if ( logindata.user_level <= USER_LEVEL_MEMBER ) |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
625 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
626 |
var lbl_remember = document.createElement('label'); |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
627 |
lbl_remember.style.fontSize = 'smaller'; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
628 |
lbl_remember.style.display = 'block'; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
629 |
lbl_remember.style.textAlign = 'center'; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
630 |
|
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
631 |
// figure out what text to put in the "remember me" checkbox |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
632 |
// infinite session length? |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
633 |
if ( data.extended_time == 0 ) |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
634 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
635 |
// yes, infinite |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
636 |
var txt_remember = $lang.get('user_login_ajax_check_remember_infinite'); |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
637 |
} |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
638 |
else |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
639 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
640 |
if ( data.extended_time % 7 == 0 ) |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
641 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
642 |
// number of days is a multiple of 7 |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
643 |
// use weeks as our unit |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
644 |
var sess_time = data.extended_time / 7; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
645 |
var unit = 'week'; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
646 |
} |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
647 |
else |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
648 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
649 |
// use days as our unit |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
650 |
var sess_time = data.extended_time; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
651 |
var unit = 'day'; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
652 |
} |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
653 |
// more than one week or day? |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
654 |
if ( sess_time != 1 ) |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
655 |
unit += 's'; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
656 |
|
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
657 |
// assemble the string |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
658 |
var txt_remember = $lang.get('user_login_ajax_check_remember', { |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
659 |
session_length: sess_time, |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
660 |
length_units: $lang.get('etc_unit_' + unit) |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
661 |
}); |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
662 |
} |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
663 |
var check_remember = document.createElement('input'); |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
664 |
check_remember.type = 'checkbox'; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
665 |
// this onclick attribute changes the cookie whenever the checkbox or label is clicked |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
666 |
check_remember.setAttribute('onclick', 'var ck = ( this.checked ) ? "enable" : "disable"; createCookie("login_remember", ck, 3650);'); |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
667 |
if ( readCookie('login_remember') != 'disable' ) |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
668 |
check_remember.setAttribute('checked', 'checked'); |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
669 |
check_remember.id = 'ajax_login_field_remember'; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
670 |
lbl_remember.appendChild(check_remember); |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
671 |
lbl_remember.innerHTML += ' ' + txt_remember; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
672 |
|
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
673 |
form.appendChild(lbl_remember); |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
674 |
} |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
675 |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
676 |
// Field: enable Diffie Hellman |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
677 |
if ( ajax_login_prevent_dh ) |
460 | 678 |
{ |
679 |
var lbl_dh = document.createElement('span'); |
|
680 |
lbl_dh.style.fontSize = 'smaller'; |
|
681 |
lbl_dh.style.display = 'block'; |
|
682 |
lbl_dh.style.textAlign = 'center'; |
|
683 |
lbl_dh.innerHTML = $lang.get('user_login_ajax_check_dh_ie'); |
|
684 |
form.appendChild(lbl_dh); |
|
685 |
} |
|
718
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
686 |
else if ( !data.allow_diffiehellman ) |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
687 |
{ |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
688 |
// create hidden control - server requested that DiffieHellman be disabled (usually means not supported) |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
689 |
var check_dh = document.createElement('input'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
690 |
check_dh.type = 'hidden'; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
691 |
check_dh.id = 'ajax_login_field_dh'; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
692 |
form.appendChild(check_dh); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
693 |
} |
460 | 694 |
else |
695 |
{ |
|
696 |
var lbl_dh = document.createElement('label'); |
|
697 |
lbl_dh.style.fontSize = 'smaller'; |
|
698 |
lbl_dh.style.display = 'block'; |
|
699 |
lbl_dh.style.textAlign = 'center'; |
|
700 |
var check_dh = document.createElement('input'); |
|
701 |
check_dh.type = 'checkbox'; |
|
702 |
// this onclick attribute changes the cookie whenever the checkbox or label is clicked |
|
703 |
check_dh.setAttribute('onclick', 'var ck = ( this.checked ) ? "enable" : "disable"; createCookie("diffiehellman_login", ck, 3650);'); |
|
704 |
if ( readCookie('diffiehellman_login') != 'disable' ) |
|
705 |
check_dh.setAttribute('checked', 'checked'); |
|
706 |
check_dh.id = 'ajax_login_field_dh'; |
|
707 |
lbl_dh.appendChild(check_dh); |
|
694
43367c66d869
Couple of fixes (hacks) for Opera and the aftermath of that z-index change to darken() and enlighten() fadefilters; added ajaxOpenDirectACLRule() to placeholder list
Dan
parents:
688
diff
changeset
|
708 |
lbl_dh.innerHTML += ' ' + $lang.get('user_login_ajax_check_dh'); |
460 | 709 |
form.appendChild(lbl_dh); |
710 |
} |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
711 |
|
460 | 712 |
if ( IE ) |
713 |
{ |
|
714 |
div.innerHTML += form.outerHTML; |
|
715 |
} |
|
716 |
else |
|
717 |
{ |
|
718 |
div.appendChild(form); |
|
719 |
} |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
720 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
721 |
// Diagnostic / help links |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
722 |
// (only displayed in login, not in re-auth) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
723 |
if ( logindata.user_level == USER_LEVEL_MEMBER ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
724 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
725 |
form.style.marginBottom = '10px'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
726 |
var links = document.createElement('small'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
727 |
links.style.display = 'block'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
728 |
links.style.textAlign = 'center'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
729 |
links.innerHTML = ''; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
730 |
if ( !show_captcha ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
731 |
links.innerHTML += $lang.get('user_login_ajax_link_fullform', { link_full_form: makeUrlNS('Special', 'Login/' + title) }) + '<br />'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
732 |
// Always shown |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
733 |
links.innerHTML += $lang.get('user_login_ajax_link_forgotpass', { forgotpass_link: makeUrlNS('Special', 'PasswordReset') }) + '<br />'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
734 |
if ( !show_captcha ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
735 |
links.innerHTML += $lang.get('user_login_createaccount_blurb', { reg_link: makeUrlNS('Special', 'Register') }); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
736 |
div.appendChild(links); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
737 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
738 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
739 |
// Insert the entire form into the login window |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
740 |
logindata.mb_inner.innerHTML = ''; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
741 |
logindata.mb_inner.appendChild(div); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
742 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
743 |
// Post operations: field focus |
816
44b8446533e1
Fixed login form being focused too early (caused page to scroll up)
Dan
parents:
811
diff
changeset
|
744 |
setTimeout( |
44b8446533e1
Fixed login form being focused too early (caused page to scroll up)
Dan
parents:
811
diff
changeset
|
745 |
function() |
44b8446533e1
Fixed login form being focused too early (caused page to scroll up)
Dan
parents:
811
diff
changeset
|
746 |
{ |
44b8446533e1
Fixed login form being focused too early (caused page to scroll up)
Dan
parents:
811
diff
changeset
|
747 |
if ( logindata.loggedin_username ) |
44b8446533e1
Fixed login form being focused too early (caused page to scroll up)
Dan
parents:
811
diff
changeset
|
748 |
document.getElementById('ajax_login_field_password').focus(); |
44b8446533e1
Fixed login form being focused too early (caused page to scroll up)
Dan
parents:
811
diff
changeset
|
749 |
else |
44b8446533e1
Fixed login form being focused too early (caused page to scroll up)
Dan
parents:
811
diff
changeset
|
750 |
document.getElementById('ajax_login_field_username').focus(); |
44b8446533e1
Fixed login form being focused too early (caused page to scroll up)
Dan
parents:
811
diff
changeset
|
751 |
}, 750); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
752 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
753 |
// Post operations: show captcha window |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
754 |
if ( show_captcha ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
755 |
ajaxShowCaptcha(show_captcha); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
756 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
757 |
// Post operations: stash encryption keys and All That Jazz(TM) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
758 |
logindata.key_aes = data.aes_key; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
759 |
logindata.key_dh = data.dh_public_key; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
760 |
logindata.captcha_hash = show_captcha; |
460 | 761 |
logindata.loggedin_username = data.username |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
762 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
763 |
// Are we locked out? If so simulate an error and disable the controls |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
764 |
if ( data.lockout_info.lockout_policy == 'lockout' && data.locked_out ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
765 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
766 |
f_username.setAttribute('disabled', 'disabled'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
767 |
f_password.setAttribute('disabled', 'disabled'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
768 |
var fake_packet = { |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
769 |
error_code: 'locked_out', |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
770 |
respawn_info: data |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
771 |
}; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
772 |
ajaxLoginShowFriendlyError(fake_packet); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
773 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
774 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
775 |
|
688
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
776 |
window.ajaxLoginSubmitForm = function(real, username, password, captcha, remember) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
777 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
778 |
// Perform AES test to make sure it's all working |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
779 |
if ( !aes_self_test() ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
780 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
781 |
alert('BUG: AES self-test failed'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
782 |
login_cache.mb_object.destroy(); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
783 |
return false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
784 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
785 |
// Hide the error message and captcha |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
786 |
if ( document.getElementById('ajax_login_error_box') ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
787 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
788 |
document.getElementById('ajax_login_error_box').parentNode.removeChild(document.getElementById('ajax_login_error_box')); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
789 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
790 |
if ( document.getElementById('autoCaptcha') ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
791 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
792 |
var to = fly_out_top(document.getElementById('autoCaptcha'), false, true); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
793 |
setTimeout(function() { |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
794 |
var d = document.getElementById('autoCaptcha'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
795 |
d.parentNode.removeChild(d); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
796 |
}, to); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
797 |
} |
688
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
798 |
// "Remember session" switch |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
799 |
if ( typeof(remember) == 'boolean' ) |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
800 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
801 |
var remember_session = remember; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
802 |
} |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
803 |
else |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
804 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
805 |
if ( document.getElementById('ajax_login_field_remember') ) |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
806 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
807 |
var remember_session = ( document.getElementById('ajax_login_field_remember').checked ) ? true : false; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
808 |
} |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
809 |
else |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
810 |
{ |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
811 |
var remember_session = false; |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
812 |
} |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
813 |
} |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
814 |
// Encryption: preprocessor |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
815 |
if ( real ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
816 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
817 |
var do_dh = true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
818 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
819 |
else if ( document.getElementById('ajax_login_field_dh') ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
820 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
821 |
var do_dh = document.getElementById('ajax_login_field_dh').checked; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
822 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
823 |
else |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
824 |
{ |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
825 |
if ( ajax_login_prevent_dh ) |
460 | 826 |
{ |
509
175df10e0b56
Added a copy of Firebug Lite for debugging purposes. License is uncertain but being treated as MPL. (If is is not MPL then it is under something more permissive that permits relicensing anyway)
Dan
parents:
478
diff
changeset
|
827 |
// IE/MobileSafari doesn't have this control, continue silently IF the rest |
460 | 828 |
// of the login form is there |
829 |
if ( !document.getElementById('ajax_login_field_username') ) |
|
830 |
{ |
|
831 |
return false; |
|
832 |
} |
|
833 |
} |
|
834 |
else |
|
835 |
{ |
|
836 |
// The user probably clicked ok when the form wasn't in there. |
|
837 |
return false; |
|
838 |
} |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
839 |
} |
718
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
840 |
|
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
841 |
if ( typeof(username) != 'string' ) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
842 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
843 |
var username = document.getElementById('ajax_login_field_username').value; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
844 |
} |
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
845 |
if ( typeof(password) != 'string' ) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
846 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
847 |
var password = document.getElementById('ajax_login_field_password').value; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
848 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
849 |
if ( !captcha && document.getElementById('ajax_login_field_captcha') ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
850 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
851 |
var captcha = document.getElementById('ajax_login_field_captcha').value; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
852 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
853 |
|
1026
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
854 |
// Only run early submit hook once |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
855 |
if ( !window.logindata.early_submit_run ) |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
856 |
eval(setHook('login_submit_early')); |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
857 |
|
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
858 |
window.logindata.early_submit_run = true; |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
859 |
|
718
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
860 |
try |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
861 |
{ |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
862 |
|
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
863 |
if ( do_dh ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
864 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
865 |
ajaxLoginSetStatus(AJAX_STATUS_GENERATING_KEY); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
866 |
if ( !real ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
867 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
868 |
// Wait while the browser updates the login window |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
869 |
setTimeout(function() |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
870 |
{ |
688
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
871 |
ajaxLoginSubmitForm(true, username, password, captcha, remember_session); |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
872 |
}, 20); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
873 |
return true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
874 |
} |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
875 |
var dh_start = (new Date()).getTime(); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
876 |
// Perform Diffie Hellman stuff |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
877 |
var dh_priv = dh_gen_private(); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
878 |
var dh_pub = dh_gen_public(dh_priv); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
879 |
var secret = dh_gen_shared_secret(dh_priv, logindata.key_dh); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
880 |
// secret_hash is used to verify that the server guesses the correct secret |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
881 |
var secret_hash = hex_sha1(secret); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
882 |
// crypt_key is the actual AES key |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
883 |
var crypt_key = (hex_sha256(secret)).substr(0, (keySizeInBits / 4)); |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
884 |
var dh_time = (new Date()).getTime() - dh_start; |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
885 |
console.debug("DH: complete, time = %dms", dh_time); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
886 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
887 |
else |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
888 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
889 |
var crypt_key = logindata.key_aes; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
890 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
891 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
892 |
ajaxLoginSetStatus(AJAX_STATUS_LOGGING_IN); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
893 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
894 |
// Encrypt the password and username |
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
895 |
var userinfo = { |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
896 |
username: username, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
897 |
password: password |
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
898 |
}; |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
899 |
|
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
900 |
eval(setHook('login_build_userinfo')); |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
901 |
|
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
902 |
userinfo = toJSONString(userinfo); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
903 |
var crypt_key_ba = hexToByteArray(crypt_key); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
904 |
userinfo = stringToByteArray(userinfo); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
905 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
906 |
userinfo = rijndaelEncrypt(userinfo, crypt_key_ba, 'ECB'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
907 |
userinfo = byteArrayToHex(userinfo); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
908 |
// Encrypted username and password (serialized with JSON) are now in the userinfo string |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
909 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
910 |
// Collect other needed information |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
911 |
if ( logindata.captcha_hash ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
912 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
913 |
var captcha_hash = logindata.captcha_hash; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
914 |
var captcha_code = captcha; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
915 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
916 |
else |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
917 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
918 |
var captcha_hash = false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
919 |
var captcha_code = false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
920 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
921 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
922 |
// Ship it across the 'net |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
923 |
if ( do_dh ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
924 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
925 |
var json_packet = { |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
926 |
mode: 'login_dh', |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
927 |
userinfo: userinfo, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
928 |
captcha_code: captcha_code, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
929 |
captcha_hash: captcha_hash, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
930 |
dh_public_key: logindata.key_dh, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
931 |
dh_client_key: dh_pub, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
932 |
dh_secret_hash: secret_hash, |
688
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
933 |
level: logindata.user_level, |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
934 |
remember: remember_session |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
935 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
936 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
937 |
else |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
938 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
939 |
var json_packet = { |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
940 |
mode: 'login_aes', |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
941 |
userinfo: userinfo, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
942 |
captcha_code: captcha_code, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
943 |
captcha_hash: captcha_hash, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
944 |
key_aes: hex_md5(crypt_key), |
688
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
945 |
level: logindata.user_level, |
f2a824ce5f18
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
Dan
parents:
651
diff
changeset
|
946 |
remember: remember_session |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
947 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
948 |
} |
718
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
949 |
} |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
950 |
catch(e) |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
951 |
{ |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
952 |
ajaxLoginSetStatus(AJAX_STATUS_ERROR); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
953 |
console.error('Exception caught in login process; backtrace follows'); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
954 |
console.debug(e); |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
955 |
return false; |
12485b1d41fd
Fixed issue where login box was not obeying server orders to disable DiffieHellman. Increased quality of error handling for JS errors during login process.
Dan
parents:
699
diff
changeset
|
956 |
} |
1026
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
957 |
// reset this... |
f0431eb8161e
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page
Dan
parents:
1002
diff
changeset
|
958 |
window.logindata.early_submit_run = false; |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
959 |
ajaxLoginPerformRequest(json_packet); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
960 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
961 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
962 |
window.ajaxLoginShowFriendlyError = function(response) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
963 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
964 |
if ( !response.respawn_info ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
965 |
return false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
966 |
if ( !response.error_code ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
967 |
return false; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
968 |
var text = ajaxLoginGetErrorText(response); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
969 |
if ( document.getElementById('ajax_login_error_box') ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
970 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
971 |
// console.info('Reusing existing error-box'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
972 |
document.getElementById('ajax_login_error_box').innerHTML = text; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
973 |
return true; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
974 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
975 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
976 |
// console.info('Drawing new error-box'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
977 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
978 |
// calculate position for the top of the box |
699
c7d737202d59
Removed Adobe Spry and replaced with jQuery. Please report any new bugs on the forums or via IRC. In a related note, auto-completion should work now at least for usernames. Still hacking away at page name completion...
Dan
parents:
694
diff
changeset
|
979 |
var mb_bottom = $dynano('messageBoxButtons').Top() + $dynano('messageBoxButtons').Height(); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
980 |
// if the box isn't done flying in yet, just estimate |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
981 |
if ( mb_bottom < ( getHeight() / 2 ) ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
982 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
983 |
mb_bottom = ( getHeight() / 2 ) + 120; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
984 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
985 |
var win_bottom = getHeight() + getScrollOffset(); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
986 |
var top = mb_bottom + ( ( win_bottom - mb_bottom ) / 2 ) - 32; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
987 |
// left position = 0.2 * window_width, seeing as the box is 60% width this works hackishly but nice and quick |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
988 |
var left = getWidth() * 0.2; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
989 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
990 |
// create the div |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
991 |
var errbox = document.createElement('div'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
992 |
errbox.className = 'error-box-mini'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
993 |
errbox.style.position = 'absolute'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
994 |
errbox.style.width = '60%'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
995 |
errbox.style.top = top + 'px'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
996 |
errbox.style.left = left + 'px'; |
694
43367c66d869
Couple of fixes (hacks) for Opera and the aftermath of that z-index change to darken() and enlighten() fadefilters; added ajaxOpenDirectACLRule() to placeholder list
Dan
parents:
688
diff
changeset
|
997 |
errbox.style.zIndex = getHighestZ(); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
998 |
errbox.innerHTML = text; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
999 |
errbox.id = 'ajax_login_error_box'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1000 |
|
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1001 |
var body = document.getElementsByTagName('body')[0]; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1002 |
body.appendChild(errbox); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1003 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1004 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1005 |
window.ajaxLoginGetErrorText = function(response) |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1006 |
{ |
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1007 |
if ( !response.error_code.match(/^[a-z0-9]+_[a-z0-9_]+$/) ) |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1008 |
{ |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1009 |
return response.error_code; |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1010 |
} |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1011 |
switch ( response.error_code ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1012 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1013 |
default: |
899
df88cedf0995
Allowed custom processing functions altogether for AJAX login error handling
Dan
parents:
887
diff
changeset
|
1014 |
eval(setHook('ajax_login_process_error')); |
df88cedf0995
Allowed custom processing functions altogether for AJAX login error handling
Dan
parents:
887
diff
changeset
|
1015 |
if ( !ls ) |
df88cedf0995
Allowed custom processing functions altogether for AJAX login error handling
Dan
parents:
887
diff
changeset
|
1016 |
{ |
df88cedf0995
Allowed custom processing functions altogether for AJAX login error handling
Dan
parents:
887
diff
changeset
|
1017 |
var ls = $lang.get('user_err_' + response.error_code); |
df88cedf0995
Allowed custom processing functions altogether for AJAX login error handling
Dan
parents:
887
diff
changeset
|
1018 |
if ( ls == 'user_err_' + response.error_code ) |
df88cedf0995
Allowed custom processing functions altogether for AJAX login error handling
Dan
parents:
887
diff
changeset
|
1019 |
// Adding response here allows language strings to utilize additional information passed from the error packet |
df88cedf0995
Allowed custom processing functions altogether for AJAX login error handling
Dan
parents:
887
diff
changeset
|
1020 |
ls = $lang.get(response.error_code, response); |
df88cedf0995
Allowed custom processing functions altogether for AJAX login error handling
Dan
parents:
887
diff
changeset
|
1021 |
} |
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1022 |
|
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1023 |
return ls; |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1024 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1025 |
case 'locked_out': |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1026 |
if ( response.respawn_info.lockout_info.lockout_policy == 'lockout' ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1027 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1028 |
return $lang.get('user_err_locked_out', { |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1029 |
lockout_threshold: response.respawn_info.lockout_info.lockout_threshold, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1030 |
lockout_duration: response.respawn_info.lockout_info.lockout_duration, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1031 |
time_rem: response.respawn_info.lockout_info.time_rem, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1032 |
plural: ( response.respawn_info.lockout_info.time_rem == 1 ) ? '' : $lang.get('meta_plural'), |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1033 |
captcha_blurb: '' |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1034 |
}); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1035 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1036 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1037 |
case 'invalid_credentials': |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1038 |
var base = $lang.get('user_err_invalid_credentials'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1039 |
if ( response.respawn_info.locked_out ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1040 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1041 |
base += ' '; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1042 |
var captcha_blurb = ''; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1043 |
switch(response.respawn_info.lockout_info.lockout_policy) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1044 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1045 |
case 'captcha': |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1046 |
captcha_blurb = $lang.get('user_err_locked_out_captcha_blurb'); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1047 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1048 |
case 'lockout': |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1049 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1050 |
default: |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1051 |
base += 'WTF? Shouldn\'t be locked out with lockout policy set to disable.'; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1052 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1053 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1054 |
base += $lang.get('user_err_locked_out', { |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1055 |
captcha_blurb: captcha_blurb, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1056 |
lockout_threshold: response.respawn_info.lockout_info.lockout_threshold, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1057 |
lockout_duration: response.respawn_info.lockout_info.lockout_duration, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1058 |
time_rem: response.respawn_info.lockout_info.time_rem, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1059 |
plural: ( response.respawn_info.lockout_info.time_rem == 1 ) ? '' : $lang.get('meta_plural') |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1060 |
}); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1061 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1062 |
else if ( response.respawn_info.lockout_info.lockout_policy == 'lockout' || response.respawn_info.lockout_info.lockout_policy == 'captcha' ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1063 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1064 |
// if we have a lockout policy of captcha or lockout, then warn the user |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1065 |
switch ( response.respawn_info.lockout_info.lockout_policy ) |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1066 |
{ |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1067 |
case 'captcha': |
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1068 |
base += $lang.get('user_err_invalid_credentials_lockout_captcha', { |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1069 |
fails: response.respawn_info.lockout_info.lockout_fails, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1070 |
lockout_threshold: response.respawn_info.lockout_info.lockout_threshold, |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1071 |
lockout_duration: response.respawn_info.lockout_info.lockout_duration |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1072 |
}); |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1073 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1074 |
case 'lockout': |
843
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1075 |
base += $lang.get('user_err_invalid_credentials_lockout', { |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1076 |
fails: response.respawn_info.lockout_info.lockout_fails, |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1077 |
lockout_threshold: response.respawn_info.lockout_info.lockout_threshold, |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1078 |
lockout_duration: response.respawn_info.lockout_info.lockout_duration |
4415e50e4e84
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.
Dan
parents:
824
diff
changeset
|
1079 |
}); |
436
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1080 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1081 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1082 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1083 |
return base; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1084 |
break; |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1085 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1086 |
} |
242353360e37
Added support for Diffie-Hellman key exchange during login. w00t!
Dan
parents:
diff
changeset
|
1087 |
|
585
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1088 |
window.ajaxShowCaptcha = function(code) |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1089 |
{ |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1090 |
var mydiv = document.createElement('div'); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1091 |
mydiv.style.backgroundColor = '#FFFFFF'; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1092 |
mydiv.style.padding = '10px'; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1093 |
mydiv.style.position = 'absolute'; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1094 |
mydiv.style.top = '0px'; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1095 |
mydiv.id = 'autoCaptcha'; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1096 |
mydiv.style.zIndex = String( getHighestZ() + 1 ); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1097 |
var img = document.createElement('img'); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1098 |
img.onload = function() |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1099 |
{ |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1100 |
if ( this.loaded ) |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1101 |
return true; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1102 |
var mydiv = document.getElementById('autoCaptcha'); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1103 |
var width = getWidth(); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1104 |
var divw = $dynano(mydiv).Width(); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1105 |
var left = ( width / 2 ) - ( divw / 2 ); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1106 |
mydiv.style.left = left + 'px'; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1107 |
fly_in_top(mydiv, false, true); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1108 |
this.loaded = true; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1109 |
}; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1110 |
img.src = makeUrlNS('Special', 'Captcha/' + code); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1111 |
img.onclick = function() { this.src = this.src + '/a'; }; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1112 |
img.style.cursor = 'pointer'; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1113 |
mydiv.appendChild(img); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1114 |
domObjChangeOpac(0, mydiv); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1115 |
var body = document.getElementsByTagName('body')[0]; |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1116 |
body.appendChild(mydiv); |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1117 |
} |
35e91d16ecf5
Fixed javascript ACL manager and captcha not showing on ajax login lockout_captcha event
Dan
parents:
582
diff
changeset
|
1118 |
|
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1119 |
window.ajaxInitLogout = function() |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1120 |
{ |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1121 |
load_component(['messagebox', 'l10n', 'flyin', 'fadefilter', 'jquery', 'jquery-ui']); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1122 |
|
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1123 |
var title = $lang.get('user_logout_confirm_title'); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1124 |
var message = ( auth_level > USER_LEVEL_MEMBER ) ? $lang.get('user_logout_confirm_body_nelev') : $lang.get('user_logout_confirm_body_normal'); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1125 |
var buttons = []; |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1126 |
buttons.push({ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1127 |
text: $lang.get('user_logout_confirm_btn_logout'), |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1128 |
color: 'red', |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1129 |
style: { |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1130 |
fontWeight: 'bold' |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1131 |
}, |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1132 |
onclick: function() |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1133 |
{ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1134 |
miniPromptDestroy(this); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1135 |
window.location = makeUrlNS('Special', 'Logout/' + csrf_token + '/' + window.title); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1136 |
return false; |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1137 |
} |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1138 |
}); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1139 |
if ( auth_level > USER_LEVEL_MEMBER ) |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1140 |
{ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1141 |
buttons.push({ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1142 |
text: $lang.get('user_logout_confirm_btn_deauth'), |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1143 |
color: 'blue', |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1144 |
onclick: function() |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1145 |
{ |
907
44851d7e9bda
Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.
Dan
parents:
899
diff
changeset
|
1146 |
var mp = miniPromptGetParent(this); |
44851d7e9bda
Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.
Dan
parents:
899
diff
changeset
|
1147 |
var whitey = whiteOutMiniPrompt(mp); |
44851d7e9bda
Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.
Dan
parents:
899
diff
changeset
|
1148 |
|
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1149 |
ajaxLoginPerformRequest({ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1150 |
mode: 'logout', |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1151 |
level: auth_level, |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1152 |
csrf_token: csrf_token |
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1153 |
}, function(response) |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1154 |
{ |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1155 |
whiteOutReportSuccess(whitey); |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1156 |
setTimeout(function() |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1157 |
{ |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1158 |
miniPromptDestroy(mp); |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1159 |
}, 1250); |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1160 |
}); |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1161 |
return false; |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1162 |
} |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1163 |
}); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1164 |
} |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1165 |
buttons.push({ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1166 |
text: $lang.get('etc_cancel'), |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1167 |
onclick: function() |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1168 |
{ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1169 |
miniPromptDestroy(this); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1170 |
return false; |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1171 |
} |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1172 |
}); |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1173 |
|
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1174 |
miniPromptMessage({ |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1175 |
title: title, |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1176 |
message: message, |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1177 |
buttons: buttons |
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1178 |
}); |
582
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1179 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1180 |
|
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1181 |
window.mb_logout = function() |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1182 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1183 |
ajaxInitLogout(); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1184 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1185 |
|
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1186 |
window.ajaxStartLogin = function() |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1187 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1188 |
ajaxLogonToMember(); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1189 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1190 |
|
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1191 |
window.ajaxStartAdminLogin = function() |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1192 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1193 |
// IE <6 pseudo-compatibility |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1194 |
if ( KILL_SWITCH ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1195 |
return true; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1196 |
if ( auth_level < USER_LEVEL_ADMIN ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1197 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1198 |
ajaxLoginInit(function(k) { |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1199 |
ENANO_SID = k; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1200 |
auth_level = USER_LEVEL_ADMIN; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1201 |
var loc = makeUrlNS('Special', 'Administration'); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1202 |
if ( (ENANO_SID + ' ').length > 1 ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1203 |
window.location = loc; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1204 |
}, USER_LEVEL_ADMIN); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1205 |
return false; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1206 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1207 |
var loc = makeUrlNS('Special', 'Administration'); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1208 |
window.location = loc; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1209 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1210 |
|
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1211 |
window.ajaxAdminPage = function() |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1212 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1213 |
// IE <6 pseudo-compatibility |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1214 |
if ( KILL_SWITCH ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1215 |
return true; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1216 |
if ( auth_level < USER_LEVEL_ADMIN ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1217 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1218 |
ajaxPromptAdminAuth(function(k) { |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1219 |
ENANO_SID = k; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1220 |
auth_level = USER_LEVEL_ADMIN; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1221 |
var loc = String(window.location + ''); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1222 |
window.location = append_sid(loc); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1223 |
var loc = makeUrlNS('Special', 'Administration', 'module=' + namespace_list['Admin'] + 'PageManager&source=ajax&page_id=' + ajaxEscape(title)); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1224 |
if ( (ENANO_SID + ' ').length > 1 ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1225 |
window.location = loc; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1226 |
}, 9); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1227 |
return false; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1228 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1229 |
var loc = makeUrlNS('Special', 'Administration', 'module=' + namespace_list['Admin'] + 'PageManager&source=ajax&page_id=' + ajaxEscape(title)); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1230 |
window.location = loc; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1231 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1232 |
|
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1233 |
var navto_ns; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1234 |
var navto_pg; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1235 |
var navto_ul; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1236 |
|
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1237 |
window.ajaxLoginNavTo = function(namespace, page_id, min_level) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1238 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1239 |
// IE <6 pseudo-compatibility |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1240 |
if ( KILL_SWITCH ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1241 |
return true; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1242 |
navto_pg = page_id; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1243 |
navto_ns = namespace; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1244 |
navto_ul = min_level; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1245 |
if ( auth_level < min_level ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1246 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1247 |
ajaxPromptAdminAuth(function(k) { |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1248 |
ENANO_SID = k; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1249 |
auth_level = navto_ul; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1250 |
var loc = makeUrlNS(navto_ns, navto_pg); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1251 |
if ( (ENANO_SID + ' ').length > 1 ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1252 |
window.location = loc; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1253 |
}, min_level); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1254 |
return false; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1255 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1256 |
var loc = makeUrlNS(navto_ns, navto_pg); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1257 |
window.location = loc; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1258 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1259 |
|
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1260 |
window.ajaxAdminUser = function(username) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1261 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1262 |
// IE <6 pseudo-compatibility |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1263 |
if ( KILL_SWITCH ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1264 |
return true; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1265 |
if ( auth_level < USER_LEVEL_ADMIN ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1266 |
{ |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1267 |
ajaxPromptAdminAuth(function(k) { |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1268 |
ENANO_SID = k; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1269 |
auth_level = USER_LEVEL_ADMIN; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1270 |
var loc = String(window.location + ''); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1271 |
window.location = append_sid(loc); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1272 |
var loc = makeUrlNS('Special', 'Administration', 'module=' + namespace_list['Admin'] + 'UserManager&src=get&user=' + ajaxEscape(username)); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1273 |
if ( (ENANO_SID + ' ').length > 1 ) |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1274 |
window.location = loc; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1275 |
}, 9); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1276 |
return false; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1277 |
} |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1278 |
var loc = makeUrlNS('Special', 'Administration', 'module=' + namespace_list['Admin'] + 'UserManager&src=get&user=' + ajaxEscape(username)); |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1279 |
window.location = loc; |
a38876c0793c
Majorly reworked Javascript runtime stuff to use on-demand loading.
Dan
parents:
550
diff
changeset
|
1280 |
} |
793
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1281 |
|
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1282 |
window.ajaxDynamicReauth = function(adminpage, level) |
793
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1283 |
{ |
1002
4d1bb8deee88
Whoa! I broke Live Re-Auth, fortunately after the 1.1.6 release.
Dan
parents:
1001
diff
changeset
|
1284 |
if ( auth_level < USER_LEVEL_MEMBER ) |
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1285 |
{ |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1286 |
ajaxStartLogin(); |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1287 |
return false; |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1288 |
} |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1289 |
|
793
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1290 |
var old_sid = ENANO_SID; |
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1291 |
var targetpage = adminpage; |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1292 |
if ( !level ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1293 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1294 |
level = USER_LEVEL_ADMIN; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1295 |
} |
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1296 |
ajaxLogonInit(function(k, response) |
793
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1297 |
{ |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1298 |
ajaxLoginReplaceSIDInline(k, old_sid, level); |
1001
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1299 |
window.user_id = response.user_id; |
79770fb4132a
Sped up AJAX de-auth a little; added a little extra info to login_success JSON responses
Dan
parents:
907
diff
changeset
|
1300 |
window.user_level = response.user_level; |
794
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1301 |
mb_current_obj.destroy(); |
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1302 |
if ( typeof(targetpage) == 'string' ) |
793
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1303 |
{ |
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1304 |
ajaxPage(targetpage); |
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1305 |
} |
794
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1306 |
else if ( typeof(targetpage) == 'function' ) |
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1307 |
{ |
887
cb96d038baff
New logout interface + made DiffieHellman faster by disabling animated GIF
Dan
parents:
883
diff
changeset
|
1308 |
targetpage(k); |
794
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1309 |
} |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1310 |
}, level); |
883
ac2cef868fa9
Live ReAuth: only show "timed out" error if jumping to admin page
Dan
parents:
843
diff
changeset
|
1311 |
if ( typeof(adminpage) == 'string' ) |
ac2cef868fa9
Live ReAuth: only show "timed out" error if jumping to admin page
Dan
parents:
843
diff
changeset
|
1312 |
{ |
ac2cef868fa9
Live ReAuth: only show "timed out" error if jumping to admin page
Dan
parents:
843
diff
changeset
|
1313 |
ajaxLoginShowFriendlyError({ |
ac2cef868fa9
Live ReAuth: only show "timed out" error if jumping to admin page
Dan
parents:
843
diff
changeset
|
1314 |
error_code: 'admin_session_timed_out', |
ac2cef868fa9
Live ReAuth: only show "timed out" error if jumping to admin page
Dan
parents:
843
diff
changeset
|
1315 |
respawn_info: {} |
ac2cef868fa9
Live ReAuth: only show "timed out" error if jumping to admin page
Dan
parents:
843
diff
changeset
|
1316 |
}); |
ac2cef868fa9
Live ReAuth: only show "timed out" error if jumping to admin page
Dan
parents:
843
diff
changeset
|
1317 |
} |
793
c0724bf6039b
Added dynamic reload-less re-auth to admin panel, so that if a session is lost it can be recovered without a reload. Support for hooking into form submits will be added in the future.
Dan
parents:
780
diff
changeset
|
1318 |
} |
794
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1319 |
|
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1320 |
window.ajaxRenewSession = function() |
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1321 |
{ |
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1322 |
ajaxDynamicReauth(false); |
720516162012
Added support for re-auth on submit to rank manager when session goes bad; still more to come
Dan
parents:
793
diff
changeset
|
1323 |
} |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1324 |
|
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1325 |
window.ajaxTrashElevSession = function() |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1326 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1327 |
load_component(['messagebox', 'fadefilter', 'l10n', 'flyin', 'jquery', 'jquery-ui']); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1328 |
miniPromptMessage({ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1329 |
title: $lang.get('user_logout_confirm_title_elev'), |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1330 |
message: $lang.get('user_logout_confirm_body_elev'), |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1331 |
buttons: [ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1332 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1333 |
text: $lang.get('user_logout_confirm_btn_logout'), |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1334 |
color: 'red', |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1335 |
style: { |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1336 |
fontWeight: 'bold' |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1337 |
}, |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1338 |
onclick: function() |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1339 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1340 |
ajaxLoginPerformRequest({ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1341 |
mode: 'logout', |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1342 |
level: auth_level, |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1343 |
csrf_token: csrf_token |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1344 |
}); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1345 |
miniPromptDestroy(this); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1346 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1347 |
}, |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1348 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1349 |
text: $lang.get('etc_cancel'), |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1350 |
onclick: function() |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1351 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1352 |
miniPromptDestroy(this); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1353 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1354 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1355 |
] |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1356 |
}); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1357 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1358 |
|
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1359 |
/** |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1360 |
* Take an SID and patch all internal links on the page. |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1361 |
* @param string New key. If false, removes keys from the page. |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1362 |
* @param string Old key. If false, only appends the new SID (more work as it uses DOM, use when dynamically going up to elevated) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1363 |
* @param int New level, not a huge deal but sets auth_level. Try to specify it as some functions depend on it. |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1364 |
*/ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1365 |
|
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1366 |
window.ajaxLoginReplaceSIDInline = function(key, oldkey, level) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1367 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1368 |
var host = String(window.location.hostname); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1369 |
var exp = new RegExp('^https?://' + host.replace('.', '\.') + contentPath.replace('.', '\.'), 'g'); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1370 |
var rexp = new RegExp('^https?://' + host.replace('.', '\.'), 'g'); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1371 |
|
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1372 |
if ( key ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1373 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1374 |
if ( oldkey ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1375 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1376 |
var body = document.getElementsByTagName('body')[0]; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1377 |
var replace = new RegExp(oldkey, 'g'); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1378 |
body.innerHTML = body.innerHTML.replace(replace, key); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1379 |
ENANO_SID = key; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1380 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1381 |
else |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1382 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1383 |
// append SID to all internal links |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1384 |
ENANO_SID = key; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1385 |
|
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1386 |
var links = document.getElementsByTagName('a'); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1387 |
for ( var i = 0; i < links.length; i++ ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1388 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1389 |
if ( links[i].href.match(exp, links[i]) && links[i].href.indexOf('#') == -1 ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1390 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1391 |
var newurl = (String(append_sid(links[i].href))).replace(rexp, ''); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1392 |
links[i].href = newurl; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1393 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1394 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1395 |
|
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1396 |
var forms = document.getElementsByTagName('form'); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1397 |
for ( var i = 0; i < forms.length; i++ ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1398 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1399 |
if ( forms[i].method.toLowerCase() == 'post' ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1400 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1401 |
if ( forms[i].action.match(exp, links[i]) ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1402 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1403 |
var newurl = (String(append_sid(forms[i].action))).replace(rexp, ''); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1404 |
forms[i].action = newurl; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1405 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1406 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1407 |
else |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1408 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1409 |
if ( !forms[i].auth ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1410 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1411 |
var auth = document.createElement('input'); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1412 |
auth.type = 'hidden'; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1413 |
auth.name = 'auth'; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1414 |
auth.value = key; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1415 |
forms[i].appendChild(auth); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1416 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1417 |
else |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1418 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1419 |
forms[i].auth.value = key; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1420 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1421 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1422 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1423 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1424 |
if ( level ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1425 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1426 |
auth_level = level; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1427 |
} |
824
28d9fbcd4f0d
Login: reauth: window.location.hash is now updated to include the new SID so that page reloads will use it
Dan
parents:
816
diff
changeset
|
1428 |
window.location.hash = '#auth:' + key; |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1429 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1430 |
else |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1431 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1432 |
auth_level = USER_LEVEL_MEMBER; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1433 |
ENANO_SID = false; |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1434 |
if ( oldkey ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1435 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1436 |
var links = document.getElementsByTagName('a'); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1437 |
for ( var i = 0; i < links.length; i++ ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1438 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1439 |
if ( links[i].href.match(exp, links[i]) && links[i].href.indexOf('#') == -1 ) |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1440 |
{ |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1441 |
links[i].href = links[i].href.replace(/\?auth=([a-f0-9]+)(&|#|$)/, '$2').replace(/&auth=([a-f0-9]+)/, '').replace(rexp, ''); |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1442 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1443 |
} |
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1444 |
} |
824
28d9fbcd4f0d
Login: reauth: window.location.hash is now updated to include the new SID so that page reloads will use it
Dan
parents:
816
diff
changeset
|
1445 |
window.location.hash = '#auth:false'; |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1446 |
} |
907
44851d7e9bda
Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.
Dan
parents:
899
diff
changeset
|
1447 |
window.stdAjaxPrefix = append_sid(scriptPath + '/ajax.php?title=' + title); |
811
5c807fe77020
Added support for live re-auth and de-auth; fully AJAX, no page reload required, plus plugin-usable API.
Dan
parents:
794
diff
changeset
|
1448 |
} |