settings.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. /* eslint-disable
  2. camelcase,
  3. no-cond-assign,
  4. no-dupe-keys,
  5. no-unused-vars,
  6. */
  7. // TODO: This file was created by bulk-decaffeinate.
  8. // Fix any style issues and re-enable lint.
  9. /*
  10. * decaffeinate suggestions:
  11. * DS205: Consider reworking code to avoid use of IIFEs
  12. * DS207: Consider shorter variations of null checks
  13. * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
  14. */
  15. let redisConfig, siteUrl
  16. let e
  17. const Path = require('node:path')
  18. // These credentials are used for authenticating api requests
  19. // between services that may need to go over public channels
  20. const httpAuthUser = process.env.WEB_API_USER
  21. const httpAuthPass = process.env.WEB_API_PASSWORD
  22. const httpAuthUsers = {}
  23. if (httpAuthUser && httpAuthPass) {
  24. httpAuthUsers[httpAuthUser] = httpAuthPass
  25. }
  26. const parse = function (option) {
  27. if (option != null) {
  28. try {
  29. const opt = JSON.parse(option)
  30. return opt
  31. } catch (err) {
  32. throw new Error(`problem parsing ${option}, invalid JSON`)
  33. }
  34. }
  35. }
  36. const parseIntOrFail = function (value) {
  37. const parsedValue = parseInt(value, 10)
  38. if (isNaN(parsedValue)) {
  39. throw new Error(`'${value}' is an invalid integer`)
  40. }
  41. return parsedValue
  42. }
  43. const DATA_DIR = '/var/lib/overleaf/data'
  44. const TMP_DIR = '/var/lib/overleaf/tmp'
  45. const settings = {
  46. clsi: {
  47. optimiseInDocker: process.env.OPTIMISE_PDF === 'true',
  48. },
  49. brandPrefix: '',
  50. allowAnonymousReadAndWriteSharing:
  51. process.env.OVERLEAF_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING === 'true',
  52. // Databases
  53. // ---------
  54. // Overleaf Community Edition's main persistent data store is MongoDB (http://www.mongodb.org/)
  55. // Documentation about the URL connection string format can be found at:
  56. //
  57. // http://docs.mongodb.org/manual/reference/connection-string/
  58. //
  59. // The following works out of the box with Mongo's default settings:
  60. mongo: {
  61. url: process.env.OVERLEAF_MONGO_URL || 'mongodb://dockerhost/sharelatex',
  62. },
  63. // Redis is used in Overleaf Community Edition for high volume queries, like real-time
  64. // editing, and session management.
  65. //
  66. // The following config will work with Redis's default settings:
  67. redis: {
  68. web: (redisConfig = {
  69. host: process.env.OVERLEAF_REDIS_HOST || 'dockerhost',
  70. port: process.env.OVERLEAF_REDIS_PORT || '6379',
  71. password: process.env.OVERLEAF_REDIS_PASS || undefined,
  72. tls: process.env.OVERLEAF_REDIS_TLS === 'true' ? {} : undefined,
  73. key_schema: {
  74. // document-updater
  75. blockingKey({ doc_id }) {
  76. return `Blocking:${doc_id}`
  77. },
  78. docLines({ doc_id }) {
  79. return `doclines:${doc_id}`
  80. },
  81. docOps({ doc_id }) {
  82. return `DocOps:${doc_id}`
  83. },
  84. docVersion({ doc_id }) {
  85. return `DocVersion:${doc_id}`
  86. },
  87. docHash({ doc_id }) {
  88. return `DocHash:${doc_id}`
  89. },
  90. projectKey({ doc_id }) {
  91. return `ProjectId:${doc_id}`
  92. },
  93. docsInProject({ project_id }) {
  94. return `DocsIn:${project_id}`
  95. },
  96. ranges({ doc_id }) {
  97. return `Ranges:${doc_id}`
  98. },
  99. // document-updater:realtime
  100. pendingUpdates({ doc_id }) {
  101. return `PendingUpdates:${doc_id}`
  102. },
  103. // document-updater:history
  104. uncompressedHistoryOps({ doc_id }) {
  105. return `UncompressedHistoryOps:${doc_id}`
  106. },
  107. docsWithHistoryOps({ project_id }) {
  108. return `DocsWithHistoryOps:${project_id}`
  109. },
  110. // document-updater:lock
  111. blockingKey({ doc_id }) {
  112. return `Blocking:${doc_id}`
  113. },
  114. // realtime
  115. clientsInProject({ project_id }) {
  116. return `clients_in_project:${project_id}`
  117. },
  118. connectedUser({ project_id, client_id }) {
  119. return `connected_user:${project_id}:${client_id}`
  120. },
  121. },
  122. }),
  123. fairy: redisConfig,
  124. // document-updater
  125. realtime: redisConfig,
  126. documentupdater: redisConfig,
  127. lock: redisConfig,
  128. history: redisConfig,
  129. websessions: redisConfig,
  130. api: redisConfig,
  131. pubsub: redisConfig,
  132. project_history: redisConfig,
  133. project_history_migration: {
  134. host: redisConfig.host,
  135. port: redisConfig.port,
  136. password: redisConfig.password,
  137. maxRetriesPerRequest: parseInt(
  138. process.env.REDIS_MAX_RETRIES_PER_REQUEST || '20'
  139. ),
  140. key_schema: {
  141. projectHistoryOps({ projectId }) {
  142. return `ProjectHistory:Ops:{${projectId}}` // NOTE: the extra braces are intentional
  143. },
  144. },
  145. },
  146. },
  147. // Local disk caching
  148. // ------------------
  149. path: {
  150. // If we ever need to write something to disk (e.g. incoming requests
  151. // that need processing but may be too big for memory), then write
  152. // them to disk here:
  153. dumpFolder: Path.join(TMP_DIR, 'dumpFolder'),
  154. // Where to write uploads before they are processed
  155. uploadFolder: Path.join(TMP_DIR, 'uploads'),
  156. // Where to write intermediate file for full project history migration
  157. projectHistories: Path.join(TMP_DIR, 'projectHistories'),
  158. // Where to write the project to disk before running LaTeX on it
  159. compilesDir: Path.join(DATA_DIR, 'compiles'),
  160. // Where to cache downloaded URLs for the CLSI
  161. clsiCacheDir: Path.join(DATA_DIR, 'cache'),
  162. // Where to write the output files to disk after running LaTeX
  163. outputDir: Path.join(DATA_DIR, 'output'),
  164. },
  165. // Server Config
  166. // -------------
  167. // Where your instance of Overleaf Community Edition can be found publicly. This is used
  168. // when emails are sent out and in generated links:
  169. siteUrl: (siteUrl = process.env.OVERLEAF_SITE_URL || 'http://localhost'),
  170. // Status page URL as displayed on the maintenance/500 pages.
  171. statusPageUrl: process.env.OVERLEAF_STATUS_PAGE_URL
  172. ? // Add https:// protocol prefix if not set (Allow plain-text http:// for Server Pro/CE).
  173. process.env.OVERLEAF_STATUS_PAGE_URL.startsWith('http://') ||
  174. process.env.OVERLEAF_STATUS_PAGE_URL.startsWith('https://')
  175. ? process.env.OVERLEAF_STATUS_PAGE_URL
  176. : `https://${process.env.OVERLEAF_STATUS_PAGE_URL}`
  177. : undefined,
  178. maintenanceMessage: process.env.OVERLEAF_MAINTENANCE_MESSAGE,
  179. maintenanceMessageHTML: process.env.OVERLEAF_MAINTENANCE_MESSAGE_HTML,
  180. // The name this is used to describe your Overleaf Community Edition Installation
  181. appName: process.env.OVERLEAF_APP_NAME || 'Overleaf Community Edition',
  182. restrictInvitesToExistingAccounts:
  183. process.env.OVERLEAF_RESTRICT_INVITES_TO_EXISTING_ACCOUNTS === 'true',
  184. nav: {
  185. title:
  186. process.env.OVERLEAF_NAV_TITLE ||
  187. process.env.OVERLEAF_APP_NAME ||
  188. 'Overleaf Community Edition',
  189. },
  190. // The email address which users will be directed to as the main point of
  191. // contact for this installation of Overleaf Community Edition.
  192. adminEmail: process.env.OVERLEAF_ADMIN_EMAIL || 'placeholder@example.com',
  193. // If provided, a sessionSecret is used to sign cookies so that they cannot be
  194. // spoofed. This is recommended.
  195. security: {
  196. sessionSecret:
  197. process.env.OVERLEAF_SESSION_SECRET || process.env.CRYPTO_RANDOM,
  198. },
  199. csp: {
  200. enabled: process.env.OVERLEAF_CSP_ENABLED !== 'false',
  201. },
  202. rateLimit: {
  203. subnetRateLimiterDisabled:
  204. process.env.SUBNET_RATE_LIMITER_DISABLED !== 'false',
  205. },
  206. // These credentials are used for authenticating api requests
  207. // between services that may need to go over public channels
  208. httpAuthUsers,
  209. // Should javascript assets be served minified or not.
  210. useMinifiedJs: true,
  211. // Should static assets be sent with a header to tell the browser to cache
  212. // them. This should be false in development where changes are being made,
  213. // but should be set to true in production.
  214. cacheStaticAssets: true,
  215. // If you are running Overleaf Community Edition over https, set this to true to send the
  216. // cookie with a secure flag (recommended).
  217. secureCookie: process.env.OVERLEAF_SECURE_COOKIE != null,
  218. // If you are running Overleaf Community Edition behind a proxy (like Apache, Nginx, etc)
  219. // then set this to true to allow it to correctly detect the forwarded IP
  220. // address and http/https protocol information.
  221. behindProxy: true,
  222. trustedProxyIps: process.env.OVERLEAF_TRUSTED_PROXY_IPS || 'loopback',
  223. // The amount of time, in milliseconds, until the (rolling) cookie session expires
  224. cookieSessionLength: parseInt(
  225. process.env.OVERLEAF_COOKIE_SESSION_LENGTH || 5 * 24 * 60 * 60 * 1000, // default 5 days
  226. 10
  227. ),
  228. redisLockTTLSeconds: parseInt(
  229. process.env.OVERLEAF_REDIS_LOCK_TTL_SECONDS || '60',
  230. 10
  231. ),
  232. i18n: {
  233. subdomainLang: {
  234. www: {
  235. lngCode: process.env.OVERLEAF_SITE_LANGUAGE || 'en',
  236. url: siteUrl,
  237. },
  238. },
  239. defaultLng: process.env.OVERLEAF_SITE_LANGUAGE || 'en',
  240. },
  241. currentImageName: process.env.TEX_LIVE_DOCKER_IMAGE,
  242. apis: {
  243. web: {
  244. url: 'http://127.0.0.1:3000',
  245. user: httpAuthUser,
  246. pass: httpAuthPass,
  247. },
  248. project_history: {
  249. sendProjectStructureOps: true,
  250. url: 'http://127.0.0.1:3054',
  251. },
  252. v1_history: {
  253. url: process.env.V1_HISTORY_URL || 'http://127.0.0.1:3100/api',
  254. user: 'staging',
  255. pass: process.env.STAGING_PASSWORD,
  256. requestTimeout: parseInt(
  257. process.env.OVERLEAF_HISTORY_V1_HTTP_REQUEST_TIMEOUT || '300000', // default is 5min
  258. 10
  259. ),
  260. },
  261. },
  262. notifications: undefined,
  263. defaultFeatures: {
  264. collaborators: -1,
  265. dropbox: true,
  266. versioning: true,
  267. compileTimeout: parseIntOrFail(process.env.COMPILE_TIMEOUT || 180),
  268. compileGroup: 'standard',
  269. trackChanges: true,
  270. references: true,
  271. },
  272. }
  273. // # OPTIONAL CONFIGURABLE SETTINGS
  274. if (process.env.OVERLEAF_LEFT_FOOTER != null) {
  275. try {
  276. settings.nav.left_footer = JSON.parse(process.env.OVERLEAF_LEFT_FOOTER)
  277. } catch (error) {
  278. e = error
  279. console.error('could not parse OVERLEAF_LEFT_FOOTER, not valid JSON')
  280. }
  281. }
  282. if (process.env.OVERLEAF_RIGHT_FOOTER != null) {
  283. settings.nav.right_footer = process.env.OVERLEAF_RIGHT_FOOTER
  284. try {
  285. settings.nav.right_footer = JSON.parse(process.env.OVERLEAF_RIGHT_FOOTER)
  286. } catch (error1) {
  287. e = error1
  288. console.error('could not parse OVERLEAF_RIGHT_FOOTER, not valid JSON')
  289. }
  290. }
  291. if (process.env.OVERLEAF_HEADER_IMAGE_URL != null) {
  292. settings.nav.custom_logo = process.env.OVERLEAF_HEADER_IMAGE_URL
  293. }
  294. if (process.env.OVERLEAF_HEADER_EXTRAS != null) {
  295. try {
  296. settings.nav.header_extras = JSON.parse(process.env.OVERLEAF_HEADER_EXTRAS)
  297. } catch (error2) {
  298. e = error2
  299. console.error('could not parse OVERLEAF_HEADER_EXTRAS, not valid JSON')
  300. }
  301. }
  302. if (process.env.OVERLEAF_LOGIN_SUPPORT_TEXT != null) {
  303. settings.nav.login_support_text = process.env.OVERLEAF_LOGIN_SUPPORT_TEXT
  304. }
  305. if (process.env.OVERLEAF_LOGIN_SUPPORT_TITLE != null) {
  306. settings.nav.login_support_title = process.env.OVERLEAF_LOGIN_SUPPORT_TITLE
  307. }
  308. // Sending Email
  309. // -------------
  310. //
  311. // You must configure a mail server to be able to send invite emails from
  312. // Overleaf Community Edition. The config settings are passed to nodemailer. See the nodemailer
  313. // documentation for available options:
  314. //
  315. // http://www.nodemailer.com/docs/transports
  316. if (process.env.OVERLEAF_EMAIL_FROM_ADDRESS != null) {
  317. settings.email = {
  318. fromAddress: process.env.OVERLEAF_EMAIL_FROM_ADDRESS,
  319. replyTo: process.env.OVERLEAF_EMAIL_REPLY_TO || '',
  320. driver: process.env.OVERLEAF_EMAIL_DRIVER,
  321. parameters: {
  322. // AWS Creds
  323. AWSAccessKeyID: process.env.OVERLEAF_EMAIL_AWS_SES_ACCESS_KEY_ID,
  324. AWSSecretKey: process.env.OVERLEAF_EMAIL_AWS_SES_SECRET_KEY,
  325. region: process.env.OVERLEAF_EMAIL_AWS_SES_REGION || 'us-east-1',
  326. // SMTP Creds
  327. host: process.env.OVERLEAF_EMAIL_SMTP_HOST,
  328. port: process.env.OVERLEAF_EMAIL_SMTP_PORT,
  329. secure: parse(process.env.OVERLEAF_EMAIL_SMTP_SECURE),
  330. ignoreTLS: parse(process.env.OVERLEAF_EMAIL_SMTP_IGNORE_TLS),
  331. name: process.env.OVERLEAF_EMAIL_SMTP_NAME,
  332. logger: process.env.OVERLEAF_EMAIL_SMTP_LOGGER === 'true',
  333. },
  334. textEncoding: process.env.OVERLEAF_EMAIL_TEXT_ENCODING,
  335. template: {
  336. customFooter: process.env.OVERLEAF_CUSTOM_EMAIL_FOOTER,
  337. },
  338. }
  339. if (
  340. process.env.OVERLEAF_EMAIL_SMTP_USER != null ||
  341. process.env.OVERLEAF_EMAIL_SMTP_PASS != null
  342. ) {
  343. settings.email.parameters.auth = {
  344. user: process.env.OVERLEAF_EMAIL_SMTP_USER,
  345. pass: process.env.OVERLEAF_EMAIL_SMTP_PASS,
  346. }
  347. }
  348. if (process.env.OVERLEAF_EMAIL_SMTP_TLS_REJECT_UNAUTH != null) {
  349. settings.email.parameters.tls = {
  350. rejectUnauthorized: parse(
  351. process.env.OVERLEAF_EMAIL_SMTP_TLS_REJECT_UNAUTH
  352. ),
  353. }
  354. }
  355. }
  356. // i18n
  357. if (process.env.OVERLEAF_LANG_DOMAIN_MAPPING != null) {
  358. settings.i18n.subdomainLang = parse(process.env.OVERLEAF_LANG_DOMAIN_MAPPING)
  359. }
  360. // Password Settings
  361. // -----------
  362. // These restrict the passwords users can use when registering
  363. // opts are from http://antelle.github.io/passfield
  364. if (
  365. process.env.OVERLEAF_PASSWORD_VALIDATION_PATTERN ||
  366. process.env.OVERLEAF_PASSWORD_VALIDATION_MIN_LENGTH ||
  367. process.env.OVERLEAF_PASSWORD_VALIDATION_MAX_LENGTH
  368. ) {
  369. settings.passwordStrengthOptions = {
  370. pattern: process.env.OVERLEAF_PASSWORD_VALIDATION_PATTERN || 'aA$3',
  371. length: {
  372. min: process.env.OVERLEAF_PASSWORD_VALIDATION_MIN_LENGTH || 8,
  373. max: process.env.OVERLEAF_PASSWORD_VALIDATION_MAX_LENGTH || 72,
  374. },
  375. }
  376. }
  377. // filestore
  378. switch (process.env.OVERLEAF_FILESTORE_BACKEND) {
  379. case 's3':
  380. settings.filestore = {
  381. backend: 's3',
  382. stores: {
  383. template_files:
  384. process.env.OVERLEAF_FILESTORE_TEMPLATE_FILES_BUCKET_NAME,
  385. project_blobs: process.env.OVERLEAF_HISTORY_PROJECT_BLOBS_BUCKET,
  386. global_blobs: process.env.OVERLEAF_HISTORY_BLOBS_BUCKET,
  387. },
  388. s3: {
  389. key:
  390. process.env.OVERLEAF_FILESTORE_S3_ACCESS_KEY_ID ||
  391. process.env.AWS_ACCESS_KEY_ID,
  392. secret:
  393. process.env.OVERLEAF_FILESTORE_S3_SECRET_ACCESS_KEY ||
  394. process.env.AWS_SECRET_ACCESS_KEY,
  395. endpoint: process.env.OVERLEAF_FILESTORE_S3_ENDPOINT,
  396. pathStyle: process.env.OVERLEAF_FILESTORE_S3_PATH_STYLE === 'true',
  397. region:
  398. process.env.OVERLEAF_FILESTORE_S3_REGION ||
  399. process.env.AWS_DEFAULT_REGION,
  400. },
  401. }
  402. break
  403. default:
  404. settings.filestore = {
  405. backend: 'fs',
  406. stores: {
  407. template_files: Path.join(DATA_DIR, 'template_files'),
  408. // NOTE: The below paths are hard-coded in server-ce/config/production.json, so hard code them here as well.
  409. // We can use DATA_DIR after switching history-v1 from 'config' to '@overleaf/settings'.
  410. project_blobs:
  411. process.env.OVERLEAF_HISTORY_PROJECT_BLOBS_BUCKET ||
  412. '/var/lib/overleaf/data/history/overleaf-project-blobs',
  413. global_blobs:
  414. process.env.OVERLEAF_HISTORY_BLOBS_BUCKET ||
  415. '/var/lib/overleaf/data/history/overleaf-global-blobs',
  416. },
  417. }
  418. }
  419. settings.converter = process.env.CONVERTER || 'pdftocairo'
  420. if (
  421. !settings.trustedProxyIps.includes('loopback') &&
  422. !settings.trustedProxyIps.includes('localhost') &&
  423. !settings.trustedProxyIps.includes('127.0.0.1')
  424. ) {
  425. throw new Error(
  426. 'OVERLEAF_TRUSTED_PROXY_IPS must include one of "loopback", "localhost" or "127.0.0.1", which trusts the nginx instance running inside the container'
  427. )
  428. }
  429. // With lots of incoming and outgoing HTTP connections to different services,
  430. // sometimes long running, it is a good idea to increase the default number
  431. // of sockets that Node will hold open.
  432. const http = require('node:http')
  433. http.globalAgent.maxSockets = 300
  434. const https = require('node:https')
  435. https.globalAgent.maxSockets = 300
  436. module.exports = settings