settings.coffee 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. Path = require('path')
  2. # These credentials are used for authenticating api requests
  3. # between services that may need to go over public channels
  4. httpAuthUser = "sharelatex"
  5. httpAuthPass = process.env["WEB_API_PASSWORD"]
  6. httpAuthUsers = {}
  7. httpAuthUsers[httpAuthUser] = httpAuthPass
  8. parse = (option)->
  9. if option?
  10. try
  11. opt = JSON.parse(option)
  12. return opt
  13. catch err
  14. throw new Error("problem parsing #{option}, invalid JSON")
  15. parseIntOrFail = (value)->
  16. parsedValue = parseInt(value, 10)
  17. if isNaN(parsedValue)
  18. throw new Error("'#{value}' is an invalid integer")
  19. return parsedValue
  20. DATA_DIR = '/var/lib/sharelatex/data'
  21. TMP_DIR = '/var/lib/sharelatex/tmp'
  22. settings =
  23. clsi:
  24. optimiseInDocker: process.env['OPTIMISE_PDF'] == 'true'
  25. brandPrefix: ""
  26. allowAnonymousReadAndWriteSharing:
  27. process.env['SHARELATEX_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING'] == 'true'
  28. # Databases
  29. # ---------
  30. # ShareLaTeX's main persistent data store is MongoDB (http://www.mongodb.org/)
  31. # Documentation about the URL connection string format can be found at:
  32. #
  33. # http://docs.mongodb.org/manual/reference/connection-string/
  34. #
  35. # The following works out of the box with Mongo's default settings:
  36. mongo:
  37. url : process.env["SHARELATEX_MONGO_URL"] or 'mongodb://dockerhost/sharelatex'
  38. # Redis is used in ShareLaTeX for high volume queries, like real-time
  39. # editing, and session management.
  40. #
  41. # The following config will work with Redis's default settings:
  42. redis:
  43. web: redisConfig =
  44. host: process.env["SHARELATEX_REDIS_HOST"] or "dockerhost"
  45. port: process.env["SHARELATEX_REDIS_PORT"] or "6379"
  46. password: process.env["SHARELATEX_REDIS_PASS"] or ""
  47. key_schema:
  48. # document-updater
  49. blockingKey: ({doc_id}) -> "Blocking:#{doc_id}"
  50. docLines: ({doc_id}) -> "doclines:#{doc_id}"
  51. docOps: ({doc_id}) -> "DocOps:#{doc_id}"
  52. docVersion: ({doc_id}) -> "DocVersion:#{doc_id}"
  53. docHash: ({doc_id}) -> "DocHash:#{doc_id}"
  54. projectKey: ({doc_id}) -> "ProjectId:#{doc_id}"
  55. docsInProject: ({project_id}) -> "DocsIn:#{project_id}"
  56. ranges: ({doc_id}) -> "Ranges:#{doc_id}"
  57. # document-updater:realtime
  58. pendingUpdates: ({doc_id}) -> "PendingUpdates:#{doc_id}"
  59. # document-updater:history
  60. uncompressedHistoryOps: ({doc_id}) -> "UncompressedHistoryOps:#{doc_id}"
  61. docsWithHistoryOps: ({project_id}) -> "DocsWithHistoryOps:#{project_id}"
  62. # document-updater:lock
  63. blockingKey: ({doc_id}) -> "Blocking:#{doc_id}"
  64. # track-changes:lock
  65. historyLock: ({doc_id}) -> "HistoryLock:#{doc_id}"
  66. historyIndexLock: ({project_id}) -> "HistoryIndexLock:#{project_id}"
  67. # track-changes:history
  68. uncompressedHistoryOps: ({doc_id}) -> "UncompressedHistoryOps:#{doc_id}"
  69. docsWithHistoryOps: ({project_id}) -> "DocsWithHistoryOps:#{project_id}"
  70. # realtime
  71. clientsInProject: ({project_id}) -> "clients_in_project:#{project_id}"
  72. connectedUser: ({project_id, client_id})-> "connected_user:#{project_id}:#{client_id}"
  73. fairy: redisConfig
  74. # track-changes and document-updater
  75. realtime: redisConfig
  76. documentupdater: redisConfig
  77. lock: redisConfig
  78. history: redisConfig
  79. websessions: redisConfig
  80. api: redisConfig
  81. pubsub: redisConfig
  82. project_history: redisConfig
  83. # The compile server (the clsi) uses a SQL database to cache files and
  84. # meta-data. sqlite is the default, and the load is low enough that this will
  85. # be fine in production (we use sqlite at sharelatex.com).
  86. #
  87. # If you want to configure a different database, see the Sequelize documentation
  88. # for available options:
  89. #
  90. # https://github.com/sequelize/sequelize/wiki/API-Reference-Sequelize#example-usage
  91. #
  92. mysql:
  93. clsi:
  94. database: "clsi"
  95. username: "clsi"
  96. password: ""
  97. dialect: "sqlite"
  98. storage: Path.join(DATA_DIR, "db.sqlite")
  99. # File storage
  100. # ------------
  101. # ShareLaTeX can store binary files like images either locally or in Amazon
  102. # S3. The default is locally:
  103. filestore:
  104. backend: "fs"
  105. stores:
  106. user_files: Path.join(DATA_DIR, "user_files")
  107. template_files: Path.join(DATA_DIR, "template_files")
  108. # To use Amazon S3 as a storage backend, comment out the above config, and
  109. # uncomment the following, filling in your key, secret, and bucket name:
  110. #
  111. # filestore:
  112. # backend: "s3"
  113. # stores:
  114. # user_files: "BUCKET_NAME"
  115. # s3:
  116. # key: "AWS_KEY"
  117. # secret: "AWS_SECRET"
  118. #
  119. trackchanges:
  120. continueOnError: true
  121. # Local disk caching
  122. # ------------------
  123. path:
  124. # If we ever need to write something to disk (e.g. incoming requests
  125. # that need processing but may be too big for memory), then write
  126. # them to disk here:
  127. dumpFolder: Path.join(TMP_DIR, "dumpFolder")
  128. # Where to write uploads before they are processed
  129. uploadFolder: Path.join(TMP_DIR, "uploads")
  130. # Where to write the project to disk before running LaTeX on it
  131. compilesDir: Path.join(DATA_DIR, "compiles")
  132. # Where to cache downloaded URLs for the CLSI
  133. clsiCacheDir: Path.join(DATA_DIR, "cache")
  134. # Server Config
  135. # -------------
  136. # Where your instance of ShareLaTeX can be found publicly. This is used
  137. # when emails are sent out and in generated links:
  138. siteUrl: siteUrl = process.env["SHARELATEX_SITE_URL"] or 'http://localhost'
  139. # The name this is used to describe your ShareLaTeX Installation
  140. appName: process.env["SHARELATEX_APP_NAME"] or "ShareLaTeX (Community Edition)"
  141. restrictInvitesToExistingAccounts: process.env["SHARELATEX_RESTRICT_INVITES_TO_EXISTING_ACCOUNTS"] == 'true'
  142. nav:
  143. title: process.env["SHARELATEX_NAV_TITLE"] or process.env["SHARELATEX_APP_NAME"] or "ShareLaTeX Community Edition"
  144. # The email address which users will be directed to as the main point of
  145. # contact for this installation of ShareLaTeX.
  146. adminEmail: process.env["SHARELATEX_ADMIN_EMAIL"] or "placeholder@example.com"
  147. # If provided, a sessionSecret is used to sign cookies so that they cannot be
  148. # spoofed. This is recommended.
  149. security:
  150. sessionSecret: process.env["SHARELATEX_SESSION_SECRET"] or process.env["CRYPTO_RANDOM"]
  151. # These credentials are used for authenticating api requests
  152. # between services that may need to go over public channels
  153. httpAuthUsers: httpAuthUsers
  154. # Should javascript assets be served minified or not.
  155. useMinifiedJs: true
  156. # Should static assets be sent with a header to tell the browser to cache
  157. # them. This should be false in development where changes are being made,
  158. # but should be set to true in production.
  159. cacheStaticAssets: true
  160. # If you are running ShareLaTeX over https, set this to true to send the
  161. # cookie with a secure flag (recommended).
  162. secureCookie: process.env["SHARELATEX_SECURE_COOKIE"]?
  163. # If you are running ShareLaTeX behind a proxy (like Apache, Nginx, etc)
  164. # then set this to true to allow it to correctly detect the forwarded IP
  165. # address and http/https protocol information.
  166. behindProxy: process.env["SHARELATEX_BEHIND_PROXY"] or false
  167. i18n:
  168. subdomainLang:
  169. www: {lngCode:process.env["SHARELATEX_SITE_LANGUAGE"] or "en", url: siteUrl}
  170. defaultLng: process.env["SHARELATEX_SITE_LANGUAGE"] or "en"
  171. currentImageName: process.env["TEX_LIVE_DOCKER_IMAGE"]
  172. apis:
  173. web:
  174. url: "http://localhost:3000"
  175. user: httpAuthUser
  176. pass: httpAuthPass
  177. project_history:
  178. enabled: false
  179. references:{}
  180. notifications:undefined
  181. defaultFeatures:
  182. collaborators: -1
  183. dropbox: true
  184. versioning: true
  185. compileTimeout: parseIntOrFail(process.env["COMPILE_TIMEOUT"] or 180)
  186. compileGroup: "standard"
  187. trackChanges: true
  188. templates: true
  189. references: true
  190. ## OPTIONAL CONFIGURABLE SETTINGS
  191. if process.env["SHARELATEX_LEFT_FOOTER"]?
  192. try
  193. settings.nav.left_footer = JSON.parse(process.env["SHARELATEX_LEFT_FOOTER"])
  194. catch e
  195. console.error("could not parse SHARELATEX_LEFT_FOOTER, not valid JSON")
  196. if process.env["SHARELATEX_RIGHT_FOOTER"]?
  197. settings.nav.right_footer = process.env["SHARELATEX_RIGHT_FOOTER"]
  198. try
  199. settings.nav.right_footer = JSON.parse(process.env["SHARELATEX_RIGHT_FOOTER"])
  200. catch e
  201. console.error("could not parse SHARELATEX_RIGHT_FOOTER, not valid JSON")
  202. if process.env["SHARELATEX_HEADER_IMAGE_URL"]?
  203. settings.nav.custom_logo = process.env["SHARELATEX_HEADER_IMAGE_URL"]
  204. if process.env["SHARELATEX_HEADER_NAV_LINKS"]?
  205. console.error """
  206. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  207. #
  208. # WARNING: SHARELATEX_HEADER_NAV_LINKS is no longer supported
  209. # See https://github.com/sharelatex/sharelatex/wiki/Configuring-Headers,-Footers-&-Logo
  210. #
  211. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  212. """
  213. if process.env["SHARELATEX_HEADER_EXTRAS"]?
  214. try
  215. settings.nav.header_extras = JSON.parse(process.env["SHARELATEX_HEADER_EXTRAS"])
  216. catch e
  217. console.error("could not parse SHARELATEX_HEADER_EXTRAS, not valid JSON")
  218. # Sending Email
  219. # -------------
  220. #
  221. # You must configure a mail server to be able to send invite emails from
  222. # ShareLaTeX. The config settings are passed to nodemailer. See the nodemailer
  223. # documentation for available options:
  224. #
  225. # http://www.nodemailer.com/docs/transports
  226. if process.env["SHARELATEX_EMAIL_FROM_ADDRESS"]?
  227. settings.email =
  228. fromAddress: process.env["SHARELATEX_EMAIL_FROM_ADDRESS"]
  229. replyTo: process.env["SHARELATEX_EMAIL_REPLY_TO"] or ""
  230. driver: process.env["SHARELATEX_EMAIL_DRIVER"]
  231. parameters:
  232. #AWS Creds
  233. AWSAccessKeyID: process.env["SHARELATEX_EMAIL_AWS_SES_ACCESS_KEY_ID"]
  234. AWSSecretKey: process.env["SHARELATEX_EMAIL_AWS_SES_SECRET_KEY"]
  235. #SMTP Creds
  236. host: process.env["SHARELATEX_EMAIL_SMTP_HOST"]
  237. port: process.env["SHARELATEX_EMAIL_SMTP_PORT"],
  238. secure: parse(process.env["SHARELATEX_EMAIL_SMTP_SECURE"])
  239. ignoreTLS: parse(process.env["SHARELATEX_EMAIL_SMTP_IGNORE_TLS"])
  240. textEncoding: process.env["SHARELATEX_EMAIL_TEXT_ENCODING"]
  241. template:
  242. customFooter: process.env["SHARELATEX_CUSTOM_EMAIL_FOOTER"]
  243. if process.env["SHARELATEX_EMAIL_SMTP_USER"]? or process.env["SHARELATEX_EMAIL_SMTP_PASS"]?
  244. settings.email.parameters.auth =
  245. user: process.env["SHARELATEX_EMAIL_SMTP_USER"]
  246. pass: process.env["SHARELATEX_EMAIL_SMTP_PASS"]
  247. if process.env["SHARELATEX_EMAIL_SMTP_TLS_REJECT_UNAUTH"]?
  248. settings.email.parameters.tls =
  249. rejectUnauthorized: parse(process.env["SHARELATEX_EMAIL_SMTP_TLS_REJECT_UNAUTH"])
  250. # i18n
  251. if process.env["SHARELATEX_LANG_DOMAIN_MAPPING"]?
  252. settings.i18n.subdomainLang = parse(process.env["SHARELATEX_LANG_DOMAIN_MAPPING"])
  253. # Password Settings
  254. # -----------
  255. # These restrict the passwords users can use when registering
  256. # opts are from http://antelle.github.io/passfield
  257. if process.env["SHARELATEX_PASSWORD_VALIDATION_PATTERN"] or process.env["SHARELATEX_PASSWORD_VALIDATION_MIN_LENGTH"] or process.env["SHARELATEX_PASSWORD_VALIDATION_MAX_LENGTH"]
  258. settings.passwordStrengthOptions =
  259. pattern: process.env["SHARELATEX_PASSWORD_VALIDATION_PATTERN"] or "aA$3"
  260. length: {min:process.env["SHARELATEX_PASSWORD_VALIDATION_MIN_LENGTH"] or 8, max: process.env["SHARELATEX_PASSWORD_VALIDATION_MAX_LENGTH"] or 150}
  261. #######################
  262. # ShareLaTeX Server Pro
  263. #######################
  264. if parse(process.env["SHARELATEX_IS_SERVER_PRO"]) == true
  265. settings.bypassPercentageRollouts = true
  266. settings.apis.references =
  267. url: "http://localhost:3040"
  268. # LDAP - SERVER PRO ONLY
  269. # ----------
  270. if process.env["SHARELATEX_LDAP_HOST"]
  271. console.error """
  272. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  273. #
  274. # WARNING: The LDAP configuration format has changed in version 0.5.1
  275. # See https://github.com/sharelatex/sharelatex/wiki/Server-Pro:-LDAP-Config
  276. #
  277. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  278. """
  279. if process.env["SHARELATEX_LDAP_URL"]
  280. settings.externalAuth = true
  281. settings.ldap =
  282. emailAtt: process.env["SHARELATEX_LDAP_EMAIL_ATT"]
  283. nameAtt: process.env["SHARELATEX_LDAP_NAME_ATT"]
  284. lastNameAtt: process.env["SHARELATEX_LDAP_LAST_NAME_ATT"]
  285. updateUserDetailsOnLogin: process.env["SHARELATEX_LDAP_UPDATE_USER_DETAILS_ON_LOGIN"] == 'true'
  286. placeholder: process.env["SHARELATEX_LDAP_PLACEHOLDER"]
  287. server:
  288. url: process.env["SHARELATEX_LDAP_URL"]
  289. bindDn: process.env["SHARELATEX_LDAP_BIND_DN"]
  290. bindCredentials: process.env["SHARELATEX_LDAP_BIND_CREDENTIALS"]
  291. bindProperty: process.env["SHARELATEX_LDAP_BIND_PROPERTY"]
  292. searchBase: process.env["SHARELATEX_LDAP_SEARCH_BASE"]
  293. searchScope: process.env["SHARELATEX_LDAP_SEARCH_SCOPE"]
  294. searchFilter: process.env["SHARELATEX_LDAP_SEARCH_FILTER"]
  295. searchAttributes: (
  296. if _ldap_search_attribs = process.env["SHARELATEX_LDAP_SEARCH_ATTRIBUTES"]
  297. try
  298. JSON.parse(_ldap_search_attribs)
  299. catch e
  300. console.error "could not parse SHARELATEX_LDAP_SEARCH_ATTRIBUTES"
  301. else
  302. undefined
  303. )
  304. groupDnProperty: process.env["SHARELATEX_LDAP_GROUP_DN_PROPERTY"]
  305. groupSearchBase: process.env["SHARELATEX_LDAP_GROUP_SEARCH_BASE"]
  306. groupSearchScope: process.env["SHARELATEX_LDAP_GROUP_SEARCH_SCOPE"]
  307. groupSearchFilter: process.env["SHARELATEX_LDAP_GROUP_SEARCH_FILTER"]
  308. groupSearchAttributes: (
  309. if _ldap_group_search_attribs = process.env["SHARELATEX_LDAP_GROUP_SEARCH_ATTRIBUTES"]
  310. try
  311. JSON.parse(_ldap_group_search_attribs)
  312. catch e
  313. console.error "could not parse SHARELATEX_LDAP_GROUP_SEARCH_ATTRIBUTES"
  314. else
  315. undefined
  316. )
  317. cache: process.env["SHARELATEX_LDAP_CACHE"] == 'true'
  318. timeout: (
  319. if _ldap_timeout = process.env["SHARELATEX_LDAP_TIMEOUT"]
  320. try
  321. parseIntOrFail(_ldap_timeout)
  322. catch e
  323. console.error "Cannot parse SHARELATEX_LDAP_TIMEOUT"
  324. else
  325. undefined
  326. )
  327. connectTimeout: (
  328. if _ldap_connect_timeout = process.env["SHARELATEX_LDAP_CONNECT_TIMEOUT"]
  329. try
  330. parseIntOrFail(_ldap_connect_timeout)
  331. catch e
  332. console.error "Cannot parse SHARELATEX_LDAP_CONNECT_TIMEOUT"
  333. else
  334. undefined
  335. )
  336. if process.env["SHARELATEX_LDAP_TLS_OPTS_CA_PATH"]
  337. try
  338. ca = JSON.parse(process.env["SHARELATEX_LDAP_TLS_OPTS_CA_PATH"])
  339. catch e
  340. console.error "could not parse SHARELATEX_LDAP_TLS_OPTS_CA_PATH, invalid JSON"
  341. if typeof(ca) == 'string'
  342. ca_paths = [ca]
  343. else if typeof(ca) == 'object' && ca?.length?
  344. ca_paths = ca
  345. else
  346. console.error "problem parsing SHARELATEX_LDAP_TLS_OPTS_CA_PATH"
  347. settings.ldap.server.tlsOptions =
  348. rejectUnauthorized: process.env["SHARELATEX_LDAP_TLS_OPTS_REJECT_UNAUTH"] == "true"
  349. ca:ca_paths # e.g.'/etc/ldap/ca_certs.pem'
  350. if process.env["SHARELATEX_SAML_ENTRYPOINT"]
  351. # NOTE: see https://github.com/bergie/passport-saml/blob/master/README.md for docs of `server` options
  352. settings.externalAuth = true
  353. settings.saml =
  354. updateUserDetailsOnLogin: process.env["SHARELATEX_SAML_UPDATE_USER_DETAILS_ON_LOGIN"] == 'true'
  355. identityServiceName: process.env["SHARELATEX_SAML_IDENTITY_SERVICE_NAME"]
  356. emailField: process.env["SHARELATEX_SAML_EMAIL_FIELD"] || process.env["SHARELATEX_SAML_EMAIL_FIELD_NAME"]
  357. firstNameField: process.env["SHARELATEX_SAML_FIRST_NAME_FIELD"]
  358. lastNameField: process.env["SHARELATEX_SAML_LAST_NAME_FIELD"]
  359. server:
  360. # strings
  361. entryPoint: process.env["SHARELATEX_SAML_ENTRYPOINT"]
  362. callbackUrl: process.env["SHARELATEX_SAML_CALLBACK_URL"]
  363. issuer: process.env["SHARELATEX_SAML_ISSUER"]
  364. decryptionPvk: process.env["SHARELATEX_SAML_DECRYPTION_PVK"]
  365. signatureAlgorithm: process.env["SHARELATEX_SAML_SIGNATURE_ALGORITHM"]
  366. identifierFormat: process.env["SHARELATEX_SAML_IDENTIFIER_FORMAT"]
  367. attributeConsumingServiceIndex: process.env["SHARELATEX_SAML_ATTRIBUTE_CONSUMING_SERVICE_INDEX"]
  368. authnContext: process.env["SHARELATEX_SAML_AUTHN_CONTEXT"]
  369. authnRequestBinding: process.env["SHARELATEX_SAML_AUTHN_REQUEST_BINDING"]
  370. validateInResponseTo: process.env["SHARELATEX_SAML_VALIDATE_IN_RESPONSE_TO"]
  371. cacheProvider: process.env["SHARELATEX_SAML_CACHE_PROVIDER"]
  372. logoutUrl: process.env["SHARELATEX_SAML_LOGOUT_URL"]
  373. logoutCallbackUrl: process.env["SHARELATEX_SAML_LOGOUT_CALLBACK_URL"]
  374. disableRequestedAuthnContext: process.env["SHARELATEX_SAML_DISABLE_REQUESTED_AUTHN_CONTEXT"] == 'true'
  375. forceAuthn: process.env["SHARELATEX_SAML_FORCE_AUTHN"] == 'true'
  376. skipRequestCompression: process.env["SHARELATEX_SAML_SKIP_REQUEST_COMPRESSION"] == 'true'
  377. acceptedClockSkewMs: (
  378. if _saml_skew = process.env["SHARELATEX_SAML_ACCEPTED_CLOCK_SKEW_MS"]
  379. try
  380. parseIntOrFail(_saml_skew)
  381. catch e
  382. console.error "Cannot parse SHARELATEX_SAML_ACCEPTED_CLOCK_SKEW_MS"
  383. else
  384. undefined
  385. )
  386. requestIdExpirationPeriodMs: (
  387. if _saml_expiration = process.env["SHARELATEX_SAML_REQUEST_ID_EXPIRATION_PERIOD_MS"]
  388. try
  389. parseIntOrFail(_saml_expiration)
  390. catch e
  391. console.error "Cannot parse SHARELATEX_SAML_REQUEST_ID_EXPIRATION_PERIOD_MS"
  392. else
  393. undefined
  394. )
  395. additionalParams: (
  396. if _saml_additionalParams = process.env["SHARELATEX_SAML_ADDITIONAL_PARAMS"]
  397. try
  398. JSON.parse(_saml_additionalParams)
  399. catch e
  400. console.error "Cannot parse SHARELATEX_SAML_ADDITIONAL_PARAMS"
  401. else
  402. undefined
  403. )
  404. additionalAuthorizeParams: (
  405. if _saml_additionalAuthorizeParams = process.env["SHARELATEX_SAML_ADDITIONAL_AUTHORIZE_PARAMS"]
  406. try
  407. JSON.parse(_saml_additionalAuthorizeParams )
  408. catch e
  409. console.error "Cannot parse SHARELATEX_SAML_ADDITIONAL_AUTHORIZE_PARAMS"
  410. else
  411. undefined
  412. )
  413. additionalLogoutParams: (
  414. if _saml_additionalLogoutParams = process.env["SHARELATEX_SAML_ADDITIONAL_LOGOUT_PARAMS"]
  415. try
  416. JSON.parse(_saml_additionalLogoutParams )
  417. catch e
  418. console.error "Cannot parse SHARELATEX_SAML_ADDITIONAL_LOGOUT_PARAMS"
  419. else
  420. undefined
  421. )
  422. # SHARELATEX_SAML_CERT cannot be empty
  423. # https://github.com/bergie/passport-saml/commit/f6b1c885c0717f1083c664345556b535f217c102
  424. if process.env["SHARELATEX_SAML_CERT"]
  425. settings.saml.server.cert = process.env["SHARELATEX_SAML_CERT"]
  426. settings.saml.server.privateCert = process.env["SHARELATEX_SAML_PRIVATE_CERT"]
  427. # Compiler
  428. # --------
  429. if process.env["SANDBOXED_COMPILES"] == "true"
  430. settings.clsi =
  431. dockerRunner: true
  432. docker:
  433. image: process.env["TEX_LIVE_DOCKER_IMAGE"]
  434. env:
  435. HOME: "/tmp"
  436. PATH: process.env["COMPILER_PATH"] or "/usr/local/texlive/2015/bin/x86_64-linux:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  437. user: "www-data"
  438. if !settings.path?
  439. settings.path = {}
  440. settings.path.synctexBaseDir = () -> "/compile"
  441. if process.env['SANDBOXED_COMPILES_SIBLING_CONTAINERS'] == 'true'
  442. console.log("Using sibling containers for sandboxed compiles")
  443. if process.env['SANDBOXED_COMPILES_HOST_DIR']
  444. settings.path.sandboxedCompilesHostDir = process.env['SANDBOXED_COMPILES_HOST_DIR']
  445. else
  446. console.error('Sibling containers, but SANDBOXED_COMPILES_HOST_DIR not set')
  447. # Templates
  448. # ---------
  449. if process.env["SHARELATEX_TEMPLATES_USER_ID"]
  450. settings.templates =
  451. mountPointUrl: "/templates"
  452. user_id: process.env["SHARELATEX_TEMPLATES_USER_ID"]
  453. settings.templateLinks = parse(process.env["SHARELATEX_NEW_PROJECT_TEMPLATE_LINKS"])
  454. # /Learn
  455. # -------
  456. if process.env["SHARELATEX_PROXY_LEARN"]?
  457. settings.proxyLearn = parse(process.env["SHARELATEX_PROXY_LEARN"])
  458. # /References
  459. # -----------
  460. if process.env["SHARELATEX_ELASTICSEARCH_URL"]?
  461. settings.references.elasticsearch =
  462. host: process.env["SHARELATEX_ELASTICSEARCH_URL"]
  463. # TeX Live Images
  464. # -----------
  465. if process.env["ALL_TEX_LIVE_DOCKER_IMAGES"]?
  466. allTexLiveDockerImages = process.env["ALL_TEX_LIVE_DOCKER_IMAGES"].split(',')
  467. if process.env["ALL_TEX_LIVE_DOCKER_IMAGE_NAMES"]?
  468. allTexLiveDockerImageNames = process.env["ALL_TEX_LIVE_DOCKER_IMAGE_NAMES"].split(',')
  469. if allTexLiveDockerImages?
  470. settings.allowedImageNames = []
  471. for fullImageName, index in allTexLiveDockerImages
  472. imageName = Path.basename(fullImageName)
  473. imageDesc = if allTexLiveDockerImageNames? then allTexLiveDockerImageNames[index] else imageName
  474. settings.allowedImageNames.push({ imageName, imageDesc })
  475. # With lots of incoming and outgoing HTTP connections to different services,
  476. # sometimes long running, it is a good idea to increase the default number
  477. # of sockets that Node will hold open.
  478. http = require('http')
  479. http.globalAgent.maxSockets = 300
  480. https = require('https')
  481. https.globalAgent.maxSockets = 300
  482. module.exports = settings