Skip to content
Snippets Groups Projects
Commit e4dee8f8 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Added special finger request: json-dbs

Returns a list of publicly accessible JSON db's from ctrl/json-service.ini
(assumes the JSON service is not just listening on localhost).
Sysop can opt-out by setting json_db=false in the [fingerservice]
section of modopts.ini

Now mcmlxxix has a reason to expose his BBS to the world's fingers.
parent ee44592a
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,8 @@ if(options.findfile === undefined)
options.findfile = false;
if(options.bbslist === undefined)
options.bbslist = false;
if(options.json_dbs === undefined)
options.json_dbs = true;
load("nodedefs.js");
load("sockdefs.js");
......@@ -382,6 +384,18 @@ if(request.charAt(0)=='?' || request.charAt(0)=='.') { // Handle "special" reque
}
break;
case "json-dbs":
var f = new File(system.ctrl_dir + "json-service.ini");
if(f.open("r")) {
var obj = f.iniGetAllObjects();
for(var i in obj) {
if(!obj[i].read && !obj[i].write)
writeln(obj[i].name);
}
f.close();
}
break;
default:
if(options.bbslist && request.indexOf("bbs:") == 0) {
var list = sbbslist.read_list();
......@@ -406,6 +420,8 @@ if(request.charAt(0)=='?' || request.charAt(0)=='.') { // Handle "special" reque
writeln("\tsockopts");
writeln("\tnodelist");
writeln("\tactive-users.json");
if(options.json_dbs)
writeln("\tjson-dbs");
if(options.findfile)
writeln("\tfindfile");
if(options.bbslist) {
......
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