- fix: app.js: Use \r\n, fix connections= service setting - update: config.json: fix some service flags that were misset - Add ServiceFlags.txt: brief description of wtv-service flags - update: Moved tellyscripts to wtv-1800:/preregister - update: fixed bug where "send_tellyscript was undefined" - update: initial work on bf0app flashrom support (incomplete) - add wtv-1800:/offer-open-isp-suggest for dreamcast clients - fix: wtv-tricks:/info was not updated to use new ClientSessionData structure - update: app.js: add special filtering for Dreamcast clients - update: change default service logos
50 lines
1.4 KiB
Plaintext
50 lines
1.4 KiB
Plaintext
if (socket.ssid != null && !ssid_sessions[socket.ssid].get("wtvsec_login")) {
|
|
var wtvsec_login = new WTVSec();
|
|
wtvsec_login.IssueChallenge();
|
|
wtvsec_login.set_incarnation(request_headers["wtv-incarnation"]);
|
|
ssid_sessions[socket.ssid].set("wtvsec_login", wtvsec_login);
|
|
} else if (socket.ssid != null) {
|
|
var wtvsec_login = ssid_sessions[socket.ssid].get("wtvsec_login");
|
|
}
|
|
|
|
if (wtvsec_login) {
|
|
|
|
|
|
headers = `200 OK
|
|
Connection: Keep-Alive
|
|
wtv-initial-key: ` + wtvsec_login.challenge_key.toString(CryptoJS.enc.Base64) + `
|
|
Content-Type: text/tellyscript
|
|
wtv-service: reset
|
|
` + getServiceString('wtv-head-waiter') + `
|
|
` + getServiceString('wtv-star') + `
|
|
` + getServiceString('wtv-flashrom') + `
|
|
wtv-boot-url: wtv-head-waiter:/login?
|
|
wtv-visit: wtv-head-waiter:/login?
|
|
wtv-client-time-zone: GMT -0000
|
|
wtv-client-time-dst-rule: GMT
|
|
wtv-client-date: `+ strftime("%a, %d %b %Y %H:%M:%S", new Date(new Date().toUTCString())) + ` GMT`;
|
|
|
|
var file_path = __dirname + "/ServiceDeps/premade_tellyscripts/bf0app/bf0app_production_braindead";
|
|
//var file_path = __dirname + "/ServiceDeps/premade_tellyscripts/LC2/LC2_OISP_5555732_56k.tok";
|
|
|
|
if (file_path) {
|
|
request_is_async = true;
|
|
fs.readFile(file_path, null, function (err, file_read_data) {
|
|
if (err) {
|
|
|
|
headers=`500 Some error occurred...`
|
|
}
|
|
sendToClient(socket, headers, file_read_data);
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
} else {
|
|
console.log(" * Something bad happened (we don't know the client ssid???)");
|
|
headers=`500 missing ssid`
|
|
}
|
|
|
|
|