Files
Verso/services/web/app/src/Features/LinkedFiles/ProjectOutputFileAgent.mjs
T
Antoine Clausse 71f0b28a84 [web] Convert some Features files to ES modules (part 3) (#28494)
* Rename files to mjs

* Rename test files to mjs

* Update CODEOWNERS

* Update files to ESM

* Update test files to ESM

* Update RestoreManager.test.mjs

* Remove unused `AdminAuthorizationHelper` mock and stub

* Remove unnecessary return

GitOrigin-RevId: 2b9ef126de1d8964afbc6e5641cca36712655866
2025-09-17 08:05:02 +00:00

237 lines
5.7 KiB
JavaScript

import AuthorizationManager from '../Authorization/AuthorizationManager.js'
import CompileManager from '../Compile/CompileManager.js'
import ClsiManager from '../Compile/ClsiManager.js'
import ProjectFileAgent from './ProjectFileAgent.mjs'
import _ from 'lodash'
import {
CompileFailedError,
BadDataError,
AccessDeniedError,
} from './LinkedFilesErrors.js'
import { OutputFileFetchFailedError } from '../Errors/Errors.js'
import LinkedFilesHandler from './LinkedFilesHandler.mjs'
import { promisify } from '@overleaf/promise-utils'
function _prepare(projectId, linkedFileData, userId, callback) {
_checkAuth(projectId, linkedFileData, userId, (err, allowed) => {
if (err) {
return callback(err)
}
if (!allowed) {
return callback(new AccessDeniedError())
}
if (!_validate(linkedFileData)) {
return callback(new BadDataError())
}
callback(null, linkedFileData)
})
}
function createLinkedFile(
projectId,
linkedFileData,
name,
parentFolderId,
userId,
callback
) {
if (!ProjectFileAgent._canCreate(linkedFileData)) {
return callback(new AccessDeniedError())
}
linkedFileData = _sanitizeData(linkedFileData)
_prepare(projectId, linkedFileData, userId, (err, linkedFileData) => {
if (err) {
return callback(err)
}
_getFileStream(linkedFileData, userId, (err, readStream) => {
if (err) {
return callback(err)
}
LinkedFilesHandler.importFromStream(
projectId,
readStream,
linkedFileData,
name,
parentFolderId,
userId,
(err, file) => {
if (err) {
return callback(err)
}
callback(null, file._id)
}
)
})
})
}
function refreshLinkedFile(
projectId,
linkedFileData,
name,
parentFolderId,
userId,
callback
) {
_prepare(projectId, linkedFileData, userId, (err, linkedFileData) => {
if (err) {
return callback(err)
}
_compileAndGetFileStream(
linkedFileData,
userId,
(err, readStream, newBuildId) => {
if (err) {
return callback(err)
}
linkedFileData.build_id = newBuildId
LinkedFilesHandler.importFromStream(
projectId,
readStream,
linkedFileData,
name,
parentFolderId,
userId,
(err, file) => {
if (err) {
return callback(err)
}
callback(null, file._id)
}
)
}
)
})
}
function _sanitizeData(data) {
return {
provider: data.provider,
source_project_id: data.source_project_id,
source_output_file_path: data.source_output_file_path,
build_id: data.build_id,
clsiServerId: data.clsiServerId,
importedAt: data.importedAt,
}
}
function _validate(data) {
return (
(data.v1_source_doc_id != null && data.source_output_file_path != null) ||
(data.source_project_id != null &&
data.source_output_file_path != null &&
data.build_id != null)
)
}
function _checkAuth(projectId, data, currentUserId, callback) {
callback = _.once(callback)
if (!_validate(data)) {
return callback(new BadDataError())
}
LinkedFilesHandler.getSourceProject(data, (err, project) => {
if (err) {
return callback(err)
}
AuthorizationManager.canUserReadProject(
currentUserId,
project._id,
null,
(err, canRead) => {
if (err) {
return callback(err)
}
callback(null, canRead)
}
)
})
}
function _getFileStream(linkedFileData, userId, callback) {
callback = _.once(callback)
const {
source_output_file_path: sourceOutputFilePath,
build_id: buildId,
clsiServerId,
} = linkedFileData
LinkedFilesHandler.getSourceProject(linkedFileData, (err, project) => {
if (err) {
return callback(err)
}
const sourceProjectId = project._id
CompileManager.getProjectCompileLimits(sourceProjectId, (err, limits) => {
if (err) return callback(err)
ClsiManager.getOutputFileStream(
sourceProjectId,
userId,
limits,
clsiServerId,
buildId,
sourceOutputFilePath,
(err, readStream) => {
if (err) {
return callback(err)
}
callback(null, readStream)
}
)
})
})
}
function _compileAndGetFileStream(linkedFileData, userId, callback) {
callback = _.once(callback)
const { source_output_file_path: sourceOutputFilePath } = linkedFileData
LinkedFilesHandler.getSourceProject(linkedFileData, (err, project) => {
if (err) {
return callback(err)
}
const sourceProjectId = project._id
CompileManager.compile(
sourceProjectId,
userId,
{},
(err, status, outputFiles, clsiServerId, limits) => {
if (err) {
return callback(err)
}
if (status !== 'success') {
return callback(new CompileFailedError())
}
const outputFile = _.find(
outputFiles,
o => o.path === sourceOutputFilePath
)
if (outputFile == null) {
return callback(new OutputFileFetchFailedError())
}
const buildId = outputFile.build
ClsiManager.getOutputFileStream(
sourceProjectId,
userId,
limits,
clsiServerId,
buildId,
sourceOutputFilePath,
(err, readStream) => {
if (err) {
return callback(err)
}
callback(null, readStream, buildId)
}
)
}
)
})
}
export default {
createLinkedFile,
refreshLinkedFile,
promises: {
createLinkedFile: promisify(createLinkedFile),
refreshLinkedFile: promisify(refreshLinkedFile),
},
}