mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
40 lines
956 B
JavaScript
40 lines
956 B
JavaScript
import nconf from 'nconf';
|
|
import {
|
|
BROWSER_SCRIPT_CACHE_PATH,
|
|
geti18nBrowserScript,
|
|
} from '../../libs/i18n';
|
|
|
|
const IS_PROD = nconf.get('IS_PROD');
|
|
|
|
const api = {};
|
|
|
|
/**
|
|
* @api {get} /api/v3/i18n/browser-script Returns the i18n JS script.
|
|
* @apiDescription Returns the i18n JS script to make
|
|
* all the i18n strings available in the browser under window.i18n.strings.
|
|
* Does not require authentication.
|
|
* @apiName i18nBrowserScriptGet
|
|
* @apiGroup i18n
|
|
*/
|
|
api.geti18nBrowserScript = {
|
|
method: 'GET',
|
|
url: '/i18n/browser-script',
|
|
async handler (req, res) {
|
|
if (IS_PROD) {
|
|
res.set({
|
|
'Cache-Control': 'private',
|
|
});
|
|
res.sendFile(`${BROWSER_SCRIPT_CACHE_PATH}${req.language}.js`);
|
|
} else {
|
|
res.set({
|
|
'Content-Type': 'application/javascript',
|
|
});
|
|
|
|
const jsonResString = geti18nBrowserScript(req.language);
|
|
res.status(200).send(jsonResString);
|
|
}
|
|
},
|
|
};
|
|
|
|
export default api;
|