mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
27 lines
809 B
CoffeeScript
27 lines
809 B
CoffeeScript
child = require "child_process"
|
|
logger = require "logger-sharelatex"
|
|
metrics = require "../../infrastructure/Metrics"
|
|
|
|
module.exports = ArchiveManager =
|
|
extractZipArchive: (source, destination, callback = (err) ->) ->
|
|
timer = new metrics.Timer("unzipDirectory")
|
|
logger.log source: source, destination: destination, "unzipping file"
|
|
|
|
unzip = child.spawn("unzip", [source, "-d", destination])
|
|
|
|
# don't remove this line, some zips need
|
|
# us to listen on this for some unknow reason
|
|
unzip.stdout.on "data", (d)->
|
|
|
|
error = null
|
|
unzip.stderr.on "data", (chunk) ->
|
|
error ||= ""
|
|
error += chunk
|
|
|
|
unzip.on "exit", () ->
|
|
timer.done()
|
|
if error?
|
|
error = new Error(error)
|
|
logger.error err:error, source: source, destination: destination, "error unzipping file"
|
|
callback(error)
|
|
|