2020-02-19 06:14:37 -05:00
|
|
|
const fs = require('fs')
|
2022-03-01 10:09:36 -05:00
|
|
|
const logger = require('@overleaf/logger')
|
2023-04-27 06:16:41 -04:00
|
|
|
const Settings = require('@overleaf/settings')
|
2021-10-20 06:17:59 -04:00
|
|
|
const { URL } = require('url')
|
2021-10-06 04:11:59 -04:00
|
|
|
const { promisify } = require('util')
|
2023-04-27 06:16:41 -04:00
|
|
|
const fetch = require('node-fetch')
|
|
|
|
const pipeline = promisify(require('stream').pipeline)
|
|
|
|
|
|
|
|
async function pipeUrlToFileWithRetry(url, filePath) {
|
|
|
|
let remainingAttempts = 3
|
|
|
|
let lastErr
|
|
|
|
while (remainingAttempts-- > 0) {
|
|
|
|
try {
|
|
|
|
await pipeUrlToFile(url, filePath)
|
|
|
|
return
|
|
|
|
} catch (err) {
|
|
|
|
logger.warn(
|
|
|
|
{ err, url, filePath, remainingAttempts },
|
|
|
|
'error downloading url'
|
2020-02-19 06:14:37 -05:00
|
|
|
)
|
2023-04-27 06:16:41 -04:00
|
|
|
lastErr = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw lastErr
|
|
|
|
}
|
2015-05-15 09:07:15 -04:00
|
|
|
|
2023-04-27 06:16:41 -04:00
|
|
|
async function pipeUrlToFile(url, filePath) {
|
|
|
|
const u = new URL(url)
|
|
|
|
if (
|
|
|
|
Settings.filestoreDomainOveride &&
|
|
|
|
u.host !== Settings.apis.clsiPerf.host
|
|
|
|
) {
|
|
|
|
url = `${Settings.filestoreDomainOveride}${u.pathname}${u.search}`
|
|
|
|
}
|
|
|
|
|
|
|
|
const res = await fetch(url, { signal: AbortSignal.timeout(60 * 1000) })
|
|
|
|
if (res.status !== 200) {
|
|
|
|
throw new Error('non success response: ' + res.statusText)
|
|
|
|
}
|
|
|
|
|
|
|
|
const atomicWrite = filePath + '~'
|
|
|
|
try {
|
|
|
|
await pipeline(res.body, fs.createWriteStream(atomicWrite))
|
|
|
|
await fs.promises.rename(atomicWrite, filePath)
|
|
|
|
} catch (err) {
|
|
|
|
try {
|
|
|
|
await fs.promises.unlink(atomicWrite)
|
|
|
|
} catch (e) {}
|
|
|
|
throw err
|
|
|
|
}
|
2020-02-19 06:14:37 -05:00
|
|
|
}
|
2021-10-06 04:11:59 -04:00
|
|
|
|
|
|
|
module.exports.promises = {
|
2023-04-27 06:16:41 -04:00
|
|
|
pipeUrlToFileWithRetry,
|
2021-10-06 04:11:59 -04:00
|
|
|
}
|