2018-05-12 14:01:14 +00:00
|
|
|
const fs = require('fs')
|
|
|
|
const path = require('path')
|
|
|
|
const utils = require('./../controllers/utilsController')
|
|
|
|
|
|
|
|
const thumbs = {
|
|
|
|
mode: null,
|
|
|
|
force: null
|
|
|
|
}
|
|
|
|
|
|
|
|
thumbs.mayGenerateThumb = extname => {
|
|
|
|
return ([1, 3].includes(thumbs.mode) && utils.imageExtensions.includes(extname)) ||
|
|
|
|
([2, 3].includes(thumbs.mode) && utils.videoExtensions.includes(extname))
|
|
|
|
}
|
|
|
|
|
|
|
|
thumbs.getFiles = directory => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
fs.readdir(directory, async (error, names) => {
|
2018-12-18 17:41:42 +00:00
|
|
|
if (error) return reject(error)
|
2018-05-12 14:01:14 +00:00
|
|
|
const files = []
|
|
|
|
await Promise.all(names.map(name => {
|
|
|
|
return new Promise((resolve, reject) => {
|
2018-09-04 17:29:53 +00:00
|
|
|
fs.lstat(path.join(directory, name), (error, stats) => {
|
2018-12-18 17:41:42 +00:00
|
|
|
if (error) return reject(error)
|
|
|
|
if (stats.isFile() && !name.startsWith('.')) files.push(name)
|
2018-05-12 14:01:14 +00:00
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}))
|
|
|
|
resolve(files)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
thumbs.do = async () => {
|
|
|
|
const args = process.argv.slice(2)
|
|
|
|
|
|
|
|
thumbs.mode = parseInt(args[0])
|
|
|
|
thumbs.force = parseInt(args[1])
|
2018-09-04 17:02:24 +00:00
|
|
|
thumbs.verbose = parseInt(args[2])
|
2018-05-12 14:01:14 +00:00
|
|
|
if ((isNaN(thumbs.mode) || ![1, 2, 3].includes(thumbs.mode)) ||
|
|
|
|
(!isNaN(thumbs.force) && ![0, 1].includes(thumbs.force))) {
|
2018-09-04 17:02:24 +00:00
|
|
|
console.log('Usage :\nyarn thumbs <mode=1|2|3> [force=0|1] [verbose=0|1]\n')
|
|
|
|
console.log('mode : 1 = images only, 2 = videos only, 3 = both images and videos')
|
|
|
|
console.log('force : 0 = no force (default), 1 = overwrite existing thumbnails')
|
|
|
|
console.log('verbose: 0 = only print missing thumbs (default), 1 = print all')
|
2018-05-12 14:01:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const uploadsDir = path.join(__dirname, '..', 'uploads')
|
|
|
|
const thumbsDir = path.join(uploadsDir, 'thumbs')
|
|
|
|
const _uploads = await thumbs.getFiles(uploadsDir)
|
|
|
|
|
|
|
|
let _thumbs = await thumbs.getFiles(thumbsDir)
|
|
|
|
_thumbs = _thumbs.map(_thumb => {
|
|
|
|
const extname = path.extname(_thumb)
|
|
|
|
return _thumb.slice(0, -extname.length)
|
|
|
|
})
|
|
|
|
|
2018-09-04 17:29:53 +00:00
|
|
|
let success = 0
|
|
|
|
let error = 0
|
|
|
|
let skipped = 0
|
2018-05-12 14:01:14 +00:00
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
const generate = async i => {
|
|
|
|
const _upload = _uploads[i]
|
2018-12-18 17:41:42 +00:00
|
|
|
if (!_upload) return resolve()
|
2018-05-12 14:01:14 +00:00
|
|
|
|
|
|
|
const extname = path.extname(_upload)
|
|
|
|
const basename = _upload.slice(0, -extname.length)
|
|
|
|
|
|
|
|
if (_thumbs.includes(basename) && !thumbs.force) {
|
2018-12-18 17:41:42 +00:00
|
|
|
if (thumbs.verbose) console.log(`${_upload}: thumb exists.`)
|
2018-09-04 17:29:53 +00:00
|
|
|
skipped++
|
2018-05-12 14:01:14 +00:00
|
|
|
} else if (!thumbs.mayGenerateThumb(extname)) {
|
2018-12-18 17:41:42 +00:00
|
|
|
if (thumbs.verbose) console.log(`${_upload}: extension skipped.`)
|
2018-09-04 17:29:53 +00:00
|
|
|
skipped++
|
2018-05-12 14:01:14 +00:00
|
|
|
} else {
|
|
|
|
const generated = await utils.generateThumbs(_upload, thumbs.force)
|
2018-09-04 17:29:53 +00:00
|
|
|
console.log(`${_upload}: ${generated ? 'OK' : 'ERROR'}`)
|
|
|
|
generated ? success++ : error++
|
2018-05-12 14:01:14 +00:00
|
|
|
}
|
2018-09-04 17:29:53 +00:00
|
|
|
return generate(i + 1)
|
2018-05-12 14:01:14 +00:00
|
|
|
}
|
2018-09-04 17:29:53 +00:00
|
|
|
return generate(0)
|
2018-05-12 14:01:14 +00:00
|
|
|
})
|
2018-09-04 17:29:53 +00:00
|
|
|
console.log(`Success: ${success}\nError: ${error}\nSkipped: ${skipped}`)
|
2018-05-12 14:01:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
thumbs.do()
|