Skip to content
Snippets Groups Projects
Commit c1692d43 authored by rswindell's avatar rswindell
Browse files

Added support for "fast logons". This feature must be enabled by the sysop

by setting fast_logon=true in the [login] section of the ctrl/modopts.ini file.
A user can choose a fast logon by prefixing their user name or number with
'!' (configurable via 'fast_logon_char'). This option tells logon.js to
skip the logon menus and logon events.
The logon.js just looks for bbs.fast_logon==true, so if you have your own
method of detecting a fast logon (e.g. a logon matrix menu or a prompt of the
user), then you could just set bbs.fast_logon=true and continue to use the
stock logon.js.

Other ideas (not implemented):
- a minimum security level (or ARS) required to allow fast logons
- a notice to the user that fast logons are available (enabled)
- option to skip logon menus but not logon events, or vice-versa
parent 4c44bf61
No related branches found
No related tags found
No related merge requests found
......@@ -61,6 +61,10 @@ for(var c=0; c < options.login_prompts; c++) {
}
continue;
}
if(options.fast_logon == true && str.charAt(0) === (options.fast_logon_char || '!')) {
str = str.substr(1);
bbs.fast_logon = true;
}
// Continue normal login (prompting for password)
if(bbs.login(str, "\1n\1c\1hPW:\b\b\bPassword: \1w")) {
bbs.logon();
......
......@@ -113,36 +113,39 @@ if(user.security.exemptions&UFLAG_H)
* Replaces the 2.1 Logon stuff
******************************/
// Logon screens
// Print successively numbered logon screens (logon, logon1, logon2, etc.)
var highest_printed_logon_screen=-1;
for(var i=0;;i++) {
var fname="logon";
if(i)
fname+=i;
if(!bbs.menu_exists(fname)) {
if(i>1)
break;
continue;
if(bbs.fast_logon !== true) {
// Logon screens
// Print successively numbered logon screens (logon, logon1, logon2, etc.)
var highest_printed_logon_screen=-1;
for(var i=0;;i++) {
var fname="logon";
if(i)
fname+=i;
if(!bbs.menu_exists(fname)) {
if(i>1)
break;
continue;
}
bbs.menu(fname);
highest_printed_logon_screen = i;
}
bbs.menu(fname);
highest_printed_logon_screen = i;
}
// Print logon screens based on security level
if(user.security.level > highest_printed_logon_screen
&& bbs.menu_exists("logon" + user.security.level))
bbs.menu("logon" + user.security.level);
// Print logon screens based on security level
if(user.security.level > highest_printed_logon_screen
&& bbs.menu_exists("logon" + user.security.level))
bbs.menu("logon" + user.security.level);
// Print one of text/menu/random*.*, picked at random
// e.g. random1.asc, random2.asc, random3.asc, etc.
var random_list = directory(system.text_dir + "menu/random*.*");
if(random_list.length)
bbs.menu(file_getname(random_list[random(random_list.length)]).slice(0,-4));
// Print one of text/menu/random*.*, picked at random
// e.g. random1.asc, random2.asc, random3.asc, etc.
var random_list = directory(system.text_dir + "menu/random*.*");
if(random_list.length)
bbs.menu(file_getname(random_list[random(random_list.length)]).slice(0,-4));
console.clear(LIGHTGRAY);
bbs.user_event(EVENT_LOGON);
console.clear(LIGHTGRAY);
bbs.user_event(EVENT_LOGON);
}
if(user.security.level==99 /* Sysop logging on */
&& !system.matchuser("guest") /* Guest account does not yet exist */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment