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.
 
 
 
 
 

68 lines
1.5 KiB

'use strict';
process
.on('uncaughtException', console.error)
.on('unhandledRejection', console.error);
const msTime = require(__dirname+'/helpers/mstime.js')
, deleteCaptchas = require(__dirname+'/helpers/captcha/deletecaptchas.js')
, Mongo = require(__dirname+'/db/db.js')
, Mutex = require(__dirname+'/mutex.js')
, buildQueue = require(__dirname+'/queue.js');
(async () => {
await Mongo.connect();
await Mutex.connect();
const Files = require(__dirname+'/db/files.js');
console.log('Starting schedules');
// setInterval(async () => {
buildQueue.push({
'task': 'buildHomepage',
'options': {}
})
// }, msTime.minute*5); //rebuild homepage for pph updates
setInterval(async () => {
try {
await deleteCaptchas();
} catch (e) {
console.error(e);
}
}, msTime.minute*5); //delete files for expired captchas
setInterval(async () => {
try {
//todo: make this not a race condition, but it only happens daily so ¯\_(ツ)_/¯
const files = await Files.db.aggregate({
'count': {
'$lte': 1
}
}, {
'projection': {
'count': 0,
'size': 0
}
}).toArray().then(res => {
return res.map(x => x._id);
});
await Files.db.removeMany({
'count': {
'$lte': 0
}
});
await Promise.all(files.map(async filename => {
return Promise.all([
remove(`${uploadDirectory}img/${filename}`),
remove(`${uploadDirectory}img/thumb-${filename.split('.')[0]}.jpg`)
])
}));
console.log('Deleted unused files:', files);
} catch (e) {
console.error(e);
}
}, msTime.day);
})();