settings.coffee 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  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. name: process.env["SHARELATEX_EMAIL_SMTP_NAME"]
  241. logger: process.env["SHARELATEX_EMAIL_SMTP_LOGGER"] == 'true'
  242. textEncoding: process.env["SHARELATEX_EMAIL_TEXT_ENCODING"]
  243. template:
  244. customFooter: process.env["SHARELATEX_CUSTOM_EMAIL_FOOTER"]
  245. if process.env["SHARELATEX_EMAIL_AWS_SES_REGION"]?
  246. settings.email.parameters.region = process.env["SHARELATEX_EMAIL_AWS_SES_REGION"]
  247. if process.env["SHARELATEX_EMAIL_SMTP_USER"]? or process.env["SHARELATEX_EMAIL_SMTP_PASS"]?
  248. settings.email.parameters.auth =
  249. user: process.env["SHARELATEX_EMAIL_SMTP_USER"]
  250. pass: process.env["SHARELATEX_EMAIL_SMTP_PASS"]
  251. if process.env["SHARELATEX_EMAIL_SMTP_TLS_REJECT_UNAUTH"]?
  252. settings.email.parameters.tls =
  253. rejectUnauthorized: parse(process.env["SHARELATEX_EMAIL_SMTP_TLS_REJECT_UNAUTH"])
  254. # i18n
  255. if process.env["SHARELATEX_LANG_DOMAIN_MAPPING"]?
  256. settings.i18n.subdomainLang = parse(process.env["SHARELATEX_LANG_DOMAIN_MAPPING"])
  257. # Password Settings
  258. # -----------
  259. # These restrict the passwords users can use when registering
  260. # opts are from http://antelle.github.io/passfield
  261. if process.env["SHARELATEX_PASSWORD_VALIDATION_PATTERN"] or process.env["SHARELATEX_PASSWORD_VALIDATION_MIN_LENGTH"] or process.env["SHARELATEX_PASSWORD_VALIDATION_MAX_LENGTH"]
  262. settings.passwordStrengthOptions =
  263. pattern: process.env["SHARELATEX_PASSWORD_VALIDATION_PATTERN"] or "aA$3"
  264. length: {min:process.env["SHARELATEX_PASSWORD_VALIDATION_MIN_LENGTH"] or 8, max: process.env["SHARELATEX_PASSWORD_VALIDATION_MAX_LENGTH"] or 150}
  265. #######################
  266. # ShareLaTeX Server Pro
  267. #######################
  268. if parse(process.env["SHARELATEX_IS_SERVER_PRO"]) == true
  269. settings.bypassPercentageRollouts = true
  270. settings.apis.references =
  271. url: "http://localhost:3040"
  272. # LDAP - SERVER PRO ONLY
  273. # ----------
  274. if process.env["SHARELATEX_LDAP_HOST"]
  275. console.error """
  276. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  277. #
  278. # WARNING: The LDAP configuration format has changed in version 0.5.1
  279. # See https://github.com/sharelatex/sharelatex/wiki/Server-Pro:-LDAP-Config
  280. #
  281. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  282. """
  283. if process.env["SHARELATEX_LDAP_URL"]
  284. settings.externalAuth = true
  285. settings.ldap =
  286. emailAtt: process.env["SHARELATEX_LDAP_EMAIL_ATT"]
  287. nameAtt: process.env["SHARELATEX_LDAP_NAME_ATT"]
  288. lastNameAtt: process.env["SHARELATEX_LDAP_LAST_NAME_ATT"]
  289. updateUserDetailsOnLogin: process.env["SHARELATEX_LDAP_UPDATE_USER_DETAILS_ON_LOGIN"] == 'true'
  290. placeholder: process.env["SHARELATEX_LDAP_PLACEHOLDER"]
  291. server:
  292. url: process.env["SHARELATEX_LDAP_URL"]
  293. bindDn: process.env["SHARELATEX_LDAP_BIND_DN"]
  294. bindCredentials: process.env["SHARELATEX_LDAP_BIND_CREDENTIALS"]
  295. bindProperty: process.env["SHARELATEX_LDAP_BIND_PROPERTY"]
  296. searchBase: process.env["SHARELATEX_LDAP_SEARCH_BASE"]
  297. searchScope: process.env["SHARELATEX_LDAP_SEARCH_SCOPE"]
  298. searchFilter: process.env["SHARELATEX_LDAP_SEARCH_FILTER"]
  299. searchAttributes: (
  300. if _ldap_search_attribs = process.env["SHARELATEX_LDAP_SEARCH_ATTRIBUTES"]
  301. try
  302. JSON.parse(_ldap_search_attribs)
  303. catch e
  304. console.error "could not parse SHARELATEX_LDAP_SEARCH_ATTRIBUTES"
  305. else
  306. undefined
  307. )
  308. groupDnProperty: process.env["SHARELATEX_LDAP_GROUP_DN_PROPERTY"]
  309. groupSearchBase: process.env["SHARELATEX_LDAP_GROUP_SEARCH_BASE"]
  310. groupSearchScope: process.env["SHARELATEX_LDAP_GROUP_SEARCH_SCOPE"]
  311. groupSearchFilter: process.env["SHARELATEX_LDAP_GROUP_SEARCH_FILTER"]
  312. groupSearchAttributes: (
  313. if _ldap_group_search_attribs = process.env["SHARELATEX_LDAP_GROUP_SEARCH_ATTRIBUTES"]
  314. try
  315. JSON.parse(_ldap_group_search_attribs)
  316. catch e
  317. console.error "could not parse SHARELATEX_LDAP_GROUP_SEARCH_ATTRIBUTES"
  318. else
  319. undefined
  320. )
  321. cache: process.env["SHARELATEX_LDAP_CACHE"] == 'true'
  322. timeout: (
  323. if _ldap_timeout = process.env["SHARELATEX_LDAP_TIMEOUT"]
  324. try
  325. parseIntOrFail(_ldap_timeout)
  326. catch e
  327. console.error "Cannot parse SHARELATEX_LDAP_TIMEOUT"
  328. else
  329. undefined
  330. )
  331. connectTimeout: (
  332. if _ldap_connect_timeout = process.env["SHARELATEX_LDAP_CONNECT_TIMEOUT"]
  333. try
  334. parseIntOrFail(_ldap_connect_timeout)
  335. catch e
  336. console.error "Cannot parse SHARELATEX_LDAP_CONNECT_TIMEOUT"
  337. else
  338. undefined
  339. )
  340. if process.env["SHARELATEX_LDAP_TLS_OPTS_CA_PATH"]
  341. try
  342. ca = JSON.parse(process.env["SHARELATEX_LDAP_TLS_OPTS_CA_PATH"])
  343. catch e
  344. console.error "could not parse SHARELATEX_LDAP_TLS_OPTS_CA_PATH, invalid JSON"
  345. if typeof(ca) == 'string'
  346. ca_paths = [ca]
  347. else if typeof(ca) == 'object' && ca?.length?
  348. ca_paths = ca
  349. else
  350. console.error "problem parsing SHARELATEX_LDAP_TLS_OPTS_CA_PATH"
  351. settings.ldap.server.tlsOptions =
  352. rejectUnauthorized: process.env["SHARELATEX_LDAP_TLS_OPTS_REJECT_UNAUTH"] == "true"
  353. ca:ca_paths # e.g.'/etc/ldap/ca_certs.pem'
  354. if process.env["SHARELATEX_SAML_ENTRYPOINT"]
  355. # NOTE: see https://github.com/node-saml/passport-saml/blob/master/README.md for docs of `server` options
  356. settings.externalAuth = true
  357. settings.saml =
  358. updateUserDetailsOnLogin: process.env["SHARELATEX_SAML_UPDATE_USER_DETAILS_ON_LOGIN"] == 'true'
  359. identityServiceName: process.env["SHARELATEX_SAML_IDENTITY_SERVICE_NAME"]
  360. emailField: process.env["SHARELATEX_SAML_EMAIL_FIELD"] || process.env["SHARELATEX_SAML_EMAIL_FIELD_NAME"]
  361. firstNameField: process.env["SHARELATEX_SAML_FIRST_NAME_FIELD"]
  362. lastNameField: process.env["SHARELATEX_SAML_LAST_NAME_FIELD"]
  363. server:
  364. # strings
  365. entryPoint: process.env["SHARELATEX_SAML_ENTRYPOINT"]
  366. callbackUrl: process.env["SHARELATEX_SAML_CALLBACK_URL"]
  367. issuer: process.env["SHARELATEX_SAML_ISSUER"]
  368. decryptionPvk: process.env["SHARELATEX_SAML_DECRYPTION_PVK"]
  369. decryptionCert: process.env["SHARELATEX_SAML_DECRYPTION_CERT"]
  370. signatureAlgorithm: process.env["SHARELATEX_SAML_SIGNATURE_ALGORITHM"]
  371. identifierFormat: process.env["SHARELATEX_SAML_IDENTIFIER_FORMAT"]
  372. attributeConsumingServiceIndex: process.env["SHARELATEX_SAML_ATTRIBUTE_CONSUMING_SERVICE_INDEX"]
  373. authnContext: process.env["SHARELATEX_SAML_AUTHN_CONTEXT"]
  374. authnRequestBinding: process.env["SHARELATEX_SAML_AUTHN_REQUEST_BINDING"]
  375. validateInResponseTo: process.env["SHARELATEX_SAML_VALIDATE_IN_RESPONSE_TO"]
  376. cacheProvider: process.env["SHARELATEX_SAML_CACHE_PROVIDER"]
  377. logoutUrl: process.env["SHARELATEX_SAML_LOGOUT_URL"]
  378. logoutCallbackUrl: process.env["SHARELATEX_SAML_LOGOUT_CALLBACK_URL"]
  379. disableRequestedAuthnContext: process.env["SHARELATEX_SAML_DISABLE_REQUESTED_AUTHN_CONTEXT"] == 'true'
  380. forceAuthn: process.env["SHARELATEX_SAML_FORCE_AUTHN"] == 'true'
  381. skipRequestCompression: process.env["SHARELATEX_SAML_SKIP_REQUEST_COMPRESSION"] == 'true'
  382. acceptedClockSkewMs: (
  383. if _saml_skew = process.env["SHARELATEX_SAML_ACCEPTED_CLOCK_SKEW_MS"]
  384. try
  385. parseIntOrFail(_saml_skew)
  386. catch e
  387. console.error "Cannot parse SHARELATEX_SAML_ACCEPTED_CLOCK_SKEW_MS"
  388. else
  389. undefined
  390. )
  391. requestIdExpirationPeriodMs: (
  392. if _saml_expiration = process.env["SHARELATEX_SAML_REQUEST_ID_EXPIRATION_PERIOD_MS"]
  393. try
  394. parseIntOrFail(_saml_expiration)
  395. catch e
  396. console.error "Cannot parse SHARELATEX_SAML_REQUEST_ID_EXPIRATION_PERIOD_MS"
  397. else
  398. undefined
  399. )
  400. additionalParams: (
  401. if _saml_additionalParams = process.env["SHARELATEX_SAML_ADDITIONAL_PARAMS"]
  402. try
  403. JSON.parse(_saml_additionalParams)
  404. catch e
  405. console.error "Cannot parse SHARELATEX_SAML_ADDITIONAL_PARAMS"
  406. else
  407. undefined
  408. )
  409. additionalAuthorizeParams: (
  410. if _saml_additionalAuthorizeParams = process.env["SHARELATEX_SAML_ADDITIONAL_AUTHORIZE_PARAMS"]
  411. try
  412. JSON.parse(_saml_additionalAuthorizeParams )
  413. catch e
  414. console.error "Cannot parse SHARELATEX_SAML_ADDITIONAL_AUTHORIZE_PARAMS"
  415. else
  416. undefined
  417. )
  418. additionalLogoutParams: (
  419. if _saml_additionalLogoutParams = process.env["SHARELATEX_SAML_ADDITIONAL_LOGOUT_PARAMS"]
  420. try
  421. JSON.parse(_saml_additionalLogoutParams )
  422. catch e
  423. console.error "Cannot parse SHARELATEX_SAML_ADDITIONAL_LOGOUT_PARAMS"
  424. else
  425. undefined
  426. )
  427. # SHARELATEX_SAML_CERT cannot be empty
  428. # https://github.com/node-saml/passport-saml/commit/f6b1c885c0717f1083c664345556b535f217c102
  429. if process.env["SHARELATEX_SAML_CERT"]
  430. settings.saml.server.cert = process.env["SHARELATEX_SAML_CERT"]
  431. settings.saml.server.privateCert = process.env["SHARELATEX_SAML_PRIVATE_CERT"]
  432. # Compiler
  433. # --------
  434. if process.env["SANDBOXED_COMPILES"] == "true"
  435. settings.clsi =
  436. dockerRunner: true
  437. docker:
  438. image: process.env["TEX_LIVE_DOCKER_IMAGE"]
  439. env:
  440. HOME: "/tmp"
  441. 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"
  442. user: "www-data"
  443. if !settings.path?
  444. settings.path = {}
  445. settings.path.synctexBaseDir = () -> "/compile"
  446. if process.env['SANDBOXED_COMPILES_SIBLING_CONTAINERS'] == 'true'
  447. console.log("Using sibling containers for sandboxed compiles")
  448. if process.env['SANDBOXED_COMPILES_HOST_DIR']
  449. settings.path.sandboxedCompilesHostDir = process.env['SANDBOXED_COMPILES_HOST_DIR']
  450. else
  451. console.error('Sibling containers, but SANDBOXED_COMPILES_HOST_DIR not set')
  452. # Templates
  453. # ---------
  454. if process.env["SHARELATEX_TEMPLATES_USER_ID"]
  455. settings.templates =
  456. mountPointUrl: "/templates"
  457. user_id: process.env["SHARELATEX_TEMPLATES_USER_ID"]
  458. settings.templateLinks = parse(process.env["SHARELATEX_NEW_PROJECT_TEMPLATE_LINKS"])
  459. # /Learn
  460. # -------
  461. if process.env["SHARELATEX_PROXY_LEARN"]?
  462. settings.proxyLearn = parse(process.env["SHARELATEX_PROXY_LEARN"])
  463. # /References
  464. # -----------
  465. if process.env["SHARELATEX_ELASTICSEARCH_URL"]?
  466. settings.references.elasticsearch =
  467. host: process.env["SHARELATEX_ELASTICSEARCH_URL"]
  468. # TeX Live Images
  469. # -----------
  470. if process.env["ALL_TEX_LIVE_DOCKER_IMAGES"]?
  471. allTexLiveDockerImages = process.env["ALL_TEX_LIVE_DOCKER_IMAGES"].split(',')
  472. if process.env["ALL_TEX_LIVE_DOCKER_IMAGE_NAMES"]?
  473. allTexLiveDockerImageNames = process.env["ALL_TEX_LIVE_DOCKER_IMAGE_NAMES"].split(',')
  474. if allTexLiveDockerImages?
  475. settings.allowedImageNames = []
  476. for fullImageName, index in allTexLiveDockerImages
  477. imageName = Path.basename(fullImageName)
  478. imageDesc = if allTexLiveDockerImageNames? then allTexLiveDockerImageNames[index] else imageName
  479. settings.allowedImageNames.push({ imageName, imageDesc })
  480. # With lots of incoming and outgoing HTTP connections to different services,
  481. # sometimes long running, it is a good idea to increase the default number
  482. # of sockets that Node will hold open.
  483. http = require('http')
  484. http.globalAgent.maxSockets = 300
  485. https = require('https')
  486. https.globalAgent.maxSockets = 300
  487. module.exports = settings