mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
remove requestretry from PersistenceManager GitOrigin-RevId: 1fc9ffdfa7879d7ab4f0f4683544d09fe8526f3d
136 lines
3.1 KiB
JavaScript
136 lines
3.1 KiB
JavaScript
let MockWebApi
|
|
const basicAuth = require('basic-auth')
|
|
const tsscmp = require('tsscmp')
|
|
const express = require('express')
|
|
const bodyParser = require('body-parser')
|
|
const { expressify } = require('@overleaf/promise-utils')
|
|
const Settings = require('@overleaf/settings')
|
|
const app = express()
|
|
const MAX_REQUEST_SIZE = 2 * (2 * 1024 * 1024 + 64 * 1024)
|
|
|
|
module.exports = MockWebApi = {
|
|
docs: {},
|
|
|
|
clearDocs() {
|
|
return (this.docs = {})
|
|
},
|
|
|
|
insertDoc(projectId, docId, doc) {
|
|
if (doc.version == null) {
|
|
doc.version = 0
|
|
}
|
|
if (doc.lines == null) {
|
|
doc.lines = []
|
|
}
|
|
doc.pathname = '/a/b/c.tex'
|
|
return (this.docs[`${projectId}:${docId}`] = doc)
|
|
},
|
|
|
|
async setDocument(
|
|
projectId,
|
|
docId,
|
|
lines,
|
|
version,
|
|
ranges,
|
|
lastUpdatedAt,
|
|
lastUpdatedBy
|
|
) {
|
|
if (!(`${projectId}:${docId}` in this.docs)) {
|
|
return false
|
|
}
|
|
const doc = this.docs[`${projectId}:${docId}`]
|
|
doc.lines = lines
|
|
doc.version = version
|
|
doc.ranges = ranges
|
|
doc.pathname = '/a/b/c.tex'
|
|
doc.lastUpdatedAt = lastUpdatedAt
|
|
doc.lastUpdatedBy = lastUpdatedBy
|
|
return true
|
|
},
|
|
|
|
async getDocument(projectId, docId) {
|
|
return this.docs[`${projectId}:${docId}`]
|
|
},
|
|
|
|
async getDocumentController(req, res, next) {
|
|
try {
|
|
const doc = await this.getDocument(
|
|
req.params.project_id,
|
|
req.params.doc_id
|
|
)
|
|
if (doc != null) {
|
|
return res.send(JSON.stringify(doc))
|
|
} else {
|
|
return res.sendStatus(404)
|
|
}
|
|
} catch (error) {
|
|
return res.sendStatus(500)
|
|
}
|
|
},
|
|
|
|
async setDocumentController(req, res, next) {
|
|
try {
|
|
const ok = await this.setDocument(
|
|
req.params.project_id,
|
|
req.params.doc_id,
|
|
req.body.lines,
|
|
req.body.version,
|
|
req.body.ranges,
|
|
req.body.lastUpdatedAt,
|
|
req.body.lastUpdatedBy
|
|
)
|
|
if (!ok) {
|
|
return res.sendStatus(404)
|
|
}
|
|
return res.json({ rev: '123' })
|
|
} catch (error) {
|
|
return res.sendStatus(500)
|
|
}
|
|
},
|
|
|
|
run() {
|
|
app.use((req, res, next) => {
|
|
const credentials = basicAuth(req)
|
|
if (
|
|
!credentials ||
|
|
!Settings.apis.web.user ||
|
|
credentials.name !== Settings.apis.web.user ||
|
|
!Settings.apis.web.pass ||
|
|
!tsscmp(credentials.pass, Settings.apis.web.pass)
|
|
) {
|
|
return res.sendStatus(401)
|
|
} else {
|
|
next()
|
|
}
|
|
})
|
|
|
|
app.get(
|
|
'/project/:project_id/doc/:doc_id',
|
|
expressify(async (req, res, next) => {
|
|
await this.getDocumentController(req, res, next)
|
|
})
|
|
)
|
|
|
|
app.post(
|
|
'/project/:project_id/doc/:doc_id',
|
|
bodyParser.json({ limit: MAX_REQUEST_SIZE }),
|
|
expressify(async (req, res, next) => {
|
|
await this.setDocumentController(req, res, next)
|
|
})
|
|
)
|
|
|
|
return app
|
|
.listen(3000, error => {
|
|
if (error != null) {
|
|
throw error
|
|
}
|
|
})
|
|
.on('error', error => {
|
|
console.error('error starting MockWebApi:', error.message)
|
|
return process.exit(1)
|
|
})
|
|
},
|
|
}
|
|
|
|
MockWebApi.run()
|