jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

47 lines
1.1 KiB

'use strict';
const { remove } = require('fs-extra')
, uploadDirectory = require(__dirname+'/../../helpers/files/uploadDirectory.js')
module.exports = async (posts, unlinkOnly) => {
//get filenames from all the posts
let fileNames = [];
for (let i = 0; i < posts.length; i++) {
const post = posts[i];
if (post.files.length > 0) {
fileNames = fileNames.concat(post.files.map(x => x.filename));
}
}
if (fileNames.length == 0) {
return {
message: 'No files found'
};
}
if (unlinkOnly) {
//TODO: decrement ref counters here when implemented
return {
message:`Unlinked ${fileNames.length} file(s) across ${posts.length} post(s)`,
action:'$set',
query: {
'files': []
}
};
} else {
//TODO: delete ref counters for this file here
//delete all the files using the filenames
await Promise.all(fileNames.map(async filename => {
//dont question it.
return Promise.all([
remove(`${uploadDirectory}img/${filename}`),
remove(`${uploadDirectory}img/thumb-${filename.split('.')[0]}.jpg`)
])
}));
return {
message:`Deleted ${fileNames.length} file(s) from server`,
};
}
}