'use strict'; const path = require('path') , util = require('util') , fs = require('fs') , unlink = util.promisify(fs.unlink) , uploadDirectory = require(__dirname+'/../../helpers/uploadDirectory.js') , Mongo = require(__dirname+'/../../db/db.js') , Posts = require(__dirname+'/../../db/posts.js'); module.exports = async (req, res, next, posts) => { //filter to threads, then get the board and thread for each const boardThreads = posts.filter(x => x.thread == null).map(x => { return { board: x.board, thread: x.postId }; }); //get posts from all threads let threadPosts = [] await Promise.all(boardThreads.map(async data => { const currentThreadPosts = await Posts.getThreadPosts(data.board, data.thread); threadPosts = threadPosts.concat(currentThreadPosts); return; })) //combine them all into one array const allPosts = posts.concat(threadPosts) //delete posts from DB const postMongoIds = allPosts.map(post => Mongo.ObjectId(post._id)) const deletedPosts = await Posts.deleteMany(postMongoIds).then(result => result.deletedCount); //get filenames from all the posts let fileNames = []; allPosts.forEach(post => { fileNames = fileNames.concat(post.files.map(x => x.filename)) }) //delete all the files using the filenames await Promise.all(fileNames.map(async filename => { //dont question it. return Promise.all([ unlink(uploadDirectory + filename), unlink(`${uploadDirectory}thumb-${filename.split('.')[0]}.png`) ]) })); //hooray! return { message:`Deleted ${boardThreads.length} threads and ${deletedPosts-boardThreads.length} posts` }; }