mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-14 23:22:36 +01:00
02e8cb264f
This diff adds the detect_base_url config, controlled by the DETECT_BASE_URL env variable. When set to true, the BASE_URL setting is ignored, and the base_url is derived from the request protocol and host header. Test Plan: Started up a local instance in my homelab, running docker node:15 image with a nginx reverse proxy. Configured nginx to use the same backend with multiple hostnames on https. Opened in browser and confirmed og:url meta tag uses correct url.
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
const config = require('./config');
|
||
const layout = require('./layout');
|
||
const assets = require('../common/assets');
|
||
const getTranslator = require('./locale');
|
||
const { getFxaConfig } = require('./fxa');
|
||
|
||
module.exports = async function(req) {
|
||
const locale = req.language || 'en-US';
|
||
let authConfig = null;
|
||
let robots = 'none';
|
||
if (req.route && req.route.path === '/') {
|
||
robots = 'all';
|
||
}
|
||
if (config.fxa_client_id) {
|
||
try {
|
||
authConfig = await getFxaConfig();
|
||
authConfig.client_id = config.fxa_client_id;
|
||
} catch (e) {
|
||
// continue without accounts
|
||
}
|
||
}
|
||
const prefs = {};
|
||
if (config.survey_url) {
|
||
prefs.surveyUrl = config.survey_url;
|
||
}
|
||
const baseUrl = config.deriveBaseUrl(req);
|
||
return {
|
||
archive: {
|
||
numFiles: 0
|
||
},
|
||
locale,
|
||
capabilities: { account: false },
|
||
translate: getTranslator(locale),
|
||
title: 'Send',
|
||
description:
|
||
'Encrypt and send files with a link that automatically expires to ensure your important documents don’t stay online forever.',
|
||
baseUrl,
|
||
ui: {},
|
||
storage: {
|
||
files: []
|
||
},
|
||
fileInfo: {},
|
||
cspNonce: req.cspNonce,
|
||
user: { avatar: assets.get('user.svg'), loggedIn: false },
|
||
robots,
|
||
authConfig,
|
||
prefs,
|
||
layout
|
||
};
|
||
};
|