BREAKING CHANGES: (for SeCuRiTy):

By default:
- `ssid_sessions[socket.ssid]` is now `session_data`
- `require` is no longer allowed in user scripts

To access global `socket_sessions` and `ssid_sessions`, as well as `require` additional modules, you must set `privileged: true` for the specific service. See `config.json`.
This commit is contained in:
zefie
2022-10-09 13:26:14 -04:00
parent 2491f62b89
commit 37f1ab67ad
118 changed files with 577 additions and 530 deletions

View File

@@ -2,12 +2,12 @@ var minisrv_service_file = true;
// null is the new demo/flash
if (ssid_sessions[socket.ssid]) {
if (ssid_sessions[socket.ssid].data_store.wtvsec_login) {
if (ssid_sessions[socket.ssid].data_store.wtvsec_login.ticket_store) {
if (ssid_sessions[socket.ssid].data_store.wtvsec_login.ticket_store.user_id != null) {
if (ssid_sessions[socket.ssid].data_store.wtvsec_login.ticket_store.user_id >= 0)
ssid_sessions[socket.ssid].switchUserID(-1);
if (session_data) {
if (session_data.data_store.wtvsec_login) {
if (session_data.data_store.wtvsec_login.ticket_store) {
if (session_data.data_store.wtvsec_login.ticket_store.user_id != null) {
if (session_data.data_store.wtvsec_login.ticket_store.user_id >= 0)
session_data.switchUserID(-1);
}
}
}