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.
 
 
 
 
 

137 lines
2.4 KiB

'use strict';
const Mongo = require(__dirname+'/../helpers/db.js')
, Boards = require(__dirname+'/boards.js')
, db = Mongo.client.db('posts');
module.exports = {
db,
//TODO: IMPLEMENT PAGINATION
getRecent: async (board, page) => {
// get all thread posts (posts with null thread id)
const threads = await db.collection(board).find({
'thread': null
}).sort({
'bumped': -1
}).limit(10).toArray();
// add posts to all threads in parallel
await Promise.all(threads.map(async thread => {
const replies = await db.collection(board).find({
'thread': thread._id
}).sort({
'_id': -1
}).limit(3).toArray();
thread.replies = replies.reverse();
}));
return threads;
},
getThread: async (board, id) => {
// get thread post and potential replies concurrently
const data = await Promise.all([
db.collection(board).findOne({
'_id': id
}),
module.exports.getThreadPosts(board, id)
])
// attach the replies to the thread post
const thread = data[0];
if (thread) {
thread.replies = data[1];
}
return thread;
},
getThreadPosts: async(board, id) => {
// all posts within a thread
return db.collection(board).find({
'thread': id
}).sort({
'_id': 1
}).toArray();
},
getCatalog: async (board) => {
// get all threads for catalog
return db.collection(board).find({
'thread': null
}).toArray();
},
getPost: async (board, id) => {
// get a post
return db.collection(board).findOne({
'_id': id
});
},
//takes array "ids" of post ids
getPosts: async(board, ids) => {
return db.collection(board).find({
'_id': {
'$in': ids
}
}).toArray();
},
insertOne: async (board, data) => {
// bump thread if name not sage
if (data.thread !== null && data.author !== 'sage') {
await db.collection(board).updateOne({
'_id': data.thread
}, {
'$set': {
'bumped': Date.now()
}
})
}
data._id = await Boards.getNextId(board);
//this is a thread, so set the bump date so its pushed to the top
if (data.thread == null) {
data.bumped = Date.now()
}
return db.collection(board).insertOne(data);
},
deleteOne: async (board, options) => {
return db.collection(board).deleteOne(options);
},
deleteMany: async (board, ids) => {
return db.collection(board).deleteMany({
'_id': {
'$in': ids
}
});
},
deleteAll: async (board) => {
return db.collection(board).deleteMany({});
},
}