1
+ − 1
// Some additional DHTML functions
+ − 2
+ − 3
function fetch_offset(obj) {
+ − 4
var left_offset = obj.offsetLeft;
+ − 5
var top_offset = obj.offsetTop;
+ − 6
while ((obj = obj.offsetParent) != null) {
+ − 7
left_offset += obj.offsetLeft;
+ − 8
top_offset += obj.offsetTop;
+ − 9
}
+ − 10
return { 'left' : left_offset, 'top' : top_offset };
+ − 11
}
+ − 12
+ − 13
function fetch_dimensions(o) {
+ − 14
var w = o.offsetWidth;
+ − 15
var h = o.offsetHeight;
+ − 16
return { 'w' : w, 'h' : h };
+ − 17
}
+ − 18
+ − 19
function findParentForm(o)
+ − 20
{
74
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 21
if ( o.tagName == 'FORM' )
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 22
return o;
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 23
while(true)
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 24
{
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 25
o = o.parentNode;
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 26
if ( !o )
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 27
return false;
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 28
if ( o.tagName == 'FORM' )
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 29
return o;
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 30
}
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 31
return false;
1
+ − 32
}
+ − 33
+ − 34
function ajaxReverseDNS(o, text)
+ − 35
{
+ − 36
if(text) var ipaddr = text;
+ − 37
else var ipaddr = o.innerHTML;
+ − 38
rDnsObj = o;
+ − 39
rDnsBannerObj = bannerOn('Retrieving reverse DNS info...');
+ − 40
ajaxGet(stdAjaxPrefix+'&_mode=rdns&ip='+ipaddr, function() {
+ − 41
if(ajax.readyState == 4)
+ − 42
{
+ − 43
off = fetch_offset(rDnsObj);
+ − 44
dim = fetch_dimensions(rDnsObj);
+ − 45
right = off['left'] + dim['w'];
+ − 46
top = off['top'] + dim['h'];
+ − 47
var thediv = document.createElement('div');
+ − 48
thediv.className = 'info-box';
+ − 49
thediv.style.margin = '0';
+ − 50
thediv.style.position = 'absolute';
+ − 51
thediv.style.top = top + 'px';
+ − 52
thediv.style.display = 'none';
+ − 53
thediv.style.zIndex = getHighestZ() + 2;
+ − 54
thediv.id = 'mdgDynamic_rDnsInfoDiv_'+Math.floor(Math.random() * 1000000);
+ − 55
thediv.innerHTML = '<b>Reverse DNS:</b><br />'+ajax.responseText+' <a href="#" onclick="elem = document.getElementById(\''+thediv.id+'\'); elem.innerHTML = \'\'; elem.style.display = \'none\';return false;">Close</a>';
+ − 56
var body = document.getElementsByTagName('body');
+ − 57
body = body[0];
+ − 58
bannerOff(rDnsBannerObj);
+ − 59
body.appendChild(thediv);
+ − 60
thediv.style.display = 'block';
+ − 61
left = fetch_dimensions(thediv);
+ − 62
thediv.style.display = 'none';
+ − 63
left = right - left['w'];
+ − 64
thediv.style.left = left + 'px';
+ − 65
thediv.style.display = 'block';
+ − 66
fadeInfoBoxes();
+ − 67
}
+ − 68
});
+ − 69
}
+ − 70
+ − 71
function bannerOn(text)
+ − 72
{
+ − 73
darken(true);
+ − 74
var thediv = document.createElement('div');
+ − 75
thediv.className = 'mdg-comment';
+ − 76
thediv.style.padding = '0';
+ − 77
thediv.style.marginLeft = '0';
+ − 78
thediv.style.position = 'absolute';
+ − 79
thediv.style.display = 'none';
+ − 80
thediv.style.padding = '4px';
+ − 81
thediv.style.fontSize = '14pt';
+ − 82
thediv.id = 'mdgDynamic_bannerDiv_'+Math.floor(Math.random() * 1000000);
+ − 83
thediv.innerHTML = text;
+ − 84
+ − 85
var body = document.getElementsByTagName('body');
+ − 86
body = body[0];
+ − 87
body.appendChild(thediv);
+ − 88
body.style.cursor = 'wait';
+ − 89
+ − 90
thediv.style.display = 'block';
+ − 91
dim = fetch_dimensions(thediv);
+ − 92
thediv.style.display = 'none';
+ − 93
bdim = { 'w' : getWidth(), 'h' : getHeight() };
+ − 94
so = getScrollOffset();
+ − 95
40
+ − 96
var left = (bdim['w'] / 2) - ( dim['w'] / 2 );
+ − 97
+ − 98
var top = (bdim['h'] / 2);
+ − 99
top = top - ( dim['h'] / 2 );
+ − 100
+ − 101
top = top + so;
1
+ − 102
+ − 103
thediv.style.top = top + 'px';
+ − 104
thediv.style.left = left + 'px';
+ − 105
+ − 106
thediv.style.display = 'block';
+ − 107
+ − 108
return thediv.id;
+ − 109
}
+ − 110
+ − 111
function bannerOff(id)
+ − 112
{
+ − 113
e = document.getElementById(id);
+ − 114
if(!e) return;
+ − 115
e.innerHTML = '';
+ − 116
e.style.display = 'none';
+ − 117
var body = document.getElementsByTagName('body');
+ − 118
body = body[0];
+ − 119
body.style.cursor = 'default';
+ − 120
enlighten(true);
+ − 121
}
+ − 122
+ − 123
function disableUnload(message)
+ − 124
{
+ − 125
if(typeof message != 'string') message = 'You may want to save your changes first.';
+ − 126
var body = document.getElementsByTagName('body');
+ − 127
body = body[0];
+ − 128
body.onbeforeunload='return unescape(\''+escape(message)+'\')';
+ − 129
}
+ − 130
+ − 131
function enableUnload()
+ − 132
{
+ − 133
var body = document.getElementsByTagName('body');
+ − 134
body = body[0];
+ − 135
body.onbeforeunload = null;
+ − 136
}
+ − 137
+ − 138
/**
+ − 139
* Gets the highest z-index of all divs in the document
+ − 140
* @return integer
+ − 141
*/
+ − 142
function getHighestZ()
+ − 143
{
+ − 144
z = 0;
+ − 145
var divs = document.getElementsByTagName('div');
+ − 146
for(var i = 0; i < divs.length; i++)
+ − 147
{
+ − 148
if(divs[i].style.zIndex > z) z = divs[i].style.zIndex;
+ − 149
}
+ − 150
return z;
+ − 151
}
+ − 152
+ − 153
function isKeyPressed(event)
+ − 154
{
+ − 155
if (event.shiftKey==1)
+ − 156
{
+ − 157
shift = true;
+ − 158
}
+ − 159
else
+ − 160
{
+ − 161
shift = false;
+ − 162
}
+ − 163
}
+ − 164
+ − 165
function moveDiv(div, newparent)
+ − 166
{
+ − 167
var backup = div;
+ − 168
var oldparent = div.parentNode;
+ − 169
oldparent.removeChild(div);
+ − 170
newparent.appendChild(backup);
+ − 171
}
+ − 172
+ − 173
function readCookie(name) {var nameEQ = name + "=";var ca = document.cookie.split(';');for(var i=0;i < ca.length;i++){var c = ca[i];while (c.charAt(0)==' ') c = c.substring(1,c.length);if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);}return null;}
+ − 174
function createCookie(name,value,days){if (days){var date = new Date();date.setTime(date.getTime()+(days*24*60*60*1000));var expires = "; expires="+date.toGMTString();}else var expires = "";document.cookie = name+"="+value+expires+"; path=/";}
+ − 175
function eraseCookie(name) {createCookie(name,"",-1);}
+ − 176
+ − 177
var busyBannerID;
+ − 178
function goBusy(msg)
+ − 179
{
+ − 180
if(!msg) msg = 'Please wait...';
+ − 181
body = document.getElementsByTagName('body');
+ − 182
body = body[0];
+ − 183
body.style.cursor = 'wait';
+ − 184
busyBannerID = bannerOn(msg);
+ − 185
}
+ − 186
+ − 187
function unBusy()
+ − 188
{
+ − 189
body = document.getElementsByTagName('body');
+ − 190
body = body[0];
+ − 191
body.style.cursor = 'default';
+ − 192
bannerOff(busyBannerID);
+ − 193
}
+ − 194
+ − 195
function setAjaxLoading()
+ − 196
{
+ − 197
if ( document.getElementById('ajaxloadicon') )
+ − 198
{
+ − 199
document.getElementById('ajaxloadicon').src=scriptPath + '/images/loading.gif';
+ − 200
}
+ − 201
}
+ − 202
+ − 203
function unsetAjaxLoading()
+ − 204
{
+ − 205
if ( document.getElementById('ajaxloadicon') )
+ − 206
{
+ − 207
document.getElementById('ajaxloadicon').src=scriptPath + '/images/spacer.gif';
+ − 208
}
+ − 209
}
+ − 210
+ − 211
/*
+ − 212
* Search boxes
+ − 213
*/
+ − 214
+ − 215
function buildSearchBoxes()
+ − 216
{
+ − 217
var divs = document.getElementsByTagName('*');
+ − 218
var boxes = new Array();
+ − 219
for ( var i = 0; i < divs.length; i++ )
+ − 220
{
+ − 221
if ( divs[i].className)
+ − 222
{
+ − 223
if ( divs[i].className.substr(0, 9) == 'searchbox' )
+ − 224
{
+ − 225
boxes.push(divs[i]);
+ − 226
}
+ − 227
}
+ − 228
}
+ − 229
for ( var i = 0; i < boxes.length; i++ )
+ − 230
{
+ − 231
if ( boxes[i].className.match(/^searchbox\[([0-9]+)px\]$/) )
+ − 232
{
+ − 233
var width = boxes[i].className.match(/^searchbox\[([0-9]+)px\]$/);
+ − 234
width = parseInt(width[1]);
+ − 235
}
+ − 236
else
+ − 237
{
+ − 238
var width = 120;
+ − 239
}
+ − 240
createSearchBox(boxes[i], width);
+ − 241
}
+ − 242
}
+ − 243
+ − 244
function createSearchBox(parent, width)
+ − 245
{
+ − 246
if ( typeof(parent) != 'object')
+ − 247
{
+ − 248
alert('BUG: createSearchBox(): parent is not an object');
+ − 249
return false;
+ − 250
}
+ − 251
//parent.style.padding = '0px';
+ − 252
//parent.style.textAlign = 'center';
+ − 253
parent.style.width = width + 'px';
+ − 254
var submit = document.createElement('div');
+ − 255
submit.onclick = function() { searchFormSubmit(this); };
+ − 256
submit.className = 'js-search-submit';
+ − 257
var input = document.createElement('input');
+ − 258
input.className = 'js-search-box';
+ − 259
input.value = 'Search';
+ − 260
input.name = 'q';
+ − 261
input.style.width = ( width - 28 ) + 'px';
+ − 262
input.onfocus = function() { if ( this.value == 'Search' ) this.value = ''; };
+ − 263
input.onblur = function() { if ( this.value == '' ) this.value = 'Search'; };
+ − 264
parent.appendChild(input);
+ − 265
var off = fetch_offset(input);
+ − 266
var top = off['top'] + 'px';
+ − 267
var left = ( parseInt(off['left']) + ( width - 24 ) ) + 'px';
+ − 268
submit.style.top = top;
+ − 269
submit.style.left = left;
+ − 270
parent.appendChild(submit);
+ − 271
}
+ − 272
+ − 273
function searchFormSubmit(obj)
+ − 274
{
+ − 275
var input = obj.previousSibling;
+ − 276
if ( input.value == 'Search' || input.value == '' )
+ − 277
return false;
+ − 278
var p = obj;
+ − 279
while(true)
+ − 280
{
+ − 281
p = p.parentNode;
+ − 282
if ( !p )
+ − 283
break;
+ − 284
if ( typeof(p.tagName) != 'string' )
+ − 285
break;
+ − 286
else if ( p.tagName.toLowerCase() == 'form' )
+ − 287
{
+ − 288
p.submit();
+ − 289
}
+ − 290
else if ( p.tagName.toLowerCase() == 'body' )
+ − 291
{
+ − 292
break;
+ − 293
}
+ − 294
}
+ − 295
}
+ − 296
+ − 297
/*
+ − 298
* AJAX login box (experimental)
+ − 299
*/
+ − 300
+ − 301
var ajax_auth_prompt_cache = false;
+ − 302
var ajax_auth_mb_cache = false;
+ − 303
var ajax_auth_level_cache = false;
+ − 304
+ − 305
function ajaxPromptAdminAuth(call_on_ok, level)
+ − 306
{
+ − 307
if ( typeof(call_on_ok) == 'function' )
+ − 308
{
+ − 309
ajax_auth_prompt_cache = call_on_ok;
+ − 310
}
+ − 311
if ( !level )
60
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 312
level = USER_LEVEL_MEMBER;
1
+ − 313
ajax_auth_level_cache = level;
+ − 314
var loading_win = '<div align="center" style="text-align: center;"> \
+ − 315
<p>Fetching an encryption key...</p> \
+ − 316
<p><small>Not working? Use the <a href="'+makeUrlNS('Special', 'Login/' + title)+'">alternate login form</a>.</p> \
+ − 317
<p><img alt="Please wait..." src="'+scriptPath+'/images/loading-big.gif" /></p> \
+ − 318
</div>';
60
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 319
var title = ( level > USER_LEVEL_MEMBER ) ? 'You are requesting a sensitive operation.' : 'Please enter your username and password to continue.';
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 320
ajax_auth_mb_cache = new messagebox(MB_OKCANCEL|MB_ICONLOCK, title, loading_win);
1
+ − 321
ajax_auth_mb_cache.onbeforeclick['OK'] = ajaxValidateLogin;
+ − 322
ajaxAuthLoginInnerSetup();
+ − 323
}
+ − 324
+ − 325
function ajaxAuthLoginInnerSetup()
+ − 326
{
+ − 327
ajaxGet(makeUrlNS('Special', 'Login', 'act=getkey'), function() {
+ − 328
if ( ajax.readyState == 4 )
+ − 329
{
40
+ − 330
var response = String(ajax.responseText);
1
+ − 331
if ( response.substr(0,1) != '{' )
+ − 332
{
+ − 333
alert('Invalid JSON response from server: ' + response);
+ − 334
return false;
+ − 335
}
+ − 336
response = parseJSON(response);
60
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 337
var level = ajax_auth_level_cache;
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 338
var form_html = '';
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 339
if ( level > USER_LEVEL_MEMBER )
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 340
{
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 341
form_html += 'Please re-enter your login details, to verify your identity.<br /><br />';
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 342
}
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 343
form_html += ' \
1
+ − 344
<table border="0" align="center"> \
+ − 345
<tr> \
+ − 346
<td>Username:</td><td><input tabindex="1" id="ajaxlogin_user" type="text" size="25" /> \
+ − 347
</tr> \
+ − 348
<tr> \
+ − 349
<td>Password:</td><td><input tabindex="2" id="ajaxlogin_pass" type="password" size="25" /> \
+ − 350
</tr> \
+ − 351
<tr> \
+ − 352
<td colspan="2" style="text-align: center;"> \
60
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 353
<br /><small>Trouble logging in? Try the <a href="'+makeUrlNS('Special', 'Login/' + title)+'">full login form</a>.<br />';
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 354
if ( level <= USER_LEVEL_MEMBER )
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 355
{
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 356
form_html += ' \
1
+ − 357
Did you <a href="'+makeUrlNS('Special', 'PasswordReset')+'">forget your password</a>?<br /> \
60
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 358
Maybe you need to <a href="'+makeUrlNS('Special', 'Register')+'">create an account</a>.</small>';
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 359
}
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 360
form_html += ' \
1
+ − 361
</td> \
+ − 362
</tr> \
+ − 363
</table> \
+ − 364
<input type="hidden" id="ajaxlogin_crypt_key" value="' + response.key + '" /> \
+ − 365
<input type="hidden" id="ajaxlogin_crypt_challenge" value="' + response.challenge + '" /> \
+ − 366
</form>';
+ − 367
ajax_auth_mb_cache.updateContent(form_html);
+ − 368
$('messageBox').object.nextSibling.firstChild.tabindex = '3';
60
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 369
if ( typeof(response.username) == 'string' )
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 370
{
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 371
$('ajaxlogin_user').object.value = response.username;
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 372
$('ajaxlogin_pass').object.focus();
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 373
}
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 374
else
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 375
{
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 376
$('ajaxlogin_user').object.focus();
71b50f8c8f85
Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
diff
changeset
+ − 377
}
9
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 378
$('ajaxlogin_pass').object.onblur = function(e) { if ( !shift ) $('messageBox').object.nextSibling.firstChild.focus(); };
40
+ − 379
$('ajaxlogin_pass').object.onkeypress = function(e) { if ( !e && IE ) return true; if ( e.keyCode == 13 ) $('messageBox').object.nextSibling.firstChild.click(); };
1
+ − 380
}
+ − 381
});
+ − 382
}
+ − 383
+ − 384
function ajaxValidateLogin()
+ − 385
{
+ − 386
var username,password,auth_enabled,crypt_key,crypt_data,challenge_salt,challenge_data;
+ − 387
username = document.getElementById('ajaxlogin_user');
+ − 388
if ( !username )
+ − 389
return false;
+ − 390
username = document.getElementById('ajaxlogin_user').value;
+ − 391
password = document.getElementById('ajaxlogin_pass').value;
+ − 392
auth_enabled = false;
+ − 393
+ − 394
disableJSONExts();
+ − 395
+ − 396
//
+ − 397
// Encryption test
+ − 398
//
+ − 399
+ − 400
var str = '';
+ − 401
for(i=0;i<keySizeInBits/4;i++)
+ − 402
{
+ − 403
str+='0';
+ − 404
}
+ − 405
str = hexToByteArray(str);
+ − 406
var ct = rijndaelEncrypt(str, str, 'ECB');
+ − 407
ct = byteArrayToHex(ct);
+ − 408
var v;
+ − 409
switch(keySizeInBits)
+ − 410
{
+ − 411
case 128:
+ − 412
v = '66e94bd4ef8a2c3b884cfa59ca342b2e';
+ − 413
break;
+ − 414
case 192:
+ − 415
v = 'aae06992acbf52a3e8f4a96ec9300bd7aae06992acbf52a3e8f4a96ec9300bd7';
+ − 416
break;
+ − 417
case 256:
+ − 418
v = 'dc95c078a2408989ad48a21492842087dc95c078a2408989ad48a21492842087';
+ − 419
break;
+ − 420
}
+ − 421
auth_enabled = ( ct == v && md5_vm_test() );
+ − 422
if ( !auth_enabled )
+ − 423
{
+ − 424
alert('Login error: encryption sanity check failed\n');
+ − 425
return true;
+ − 426
}
+ − 427
+ − 428
crypt_key = document.getElementById('ajaxlogin_crypt_key').value;
+ − 429
challenge_salt = document.getElementById('ajaxlogin_crypt_challenge').value;
+ − 430
+ − 431
var crypt_key_md5 = hex_md5(crypt_key);
+ − 432
+ − 433
challenge_data = hex_md5(password + challenge_salt) + challenge_salt;
+ − 434
+ − 435
password = stringToByteArray(password);
+ − 436
crypt_key = hexToByteArray(crypt_key);
+ − 437
+ − 438
crypt_data = rijndaelEncrypt(password, crypt_key, 'ECB');
+ − 439
crypt_data = byteArrayToHex(crypt_data);
+ − 440
+ − 441
var json_data = {
+ − 442
'username' : username,
+ − 443
'crypt_key' : crypt_key_md5,
+ − 444
'challenge' : challenge_data,
+ − 445
'crypt_data' : crypt_data,
+ − 446
'level' : ajax_auth_level_cache
+ − 447
};
+ − 448
+ − 449
json_data = toJSONString(json_data);
+ − 450
json_data = ajaxEscape(json_data);
+ − 451
+ − 452
var loading_win = '<div align="center" style="text-align: center;"> \
+ − 453
<p>Logging in...</p> \
+ − 454
<p><img alt="Please wait..." src="'+scriptPath+'/images/loading-big.gif" /></p> \
+ − 455
</div>';
+ − 456
+ − 457
ajax_auth_mb_cache.updateContent(loading_win);
+ − 458
+ − 459
ajaxPost(makeUrlNS('Special', 'Login', 'act=ajaxlogin'), 'params=' + json_data, function() {
+ − 460
if ( ajax.readyState == 4 )
+ − 461
{
+ − 462
var response = ajax.responseText;
+ − 463
if ( response.substr(0,1) != '{' )
+ − 464
{
+ − 465
alert('Invalid JSON response from server: ' + response);
+ − 466
ajaxAuthLoginInnerSetup();
+ − 467
return false;
+ − 468
}
+ − 469
response = parseJSON(response);
+ − 470
switch(response.result)
+ − 471
{
+ − 472
case 'success':
+ − 473
if ( typeof(ajax_auth_prompt_cache) == 'function' )
+ − 474
{
+ − 475
ajax_auth_prompt_cache(response.key);
+ − 476
}
+ − 477
break;
+ − 478
case 'success_reset':
+ − 479
var conf = confirm('You have logged in using a temporary password. Before you can log in, you must finish resetting your password. Do you want to reset your real password now?');
+ − 480
if ( conf )
+ − 481
{
+ − 482
var url = makeUrlNS('Special', 'PasswordReset/stage2/' + response.user_id + '/' + response.temppass);
+ − 483
window.location = url;
+ − 484
}
+ − 485
else
+ − 486
{
+ − 487
ajaxAuthLoginInnerSetup();
+ − 488
}
+ − 489
break;
+ − 490
case 'error':
+ − 491
alert(response.error);
+ − 492
ajaxAuthLoginInnerSetup();
+ − 493
break;
+ − 494
default:
+ − 495
alert(ajax.responseText);
+ − 496
break;
+ − 497
}
+ − 498
}
+ − 499
});
+ − 500
+ − 501
return true;
+ − 502
+ − 503
}
+ − 504
+ − 505
// This code is in the public domain. Feel free to link back to http://jan.moesen.nu/
+ − 506
function sprintf()
+ − 507
{
+ − 508
if (!arguments || arguments.length < 1 || !RegExp)
+ − 509
{
+ − 510
return;
+ − 511
}
+ − 512
var str = arguments[0];
+ − 513
var re = /([^%]*)%('.|0|\x20)?(-)?(\d+)?(\.\d+)?(%|b|c|d|u|f|o|s|x|X)(.*)/;
+ − 514
var a = b = [], numSubstitutions = 0, numMatches = 0;
+ − 515
while (a = re.exec(str))
+ − 516
{
+ − 517
var leftpart = a[1], pPad = a[2], pJustify = a[3], pMinLength = a[4];
+ − 518
var pPrecision = a[5], pType = a[6], rightPart = a[7];
+ − 519
+ − 520
//alert(a + '\n' + [a[0], leftpart, pPad, pJustify, pMinLength, pPrecision);
+ − 521
+ − 522
numMatches++;
+ − 523
if (pType == '%')
+ − 524
{
+ − 525
subst = '%';
+ − 526
}
+ − 527
else
+ − 528
{
+ − 529
numSubstitutions++;
+ − 530
if (numSubstitutions >= arguments.length)
+ − 531
{
+ − 532
alert('Error! Not enough function arguments (' + (arguments.length - 1) + ', excluding the string)\nfor the number of substitution parameters in string (' + numSubstitutions + ' so far).');
+ − 533
}
+ − 534
var param = arguments[numSubstitutions];
+ − 535
var pad = '';
+ − 536
if (pPad && pPad.substr(0,1) == "'") pad = leftpart.substr(1,1);
+ − 537
else if (pPad) pad = pPad;
+ − 538
var justifyRight = true;
+ − 539
if (pJustify && pJustify === "-") justifyRight = false;
+ − 540
var minLength = -1;
+ − 541
if (pMinLength) minLength = parseInt(pMinLength);
+ − 542
var precision = -1;
+ − 543
if (pPrecision && pType == 'f') precision = parseInt(pPrecision.substring(1));
+ − 544
var subst = param;
+ − 545
if (pType == 'b') subst = parseInt(param).toString(2);
+ − 546
else if (pType == 'c') subst = String.fromCharCode(parseInt(param));
+ − 547
else if (pType == 'd') subst = parseInt(param) ? parseInt(param) : 0;
+ − 548
else if (pType == 'u') subst = Math.abs(param);
+ − 549
else if (pType == 'f') subst = (precision > -1) ? Math.round(parseFloat(param) * Math.pow(10, precision)) / Math.pow(10, precision): parseFloat(param);
+ − 550
else if (pType == 'o') subst = parseInt(param).toString(8);
+ − 551
else if (pType == 's') subst = param;
+ − 552
else if (pType == 'x') subst = ('' + parseInt(param).toString(16)).toLowerCase();
+ − 553
else if (pType == 'X') subst = ('' + parseInt(param).toString(16)).toUpperCase();
+ − 554
}
+ − 555
str = leftpart + subst + rightPart;
+ − 556
}
+ − 557
return str;
+ − 558
}
+ − 559
74
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 560
/**
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 561
* Insert a DOM object _after_ the specified child.
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 562
* @param object Parent node
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 563
* @param object Node to insert
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 564
* @param object Node to insert after
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 565
*/
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 566
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 567
function insertAfter(parent, baby, bigsister)
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 568
{
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 569
try
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 570
{
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 571
if ( parent.childNodes[parent.childNodes.length-1] == bigsister )
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 572
parent.appendChild(baby);
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 573
else
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 574
parent.insertBefore(baby, bigsister.nextSibling);
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 575
}
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 576
catch(e)
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 577
{
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 578
alert(e.toString());
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 579
if ( window.console )
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 580
{
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 581
// Firebug support
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 582
window.console.warn(e);
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 583
}
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 584
}
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 585
}
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 586