foobarbaz
This commit is contained in:
@@ -463,9 +463,10 @@ export default new class {
|
|||||||
|
|
||||||
isOnionRequest(req) {
|
isOnionRequest(req) {
|
||||||
if (!req || !req.headers) return false;
|
if (!req || !req.headers) return false;
|
||||||
const rawHost = req.headers['x-forwarded-host'] || req.headers['host'] || '';
|
const rawHost = req.headers['x-forwarded-host'] || req.headers['host'] || req.headers['x-forwarded-server'] || '';
|
||||||
if (!rawHost) return false;
|
if (!rawHost) return false;
|
||||||
const firstHost = rawHost.split(',')[0].trim();
|
const hostStr = Array.isArray(rawHost) ? rawHost[0] : String(rawHost);
|
||||||
|
const firstHost = hostStr.split(',')[0].trim();
|
||||||
const hostNoPort = firstHost.split(':')[0].trim().toLowerCase();
|
const hostNoPort = firstHost.split(':')[0].trim().toLowerCase();
|
||||||
return hostNoPort.endsWith('.onion');
|
return hostNoPort.endsWith('.onion');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ export default (router, tpl) => {
|
|||||||
return res.writeHead(200, { 'Content-Type': 'application/json' }).end(JSON.stringify({ success: false, msg: errorMsg }));
|
return res.writeHead(200, { 'Content-Type': 'application/json' }).end(JSON.stringify({ success: false, msg: errorMsg }));
|
||||||
}
|
}
|
||||||
return res.reply({
|
return res.reply({
|
||||||
body: tpl.render("register", { theme: req.cookies.theme ?? (cfg.websrv.theme || "f0ck"), error: errorMsg, registration_open: getRegistrationOpen() })
|
body: tpl.render("register", { theme: req.cookies?.theme ?? (cfg.websrv.theme || "f0ck"), error: errorMsg, registration_open: getRegistrationOpen() }, req)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -58,7 +58,7 @@ export default (router, tpl) => {
|
|||||||
return res.writeHead(200, { 'Content-Type': 'application/json' }).end(JSON.stringify({ success: false, msg }));
|
return res.writeHead(200, { 'Content-Type': 'application/json' }).end(JSON.stringify({ success: false, msg }));
|
||||||
}
|
}
|
||||||
return res.reply({
|
return res.reply({
|
||||||
body: tpl.render("register", { theme: req.cookies.theme ?? (cfg.websrv.theme || "f0ck"), error: msg, registration_open: getRegistrationOpen() })
|
body: tpl.render("register", { theme: req.cookies?.theme ?? (cfg.websrv.theme || "f0ck"), error: msg, registration_open: getRegistrationOpen() }, req)
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -67,7 +67,7 @@ export default (router, tpl) => {
|
|||||||
return res.writeHead(200, { 'Content-Type': 'application/json' }).end(JSON.stringify({ success: true, msg }));
|
return res.writeHead(200, { 'Content-Type': 'application/json' }).end(JSON.stringify({ success: true, msg }));
|
||||||
}
|
}
|
||||||
return res.reply({
|
return res.reply({
|
||||||
body: tpl.render("register", { theme: req.cookies.theme ?? (cfg.websrv.theme || "f0ck"), success: msg, registration_open: getRegistrationOpen() })
|
body: tpl.render("register", { theme: req.cookies?.theme ?? (cfg.websrv.theme || "f0ck"), success: msg, registration_open: getRegistrationOpen() }, req)
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1462,26 +1462,39 @@ process.on('uncaughtException', err => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Resolve per-request recaptcha preference (disabled for .onion requests or when passed false)
|
||||||
|
const effectiveReq = req || (data && data.req);
|
||||||
|
const defaultRecaptcha = !!(cfg.recaptcha && cfg.recaptcha.enabled && cfg.recaptcha.site_key);
|
||||||
|
let perRequestRecaptcha = defaultRecaptcha;
|
||||||
|
|
||||||
|
if (effectiveReq && lib.isOnionRequest(effectiveReq)) {
|
||||||
|
perRequestRecaptcha = false;
|
||||||
|
} else if (data && typeof data.recaptcha_enabled === 'boolean') {
|
||||||
|
perRequestRecaptcha = data.recaptcha_enabled;
|
||||||
|
}
|
||||||
|
|
||||||
// Build data: globals first, then caller-supplied data, then per-request i18n last
|
// Build data: globals first, then caller-supplied data, then per-request i18n last
|
||||||
// so t/lang always reflect the user's language, not the site default.
|
// so t/lang always reflect the user's language, not the site default.
|
||||||
// ALSO mutate globals.t and globals.lang: flummpress spreads this.#globals LAST
|
// ALSO mutate globals.t, globals.lang, globals.recaptcha_enabled: flummpress spreads this.#globals LAST
|
||||||
// inside render(), so globals must carry the per-request values too.
|
// inside render(), so globals must carry the per-request values too.
|
||||||
globals.t = perRequestT;
|
globals.t = perRequestT;
|
||||||
globals.lang = perRequestLang;
|
globals.lang = perRequestLang;
|
||||||
|
globals.recaptcha_enabled = perRequestRecaptcha;
|
||||||
|
|
||||||
// Resolve per-request infobox preference
|
// Resolve per-request infobox preference
|
||||||
// Guests always get false — the alternative infobox is a logged-in user preference only
|
// Guests always get false — the alternative infobox is a logged-in user preference only
|
||||||
const useAltInfobox = (req && req.session && typeof req.session.use_alternative_infobox === 'boolean')
|
const activeReq = req || effectiveReq;
|
||||||
? req.session.use_alternative_infobox
|
const useAltInfobox = (activeReq && activeReq.session && typeof activeReq.session.use_alternative_infobox === 'boolean')
|
||||||
: (req && !req.session
|
? activeReq.session.use_alternative_infobox
|
||||||
|
: (activeReq && !activeReq.session
|
||||||
? false
|
? false
|
||||||
: (data && typeof data.user_alternative_infobox === 'boolean'
|
: (data && typeof data.user_alternative_infobox === 'boolean'
|
||||||
? data.user_alternative_infobox
|
? data.user_alternative_infobox
|
||||||
: (cfg.websrv.user_alternative_infobox !== false)));
|
: (cfg.websrv.user_alternative_infobox !== false)));
|
||||||
|
|
||||||
const useAltSteuerung = (req && req.session && typeof req.session.use_alternative_steuerung === 'boolean')
|
const useAltSteuerung = (activeReq && activeReq.session && typeof activeReq.session.use_alternative_steuerung === 'boolean')
|
||||||
? req.session.use_alternative_steuerung
|
? activeReq.session.use_alternative_steuerung
|
||||||
: (req && !req.session
|
: (activeReq && !activeReq.session
|
||||||
? false
|
? false
|
||||||
: (data && typeof data.user_alternative_steuerung === 'boolean'
|
: (data && typeof data.user_alternative_steuerung === 'boolean'
|
||||||
? data.user_alternative_steuerung
|
? data.user_alternative_steuerung
|
||||||
@@ -1490,11 +1503,12 @@ process.on('uncaughtException', err => {
|
|||||||
data = Object.assign({}, globals, data || {}, {
|
data = Object.assign({}, globals, data || {}, {
|
||||||
t: perRequestT,
|
t: perRequestT,
|
||||||
lang: perRequestLang,
|
lang: perRequestLang,
|
||||||
|
recaptcha_enabled: perRequestRecaptcha,
|
||||||
user_alternative_infobox: useAltInfobox,
|
user_alternative_infobox: useAltInfobox,
|
||||||
user_alternative_steuerung: useAltSteuerung,
|
user_alternative_steuerung: useAltSteuerung,
|
||||||
user_banner_enabled: cfg.websrv.user_banner_enabled !== false,
|
user_banner_enabled: cfg.websrv.user_banner_enabled !== false,
|
||||||
comment_display_mode: (req && req.session && typeof req.session.comment_display_mode === 'number')
|
comment_display_mode: (activeReq && activeReq.session && typeof activeReq.session.comment_display_mode === 'number')
|
||||||
? req.session.comment_display_mode
|
? activeReq.session.comment_display_mode
|
||||||
: (data && typeof data.comment_display_mode === 'number'
|
: (data && typeof data.comment_display_mode === 'number'
|
||||||
? data.comment_display_mode
|
? data.comment_display_mode
|
||||||
: (cfg.websrv.default_comment_display_mode || 0))
|
: (cfg.websrv.default_comment_display_mode || 0))
|
||||||
@@ -1506,20 +1520,19 @@ process.on('uncaughtException', err => {
|
|||||||
data.custom_brand_image = brand[Math.floor(Math.random() * brand.length)];
|
data.custom_brand_image = brand[Math.floor(Math.random() * brand.length)];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (req) {
|
if (activeReq) {
|
||||||
if (lib.isOnionRequest(req)) {
|
data.recaptcha_enabled = perRequestRecaptcha;
|
||||||
data.recaptcha_enabled = false;
|
if (activeReq.mode !== undefined) data.mode = activeReq.mode;
|
||||||
}
|
data.theme = activeReq.theme || activeReq.cookies?.theme || cfg.websrv.theme || 'f0ck';
|
||||||
if (req.mode !== undefined) data.mode = req.mode;
|
if (!data.url) data.url = activeReq.url;
|
||||||
data.theme = req.theme || req.cookies?.theme || cfg.websrv.theme || 'f0ck';
|
data.user_strict_bool = (activeReq.session && activeReq.session.strict_mode) ? true : false;
|
||||||
if (!data.url) data.url = req.url;
|
data.user_logged_in_bool = !!activeReq.session;
|
||||||
data.user_strict_bool = (req.session && req.session.strict_mode) ? true : false;
|
data.csrf_token = activeReq.session?.csrf_token || '';
|
||||||
data.user_logged_in_bool = !!req.session;
|
data.max_file_size = lib.formatSize(cfg.main.maxfilesize * (activeReq.session?.admin ? cfg.main.adminmultiplier : 1));
|
||||||
data.csrf_token = req.session?.csrf_token || '';
|
data.max_file_size_bytes = Math.floor(cfg.main.maxfilesize * (activeReq.session?.admin ? cfg.main.adminmultiplier : 1));
|
||||||
data.max_file_size = lib.formatSize(cfg.main.maxfilesize * (req.session?.admin ? cfg.main.adminmultiplier : 1));
|
|
||||||
data.max_file_size_bytes = Math.floor(cfg.main.maxfilesize * (req.session?.admin ? cfg.main.adminmultiplier : 1));
|
|
||||||
data.web_url_upload = data.web_url_upload !== undefined ? data.web_url_upload : !!cfg.websrv.web_url_upload;
|
data.web_url_upload = data.web_url_upload !== undefined ? data.web_url_upload : !!cfg.websrv.web_url_upload;
|
||||||
} else {
|
} else {
|
||||||
|
data.recaptcha_enabled = perRequestRecaptcha;
|
||||||
data.theme = data.theme || cfg.websrv.theme || 'f0ck';
|
data.theme = data.theme || cfg.websrv.theme || 'f0ck';
|
||||||
data.user_strict_bool = false;
|
data.user_strict_bool = false;
|
||||||
data.user_logged_in_bool = false;
|
data.user_logged_in_bool = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user