mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Replace request with fetch-utils in ExpressLocals
GitOrigin-RevId: 85c112a2124aeca128753e40c70869517c7026f6
This commit is contained in:
parent
184edf9eae
commit
15ea69995a
1 changed files with 20 additions and 16 deletions
|
@ -5,7 +5,7 @@ const _ = require('lodash')
|
|||
const { URL } = require('url')
|
||||
const Path = require('path')
|
||||
const moment = require('moment')
|
||||
const request = require('request')
|
||||
const { fetchJson, RequestFailedError } = require('@overleaf/fetch-utils')
|
||||
const contentDisposition = require('content-disposition')
|
||||
const Features = require('./Features')
|
||||
const SessionManager = require('../Features/Authentication/SessionManager')
|
||||
|
@ -51,24 +51,28 @@ switch (process.env.NODE_ENV) {
|
|||
webpackManifest = {}
|
||||
}
|
||||
function loadManifestFromWebpackDevServer(done = function () {}) {
|
||||
request(
|
||||
webpackManifest = fetchJson(
|
||||
new URL(`/manifest.json`, Settings.apis.webpack.url),
|
||||
{
|
||||
uri: `${Settings.apis.webpack.url}/manifest.json`,
|
||||
headers: { Host: 'localhost' },
|
||||
json: true,
|
||||
},
|
||||
(err, res, body) => {
|
||||
if (!err && res.statusCode !== 200) {
|
||||
err = new Error(`webpack responded with statusCode: ${res.statusCode}`)
|
||||
}
|
||||
if (err) {
|
||||
logger.err({ err }, 'cannot fetch webpack manifest')
|
||||
return done(err)
|
||||
}
|
||||
webpackManifest = body
|
||||
done()
|
||||
headers: {
|
||||
Host: 'localhost',
|
||||
},
|
||||
}
|
||||
)
|
||||
.then(json => {
|
||||
webpackManifest = json
|
||||
done()
|
||||
})
|
||||
.catch(err => {
|
||||
let error = err
|
||||
if (err instanceof RequestFailedError) {
|
||||
error = new Error(
|
||||
`webpack responded with statusCode: ${err.response.status}`
|
||||
)
|
||||
}
|
||||
logger.err({ error }, 'cannot fetch webpack manifest')
|
||||
done(error)
|
||||
})
|
||||
}
|
||||
const IN_CI = process.env.NODE_ENV === 'test'
|
||||
function getWebpackAssets(entrypoint, section) {
|
||||
|
|
Loading…
Reference in a new issue