add dark host option and don’t load pdfjs worker via cdn

This commit is contained in:
Henry Oswald 2016-07-21 19:06:53 +01:00
parent 6aca798a45
commit 3029fb6335
3 changed files with 8 additions and 2 deletions

View file

@ -52,6 +52,7 @@ getFingerprint = (path) ->
logger.log "Finished generating file fingerprints"
cdnAvailable = Settings.cdn?.web?.host?
darkCdnAvailable = Settings.cdn?.web?.darkHost?
module.exports = (app, webRouter, apiRouter)->
webRouter.use (req, res, next)->
@ -66,6 +67,8 @@ module.exports = (app, webRouter, apiRouter)->
if cdnAvailable and isLive
staticFilesBase = Settings.cdn?.web?.host
else if darkCdnAvailable and isDark
staticFilesBase = Settings.cdn?.web?.darkHost
else
staticFilesBase = ""
@ -84,7 +87,9 @@ module.exports = (app, webRouter, apiRouter)->
if !opts.qs?.fingerprint? and doFingerPrint
opts.qs.fingerprint = getFingerprint(path)
path = Url.resolve(staticFilesBase, path)
if opts.cdn != false
path = Url.resolve(staticFilesBase, path)
qs = querystring.stringify(opts.qs)
if qs? and qs.length > 0

View file

@ -129,7 +129,7 @@ block content
- var pdfPath = 'libs/pdfjs-1.3.91/pdf.worker.js'
- var fingerprintedPath = fingerprint(jsPath+pdfPath)
- var pdfJsWorkerPath = buildJsPath(pdfPath, {qs:{fingerprint:fingerprintedPath}})
- var pdfJsWorkerPath = buildJsPath(pdfPath, {cdn:false,qs:{fingerprint:fingerprintedPath}})
script(type='text/javascript').

View file

@ -117,6 +117,7 @@ module.exports = settings =
# cdn:
# web:
# host:"http://cdn.sharelatex.dev:3000"
# darkHost:"http://cdn.sharelatex.dev:3000"
# Where your instance of ShareLaTeX can be found publically. Used in emails
# that are sent out, generated links, etc.