2018-05-03 09:29:03 -04:00
|
|
|
FileWriter = require('../../infrastructure/FileWriter')
|
|
|
|
AuthorizationManager = require('../Authorization/AuthorizationManager')
|
|
|
|
ProjectLocator = require('../Project/ProjectLocator')
|
|
|
|
DocstoreManager = require('../Docstore/DocstoreManager')
|
|
|
|
FileStoreHandler = require('../FileStore/FileStoreHandler')
|
|
|
|
FileWriter = require('../../infrastructure/FileWriter')
|
|
|
|
_ = require "underscore"
|
|
|
|
Settings = require 'settings-sharelatex'
|
|
|
|
|
|
|
|
|
|
|
|
AccessDeniedError = (message) ->
|
|
|
|
error = new Error(message)
|
|
|
|
error.name = 'AccessDenied'
|
|
|
|
error.__proto__ = AccessDeniedError.prototype
|
|
|
|
return error
|
|
|
|
AccessDeniedError.prototype.__proto__ = Error.prototype
|
|
|
|
|
2018-05-17 05:51:58 -04:00
|
|
|
|
2018-05-03 09:29:03 -04:00
|
|
|
BadEntityTypeError = (message) ->
|
|
|
|
error = new Error(message)
|
|
|
|
error.name = 'BadEntityType'
|
|
|
|
error.__proto__ = BadEntityTypeError.prototype
|
|
|
|
return error
|
|
|
|
BadEntityTypeError.prototype.__proto__ = Error.prototype
|
|
|
|
|
|
|
|
|
2018-05-17 05:51:58 -04:00
|
|
|
BadDataError = (message) ->
|
|
|
|
error = new Error(message)
|
|
|
|
error.name = 'BadData'
|
|
|
|
error.__proto__ = BadDataError.prototype
|
|
|
|
return error
|
|
|
|
BadDataError.prototype.__proto__ = Error.prototype
|
|
|
|
|
|
|
|
|
2018-05-22 06:36:35 -04:00
|
|
|
SourceFileNotFoundError = (message) ->
|
2018-05-21 05:12:41 -04:00
|
|
|
error = new Error(message)
|
|
|
|
error.name = 'BadData'
|
2018-05-22 06:36:35 -04:00
|
|
|
error.__proto__ = SourceFileNotFoundError.prototype
|
2018-05-21 05:12:41 -04:00
|
|
|
return error
|
2018-05-22 06:36:35 -04:00
|
|
|
SourceFileNotFoundError.prototype.__proto__ = Error.prototype
|
2018-05-21 05:12:41 -04:00
|
|
|
|
|
|
|
|
2018-05-03 09:29:03 -04:00
|
|
|
module.exports = ProjectFileAgent =
|
|
|
|
|
|
|
|
sanitizeData: (data) ->
|
|
|
|
return data
|
|
|
|
|
2018-05-17 05:51:58 -04:00
|
|
|
_validate: (data) ->
|
|
|
|
return (
|
|
|
|
!!data.source_project_id &&
|
|
|
|
!!data.source_entity_path &&
|
|
|
|
!!data.source_project_display_name
|
|
|
|
)
|
|
|
|
|
2018-05-24 06:29:37 -04:00
|
|
|
checkAuth: (project_id, data, current_user_id, callback = (error, allowed)->) ->
|
|
|
|
callback = _.once(callback)
|
|
|
|
if !ProjectFileAgent._validate(data)
|
|
|
|
return callback(new BadDataError())
|
|
|
|
{source_project_id, source_entity_path} = data
|
|
|
|
AuthorizationManager.canUserReadProject current_user_id, source_project_id, null, (err, canRead) ->
|
|
|
|
return callback(err) if err?
|
|
|
|
callback(null, canRead)
|
|
|
|
|
2018-05-03 09:29:03 -04:00
|
|
|
writeIncomingFileToDisk:
|
|
|
|
(project_id, data, current_user_id, callback = (error, fsPath) ->) ->
|
|
|
|
callback = _.once(callback)
|
2018-05-17 05:51:58 -04:00
|
|
|
if !ProjectFileAgent._validate(data)
|
|
|
|
return callback(new BadDataError())
|
2018-05-03 09:29:03 -04:00
|
|
|
{source_project_id, source_entity_path} = data
|
2018-05-24 06:29:37 -04:00
|
|
|
ProjectLocator.findElementByPath {
|
|
|
|
project_id: source_project_id,
|
|
|
|
path: source_entity_path
|
|
|
|
}, (err, entity, type) ->
|
|
|
|
if err?
|
|
|
|
if err.toString().match(/^not found.*/)
|
|
|
|
err = new SourceFileNotFoundError()
|
|
|
|
return callback(err)
|
|
|
|
ProjectFileAgent._writeEntityToDisk source_project_id, entity._id, type, callback
|
2018-05-03 09:29:03 -04:00
|
|
|
|
|
|
|
_writeEntityToDisk: (project_id, entity_id, type, callback=(err, location)->) ->
|
|
|
|
callback = _.once(callback)
|
|
|
|
if type == 'doc'
|
|
|
|
DocstoreManager.getDoc project_id, entity_id, (err, lines) ->
|
|
|
|
return callback(err) if err?
|
|
|
|
FileWriter.writeLinesToDisk entity_id, lines, callback
|
|
|
|
else if type == 'file'
|
2018-05-03 10:30:44 -04:00
|
|
|
FileStoreHandler.getFileStream project_id, entity_id, null, (err, fileStream) ->
|
2018-05-03 09:29:03 -04:00
|
|
|
return callback(err) if err?
|
|
|
|
FileWriter.writeStreamToDisk entity_id, fileStream, callback
|
|
|
|
else
|
|
|
|
callback(new BadEntityTypeError())
|
|
|
|
|
|
|
|
handleError: (error, req, res, next) ->
|
|
|
|
if error instanceof AccessDeniedError
|
|
|
|
res.status(403).send("You do not have access to this project")
|
2018-05-17 05:51:58 -04:00
|
|
|
else if error instanceof BadDataError
|
|
|
|
res.status(400).send("The submitted data is not valid")
|
2018-05-03 09:29:03 -04:00
|
|
|
else if error instanceof BadEntityTypeError
|
2018-05-21 05:12:41 -04:00
|
|
|
res.status(400).send("The file is the wrong type")
|
2018-05-22 06:36:35 -04:00
|
|
|
else if error instanceof SourceFileNotFoundError
|
|
|
|
res.status(404).send("Source file not found")
|
2018-05-03 09:29:03 -04:00
|
|
|
else
|
|
|
|
next(error)
|
|
|
|
next()
|