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.
 
 
 
 
 

99 lines
2.9 KiB

'use strict';
const Posts = require(__dirname+'/../db/posts.js')
, Boards = require(__dirname+'/../db/posts.js')
, quoteRegex = />>\d+/g
, crossQuoteRegex = />>>\/\w+\/\d*$/gm;
module.exports = async (board, text) => {
//get the matches
const quotes = text.match(quoteRegex);
const crossQuotes = text.match(crossQuoteRegex);
if (!quotes && !crossQuotes) {
return text;
}
//make query for db including crossquotes
const queryOrs = []
const crossQuoteMap = {};
if (quotes) {
const quoteIds = quotes.map(q => +q.substring(2));
queryOrs.push({
'board': board,
'postId': {
'$in': quoteIds
}
});
}
if (crossQuotes) {
for (let i = 0; i < crossQuotes.length; i++) {
const crossQuote = crossQuotes[i].split('/');
const crossQuoteBoard = crossQuote[1];
const crossQuotePostId = +crossQuote[2];
if (crossQuoteBoard === board) {
continue;
}
if (!crossQuoteMap[crossQuoteBoard]) {
crossQuoteMap[crossQuoteBoard] = [];
}
crossQuoteMap[crossQuoteBoard].push(crossQuotePostId);
}
const crossQuoteBoards = Object.keys(crossQuoteMap)
for (let i = 0; i < crossQuoteBoards.length; i++) {
const crossQuoteBoard = crossQuoteBoards[i];
const crossQuoteBoardPostIds = crossQuoteMap[crossQuoteBoard];
queryOrs.push({
'board': crossQuoteBoard,
'postId': {
'$in': crossQuoteBoardPostIds
}
})
}
}
//get all the posts from quotes
const postThreadIdMap = {};
if (queryOrs.length > 0) {
const posts = await Posts.getPostsForQuotes(queryOrs);
//if none of the quotes were real, dont do a replace
if (posts.length === 0) {
return text;
}
//turn the result into a map of postId => threadId/postId
for (let i = 0; i < posts.length; i++) {
const post = posts[i];
if (!postThreadIdMap[post.board]) {
postThreadIdMap[post.board] = {};
}
postThreadIdMap[post.board][post.postId] = post.thread || post.postId;
}
}
//then replace the quotes with only ones that exist
if (quotes && Object.keys(postThreadIdMap).length > 0) {
text = text.replace(quoteRegex, (match) => {
const quotenum = +match.substring(2);
if (postThreadIdMap[board] && postThreadIdMap[board][quotenum]) {
return `<a class='quote' href='/${board}/thread/${postThreadIdMap[board][quotenum]}.html#${quotenum}'>&gt;&gt;${quotenum}</a>`;
}
return match;
});
}
if (crossQuotes) {
text = text.replace(crossQuoteRegex, (match) => {
const quote = match.split('/');
const quoteboard = quote[1];
const quotenum = +quote[2];
if (postThreadIdMap[quoteboard] && postThreadIdMap[quoteboard][quotenum]) {
return `<a class='quote' href='/${quoteboard}/thread/${postThreadIdMap[quoteboard][quotenum]}.html#${quotenum}'>&gt;&gt;&gt;/${quoteboard}/${quotenum}</a>`;
} else if (!quote[2]) {
return `<a class='quote' href='/${quoteboard}/index.html'>&gt;&gt;&gt;/${quoteboard}/</a>`;
}
return match;
});
}
return text;
}