mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
28 lines
1.3 KiB
CoffeeScript
28 lines
1.3 KiB
CoffeeScript
path = require "path"
|
|
rimraf = require "rimraf"
|
|
ArchiveManager = require "./ArchiveManager"
|
|
FileSystemImportManager = require "./FileSystemImportManager"
|
|
ProjectCreationHandler = require "../Project/ProjectCreationHandler"
|
|
ProjectRootDocManager = require "../Project/ProjectRootDocManager"
|
|
|
|
module.exports = ProjectUploadHandler =
|
|
createProjectFromZipArchive: (owner_id, name, zipPath, callback = (error, project) ->) ->
|
|
ProjectCreationHandler.createBlankProject owner_id, name, (error, project) =>
|
|
return callback(error) if error?
|
|
@insertZipArchiveIntoFolder project._id, project.rootFolder[0]._id, zipPath, (error) ->
|
|
return callback(error) if error?
|
|
ProjectRootDocManager.setRootDocAutomatically project._id, (error) ->
|
|
return callback(error) if error?
|
|
callback(error, project)
|
|
|
|
insertZipArchiveIntoFolder: (project_id, folder_id, path, callback = (error) ->) ->
|
|
destination = @_getDestinationDirectory path
|
|
ArchiveManager.extractZipArchive path, destination, (error) ->
|
|
return callback(error) if error?
|
|
FileSystemImportManager.addFolderContents project_id, folder_id, destination, false, (error) ->
|
|
return callback(error) if error?
|
|
rimraf(destination, callback)
|
|
|
|
_getDestinationDirectory: (source) ->
|
|
return path.join(path.dirname(source), "#{path.basename(source, ".zip")}-#{Date.now()}")
|
|
|