settings.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  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. // This secret is used for encrypting sharing link tokens in the database
  274. if (process.env.OVERLEAF_INVITE_TOKEN_SECRET) {
  275. module.exports.projectInviteEncryptorOptions = {
  276. cipherLabel: '2026.3-v3',
  277. cipherPasswords: {
  278. '2026.3-v3': process.env.OVERLEAF_INVITE_TOKEN_SECRET,
  279. },
  280. }
  281. }
  282. // # OPTIONAL CONFIGURABLE SETTINGS
  283. if (process.env.OVERLEAF_LEFT_FOOTER != null) {
  284. try {
  285. settings.nav.left_footer = JSON.parse(process.env.OVERLEAF_LEFT_FOOTER)
  286. } catch (error) {
  287. e = error
  288. console.error('could not parse OVERLEAF_LEFT_FOOTER, not valid JSON')
  289. }
  290. }
  291. if (process.env.OVERLEAF_RIGHT_FOOTER != null) {
  292. settings.nav.right_footer = process.env.OVERLEAF_RIGHT_FOOTER
  293. try {
  294. settings.nav.right_footer = JSON.parse(process.env.OVERLEAF_RIGHT_FOOTER)
  295. } catch (error1) {
  296. e = error1
  297. console.error('could not parse OVERLEAF_RIGHT_FOOTER, not valid JSON')
  298. }
  299. }
  300. if (process.env.OVERLEAF_HEADER_IMAGE_URL != null) {
  301. settings.nav.custom_logo = process.env.OVERLEAF_HEADER_IMAGE_URL
  302. }
  303. if (process.env.OVERLEAF_HEADER_EXTRAS != null) {
  304. try {
  305. settings.nav.header_extras = JSON.parse(process.env.OVERLEAF_HEADER_EXTRAS)
  306. } catch (error2) {
  307. e = error2
  308. console.error('could not parse OVERLEAF_HEADER_EXTRAS, not valid JSON')
  309. }
  310. }
  311. if (process.env.OVERLEAF_LOGIN_SUPPORT_TEXT != null) {
  312. settings.nav.login_support_text = process.env.OVERLEAF_LOGIN_SUPPORT_TEXT
  313. }
  314. if (process.env.OVERLEAF_LOGIN_SUPPORT_TITLE != null) {
  315. settings.nav.login_support_title = process.env.OVERLEAF_LOGIN_SUPPORT_TITLE
  316. }
  317. // Sending Email
  318. // -------------
  319. //
  320. // You must configure a mail server to be able to send invite emails from
  321. // Overleaf Community Edition. The config settings are passed to nodemailer. See the nodemailer
  322. // documentation for available options:
  323. //
  324. // http://www.nodemailer.com/docs/transports
  325. if (process.env.OVERLEAF_EMAIL_FROM_ADDRESS != null) {
  326. settings.email = {
  327. fromAddress: process.env.OVERLEAF_EMAIL_FROM_ADDRESS,
  328. replyTo: process.env.OVERLEAF_EMAIL_REPLY_TO || '',
  329. driver: process.env.OVERLEAF_EMAIL_DRIVER,
  330. parameters: {
  331. // AWS Creds
  332. AWSAccessKeyID: process.env.OVERLEAF_EMAIL_AWS_SES_ACCESS_KEY_ID,
  333. AWSSecretKey: process.env.OVERLEAF_EMAIL_AWS_SES_SECRET_KEY,
  334. region: process.env.OVERLEAF_EMAIL_AWS_SES_REGION || 'us-east-1',
  335. // SMTP Creds
  336. host: process.env.OVERLEAF_EMAIL_SMTP_HOST,
  337. port: process.env.OVERLEAF_EMAIL_SMTP_PORT,
  338. secure: parse(process.env.OVERLEAF_EMAIL_SMTP_SECURE),
  339. ignoreTLS: parse(process.env.OVERLEAF_EMAIL_SMTP_IGNORE_TLS),
  340. name: process.env.OVERLEAF_EMAIL_SMTP_NAME,
  341. logger: process.env.OVERLEAF_EMAIL_SMTP_LOGGER === 'true',
  342. },
  343. textEncoding: process.env.OVERLEAF_EMAIL_TEXT_ENCODING,
  344. template: {
  345. customFooter: process.env.OVERLEAF_CUSTOM_EMAIL_FOOTER,
  346. },
  347. }
  348. if (
  349. process.env.OVERLEAF_EMAIL_SMTP_USER != null ||
  350. process.env.OVERLEAF_EMAIL_SMTP_PASS != null
  351. ) {
  352. settings.email.parameters.auth = {
  353. user: process.env.OVERLEAF_EMAIL_SMTP_USER,
  354. pass: process.env.OVERLEAF_EMAIL_SMTP_PASS,
  355. }
  356. }
  357. if (process.env.OVERLEAF_EMAIL_SMTP_TLS_REJECT_UNAUTH != null) {
  358. settings.email.parameters.tls = {
  359. rejectUnauthorized: parse(
  360. process.env.OVERLEAF_EMAIL_SMTP_TLS_REJECT_UNAUTH
  361. ),
  362. }
  363. }
  364. }
  365. // i18n
  366. if (process.env.OVERLEAF_LANG_DOMAIN_MAPPING != null) {
  367. settings.i18n.subdomainLang = parse(process.env.OVERLEAF_LANG_DOMAIN_MAPPING)
  368. }
  369. // Password Settings
  370. // -----------
  371. // These restrict the passwords users can use when registering
  372. // opts are from http://antelle.github.io/passfield
  373. if (
  374. process.env.OVERLEAF_PASSWORD_VALIDATION_PATTERN ||
  375. process.env.OVERLEAF_PASSWORD_VALIDATION_MIN_LENGTH ||
  376. process.env.OVERLEAF_PASSWORD_VALIDATION_MAX_LENGTH
  377. ) {
  378. settings.passwordStrengthOptions = {
  379. pattern: process.env.OVERLEAF_PASSWORD_VALIDATION_PATTERN || 'aA$3',
  380. length: {
  381. min: process.env.OVERLEAF_PASSWORD_VALIDATION_MIN_LENGTH || 8,
  382. max: process.env.OVERLEAF_PASSWORD_VALIDATION_MAX_LENGTH || 72,
  383. },
  384. }
  385. }
  386. // filestore
  387. switch (process.env.OVERLEAF_FILESTORE_BACKEND) {
  388. case 's3':
  389. settings.filestore = {
  390. backend: 's3',
  391. stores: {
  392. template_files:
  393. process.env.OVERLEAF_FILESTORE_TEMPLATE_FILES_BUCKET_NAME,
  394. project_blobs: process.env.OVERLEAF_HISTORY_PROJECT_BLOBS_BUCKET,
  395. global_blobs: process.env.OVERLEAF_HISTORY_BLOBS_BUCKET,
  396. },
  397. s3: {
  398. key:
  399. process.env.OVERLEAF_FILESTORE_S3_ACCESS_KEY_ID ||
  400. process.env.AWS_ACCESS_KEY_ID,
  401. secret:
  402. process.env.OVERLEAF_FILESTORE_S3_SECRET_ACCESS_KEY ||
  403. process.env.AWS_SECRET_ACCESS_KEY,
  404. endpoint: process.env.OVERLEAF_FILESTORE_S3_ENDPOINT,
  405. pathStyle: process.env.OVERLEAF_FILESTORE_S3_PATH_STYLE === 'true',
  406. region:
  407. process.env.OVERLEAF_FILESTORE_S3_REGION ||
  408. process.env.AWS_DEFAULT_REGION,
  409. },
  410. }
  411. break
  412. default:
  413. settings.filestore = {
  414. backend: 'fs',
  415. stores: {
  416. template_files: Path.join(DATA_DIR, 'template_files'),
  417. // NOTE: The below paths are hard-coded in server-ce/config/production.json, so hard code them here as well.
  418. // We can use DATA_DIR after switching history-v1 from 'config' to '@overleaf/settings'.
  419. project_blobs:
  420. process.env.OVERLEAF_HISTORY_PROJECT_BLOBS_BUCKET ||
  421. '/var/lib/overleaf/data/history/overleaf-project-blobs',
  422. global_blobs:
  423. process.env.OVERLEAF_HISTORY_BLOBS_BUCKET ||
  424. '/var/lib/overleaf/data/history/overleaf-global-blobs',
  425. },
  426. }
  427. }
  428. settings.converter = process.env.CONVERTER || 'pdftocairo'
  429. if (
  430. !settings.trustedProxyIps.includes('loopback') &&
  431. !settings.trustedProxyIps.includes('localhost') &&
  432. !settings.trustedProxyIps.includes('127.0.0.1')
  433. ) {
  434. throw new Error(
  435. 'OVERLEAF_TRUSTED_PROXY_IPS must include one of "loopback", "localhost" or "127.0.0.1", which trusts the nginx instance running inside the container'
  436. )
  437. }
  438. // With lots of incoming and outgoing HTTP connections to different services,
  439. // sometimes long running, it is a good idea to increase the default number
  440. // of sockets that Node will hold open.
  441. const http = require('node:http')
  442. http.globalAgent.maxSockets = 300
  443. const https = require('node:https')
  444. https.globalAgent.maxSockets = 300
  445. module.exports = settings