| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- const logger = require('logger-sharelatex')
- const Settings = require('settings-sharelatex')
- const querystring = require('querystring')
- const _ = require('lodash')
- const Url = require('url')
- const NodeHtmlEncoder = require('node-html-encoder').Encoder
- const Path = require('path')
- const moment = require('moment')
- const IS_DEV_ENV = ['development', 'test'].includes(process.env.NODE_ENV)
- const Features = require('./Features')
- const AuthenticationController = require('../Features/Authentication/AuthenticationController')
- const PackageVersions = require('./PackageVersions')
- const SystemMessageManager = require('../Features/SystemMessages/SystemMessageManager')
- const Modules = require('./Modules')
- const htmlEncoder = new NodeHtmlEncoder('numerical')
- let webpackManifest
- if (!IS_DEV_ENV) {
- // Only load webpack manifest file in production. In dev, the web and webpack
- // containers can't coordinate, so there no guarantee that the manifest file
- // exists when the web server boots. We therefore ignore the manifest file in
- // dev reload
- webpackManifest = require(`../../../public/manifest.json`)
- }
- module.exports = function(webRouter, privateApiRouter, publicApiRouter) {
- webRouter.use(function(req, res, next) {
- res.locals.session = req.session
- next()
- })
- function addSetContentDisposition(req, res, next) {
- res.setContentDisposition = function(type, opts) {
- const directives = _.map(
- opts,
- (v, k) => `${k}="${encodeURIComponent(v)}"`
- )
- const contentDispositionValue = `${type}; ${directives.join('; ')}`
- res.setHeader('Content-Disposition', contentDispositionValue)
- }
- next()
- }
- webRouter.use(addSetContentDisposition)
- privateApiRouter.use(addSetContentDisposition)
- publicApiRouter.use(addSetContentDisposition)
- webRouter.use(function(req, res, next) {
- req.externalAuthenticationSystemUsed =
- Features.externalAuthenticationSystemUsed
- res.locals.externalAuthenticationSystemUsed =
- Features.externalAuthenticationSystemUsed
- req.hasFeature = res.locals.hasFeature = Features.hasFeature
- next()
- })
- webRouter.use(function(req, res, next) {
- let staticFilesBase
- const cdnAvailable =
- Settings.cdn && Settings.cdn.web && !!Settings.cdn.web.host
- const cdnBlocked = req.query.nocdn === 'true' || req.session.cdnBlocked
- const userId = AuthenticationController.getLoggedInUserId(req)
- if (cdnBlocked && req.session.cdnBlocked == null) {
- logger.log(
- { user_id: userId, ip: req != null ? req.ip : undefined },
- 'cdnBlocked for user, not using it and turning it off for future requets'
- )
- req.session.cdnBlocked = true
- }
- const host = req.headers && req.headers.host
- const isSmoke = host.slice(0, 5).toLowerCase() === 'smoke'
- if (cdnAvailable && !isSmoke && !cdnBlocked) {
- staticFilesBase = Settings.cdn.web.host
- } else {
- staticFilesBase = ''
- }
- res.locals.buildJsPath = function(jsFile) {
- let path
- if (IS_DEV_ENV) {
- // In dev: resolve path within JS asset directory
- // We are *not* guaranteed to have a manifest file when the server
- // starts up
- path = Path.join('/js', jsFile)
- } else {
- // In production: resolve path from webpack manifest file
- // We are guaranteed to have a manifest file since webpack compiles in
- // the build
- path = webpackManifest[jsFile]
- }
- return Url.resolve(staticFilesBase, path)
- }
- // Temporary hack while jQuery/Angular dependencies are *not* bundled,
- // instead copied into output directory
- res.locals.buildCopiedJsAssetPath = function(jsFile, opts = {}) {
- let path
- if (IS_DEV_ENV) {
- // In dev: resolve path to root directory
- // We are *not* guaranteed to have a manifest file when the server
- // starts up
- path = Path.join('/', jsFile)
- } else {
- // In production: resolve path from webpack manifest file
- // We are guaranteed to have a manifest file since webpack compiles in
- // the build
- path = webpackManifest[jsFile]
- }
- if (opts.cdn !== false) {
- path = Url.resolve(staticFilesBase, path)
- }
- if (opts.qs) {
- path = path + '?' + querystring.stringify(opts.qs)
- }
- return path
- }
- res.locals.mathJaxPath = res.locals.buildCopiedJsAssetPath(
- 'js/libs/mathjax/MathJax.js',
- {
- cdn: false,
- qs: { config: 'TeX-AMS_HTML,Safe' }
- }
- )
- res.locals.lib = PackageVersions.lib
- res.locals.moment = moment
- const IEEE_BRAND_ID = 15
- res.locals.isIEEE = brandVariation =>
- (brandVariation != null ? brandVariation.brand_id : undefined) ===
- IEEE_BRAND_ID
- res.locals.getCssThemeModifier = function(userSettings, brandVariation) {
- // Themes only exist in OL v2
- if (Settings.overleaf != null) {
- // The IEEE theme takes precedence over the user personal setting, i.e. a user with
- // a theme setting of "light" will still get the IEE theme in IEEE branded projects.
- if (res.locals.isIEEE(brandVariation)) {
- return 'ieee-'
- } else if (userSettings && userSettings.overallTheme != null) {
- return userSettings.overallTheme
- }
- }
- }
- function _buildCssFileName(themeModifier) {
- return `${Settings.brandPrefix}${themeModifier || ''}style.css`
- }
- res.locals.buildCssPath = function(themeModifier) {
- const cssFileName = _buildCssFileName(themeModifier)
- let path
- if (IS_DEV_ENV) {
- // In dev: resolve path within CSS asset directory
- // We are *not* guaranteed to have a manifest file when the server
- // starts up
- path = Path.join('/stylesheets/', cssFileName)
- } else {
- // In production: resolve path from webpack manifest file
- // We are guaranteed to have a manifest file since webpack compiles in
- // the build
- path = webpackManifest[cssFileName]
- }
- return Url.resolve(staticFilesBase, path)
- }
- res.locals.buildImgPath = function(imgFile) {
- const path = Path.join('/img/', imgFile)
- return Url.resolve(staticFilesBase, path)
- }
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.translate = function(key, vars, htmlEncode) {
- if (vars == null) {
- vars = {}
- }
- if (htmlEncode == null) {
- htmlEncode = false
- }
- vars.appName = Settings.appName
- const str = req.i18n.translate(key, vars)
- if (htmlEncode) {
- return htmlEncoder.htmlEncode(str)
- } else {
- return str
- }
- }
- // Don't include the query string parameters, otherwise Google
- // treats ?nocdn=true as the canonical version
- res.locals.currentUrl = Url.parse(req.originalUrl).pathname
- res.locals.capitalize = function(string) {
- if (string.length === 0) {
- return ''
- }
- return string.charAt(0).toUpperCase() + string.slice(1)
- }
- next()
- })
- webRouter.use(function(req, res, next) {
- const subdomain = _.find(
- Settings.i18n.subdomainLang,
- subdomain => subdomain.lngCode === req.showUserOtherLng && !subdomain.hide
- )
- res.locals.recomendSubdomain = subdomain
- res.locals.currentLngCode = req.lng
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.getUserEmail = function() {
- const user = AuthenticationController.getSessionUser(req)
- const email = (user != null ? user.email : undefined) || ''
- return email
- }
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.StringHelper = require('../Features/Helpers/StringHelper')
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.buildReferalUrl = function(referalMedium) {
- let url = Settings.siteUrl
- const currentUser = AuthenticationController.getSessionUser(req)
- if (
- currentUser != null &&
- (currentUser != null ? currentUser.referal_id : undefined) != null
- ) {
- url += `?r=${currentUser.referal_id}&rm=${referalMedium}&rs=b` // Referal source = bonus
- }
- return url
- }
- res.locals.getReferalId = function() {
- const currentUser = AuthenticationController.getSessionUser(req)
- if (
- currentUser != null &&
- (currentUser != null ? currentUser.referal_id : undefined) != null
- ) {
- return currentUser.referal_id
- }
- }
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.csrfToken = req != null ? req.csrfToken() : undefined
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.gaToken = Settings.analytics && Settings.analytics.ga.token
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.getReqQueryParam = field =>
- req.query != null ? req.query[field] : undefined
- next()
- })
- webRouter.use(function(req, res, next) {
- const currentUser = AuthenticationController.getSessionUser(req)
- if (currentUser != null) {
- res.locals.user = {
- email: currentUser.email,
- first_name: currentUser.first_name,
- last_name: currentUser.last_name
- }
- }
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.getLoggedInUserId = () =>
- AuthenticationController.getLoggedInUserId(req)
- res.locals.getSessionUser = () =>
- AuthenticationController.getSessionUser(req)
- next()
- })
- webRouter.use(function(req, res, next) {
- // Clone the nav settings so they can be modified for each request
- res.locals.nav = {}
- for (let key in Settings.nav) {
- res.locals.nav[key] = _.clone(Settings.nav[key])
- }
- res.locals.templates = Settings.templateLinks
- next()
- })
- webRouter.use((req, res, next) =>
- SystemMessageManager.getMessages(function(error, messages) {
- if (error) {
- return next(error)
- }
- if (messages == null) {
- messages = []
- }
- res.locals.systemMessages = messages
- next()
- })
- )
- webRouter.use(function(req, res, next) {
- if (Settings.reloadModuleViewsOnEachRequest) {
- Modules.loadViewIncludes()
- }
- res.locals.moduleIncludes = Modules.moduleIncludes
- res.locals.moduleIncludesAvailable = Modules.moduleIncludesAvailable
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.uiConfig = {
- defaultResizerSizeOpen: 7,
- defaultResizerSizeClosed: 7,
- eastResizerCursor: 'ew-resize',
- westResizerCursor: 'ew-resize',
- chatResizerSizeOpen: 7,
- chatResizerSizeClosed: 0,
- chatMessageBorderSaturation: '85%',
- chatMessageBorderLightness: '40%',
- chatMessageBgSaturation: '85%',
- chatMessageBgLightness: '40%',
- defaultFontFamily: 'lucida',
- defaultLineHeight: 'normal',
- renderAnnouncements: false
- }
- next()
- })
- webRouter.use(function(req, res, next) {
- // TODO
- if (Settings.overleaf != null) {
- res.locals.overallThemes = [
- {
- name: 'Default',
- val: '',
- path: res.locals.buildCssPath(null, { hashedPath: true })
- },
- {
- name: 'Light',
- val: 'light-',
- path: res.locals.buildCssPath('light-', { hashedPath: true })
- }
- ]
- }
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.settings = Settings
- next()
- })
- webRouter.use(function(req, res, next) {
- res.locals.ExposedSettings = {
- isOverleaf: Settings.overleaf != null,
- appName: Settings.appName,
- hasSamlBeta: req.session.samlBeta,
- hasSamlFeature: Features.hasFeature('saml'),
- samlInitPath: _.get(Settings, ['saml', 'ukamf', 'initPath']),
- siteUrl: Settings.siteUrl,
- recaptchaSiteKeyV3:
- Settings.recaptcha != null ? Settings.recaptcha.siteKeyV3 : undefined,
- recaptchaDisabled:
- Settings.recaptcha != null ? Settings.recaptcha.disabled : undefined,
- validRootDocExtensions: Settings.validRootDocExtensions
- }
- next()
- })
- }
|