Added debug mode

This commit is contained in:
dbroqua 2019-03-12 23:00:37 +01:00
parent 43a5234ab3
commit 1406f4645b
2 changed files with 10 additions and 3 deletions

View File

@ -19,6 +19,7 @@ class Resize {
_resize (input, output, callback) {
fs.readFile(input, (err, data) => {
console.log('après readfile')
if (err) {
callback(err, null)
return false
@ -26,7 +27,9 @@ class Resize {
resizeImg(data, this.size)
.then(buf => {
console.log('then rezise')
fs.writeFile(output, buf, (err) => {
console.log('write file')
if (err) {
callback(err, null)
return false

View File

@ -117,7 +117,7 @@ class Pictures {
console.log(e)
callback(e, null)
})
fs.unlink(req.file.path, () => {})
fs.unlink(req.file.path, () => { })
}
createOne (req, callback) {
@ -163,9 +163,12 @@ class Pictures {
url: res.file
}
fs.unlink(large.output, () => {})
fs.unlink(large.output, () => { })
console.log('avant thumb')
resize.createThumbnail(req.file.path, (err, file) => {
console.log('après createThumb')
if (err) {
callback(err, null)
return false
@ -175,10 +178,11 @@ class Pictures {
path: file.output,
filename: `picture_${req.params.vegetablesId}_${key}_thumb.${req.file.originalname.split('.')[req.file.originalname.split('.').length - 1]}`
}, (err, res) => {
console.log('après upload')
if (err) { callback(err, null) }
this._createOne(req, callback)
fs.unlink(file.output, () => {})
fs.unlink(file.output, () => { })
})
})
})