Compare commits
No commits in common. '9c1397b46f69eba2b458f5d2f8c42ffc4fcc1f82' and '2fcc9c97f2ef3773fd417e803b7a8ffbe0ab06c8' have entirely different histories.
9c1397b46f
...
2fcc9c97f2
4 changed files with 17 additions and 52 deletions
Before Width: | Height: | Size: 32 KiB |
Binary file not shown.
@ -1,47 +1,16 @@ |
||||
const exec = require('child-process-promise').exec; |
||||
const fsPromises = require('fs').promises; |
||||
const path = require('path') |
||||
|
||||
module.exports = function (docxFile, image) { |
||||
return new Promise((resolve, reject) => { |
||||
let zipName = docxFile.slice(0, -5) + '.zip' |
||||
let filePath = path.join(__dirname + '/../public/files') |
||||
exec('mkdir -p word/media') |
||||
.then(function (result) { |
||||
|
||||
return Promise.all([ |
||||
fsPromises.copyFile(path.join(__dirname + '/../public/images/resized/' + image), |
||||
path.join(__dirname + '/../public/files/word/media/image2.png')), |
||||
|
||||
fsPromises.rename(path.join(__dirname + '/../public/files/' + docxFile), |
||||
path.join(__dirname + '/../public/files/' + zipName)) |
||||
|
||||
]) |
||||
|
||||
}).then((result) => { |
||||
|
||||
return exec(`zip -d ${zipName} ./word/media/image2.png`, { |
||||
cwd: filePath |
||||
}) |
||||
}).then((result) => { |
||||
return exec(`zip -u ${zipName} ./word/media/image2.png`, { |
||||
cwd: filePath |
||||
}) |
||||
}).then((result) => { |
||||
|
||||
return fsPromises.rename(path.join(__dirname + '/../public/files/' + zipName), |
||||
path.join(__dirname + '/../public/files/' + docxFile)) |
||||
}).then(() => { |
||||
resolve(docxFile) |
||||
}) |
||||
|
||||
.catch(function (err) { |
||||
|
||||
reject({ |
||||
eCode: 500, |
||||
eText: err |
||||
}) |
||||
|
||||
}); |
||||
module.exports = function (docxFile, image){ |
||||
return new Promise ((resolve, reject)=>{ |
||||
exec('mkdir word/media') |
||||
.then(function (result) { |
||||
var stdout = result.stdout; |
||||
var stderr = result.stderr; |
||||
console.log('stdout: ', stdout); |
||||
console.log('stderr: ', stderr); |
||||
}) |
||||
} |
||||
.catch(function (err) { |
||||
console.error('ERROR: ', err); |
||||
}); |
||||
} |
||||
)} |
Loading…
Reference in new issue