search style

v1.18.x
Barış Soner Uşaklı 8 years ago
parent 9ec65db539
commit dcf3db104b

@ -12,9 +12,7 @@ var plugins = require('./plugins');
var privileges = require('./privileges'); var privileges = require('./privileges');
var utils = require('./utils'); var utils = require('./utils');
var search = {}; var search = module.exports;
module.exports = search;
search.search = function (data, callback) { search.search = function (data, callback) {
var start = process.hrtime(); var start = process.hrtime();
@ -42,6 +40,10 @@ search.search = function (data, callback) {
function searchInContent(data, callback) { function searchInContent(data, callback) {
data.uid = data.uid || 0; data.uid = data.uid || 0;
var matchCount = 0;
var pids;
async.waterfall([
function (next) {
async.parallel({ async.parallel({
searchCids: function (next) { searchCids: function (next) {
getSearchCids(data, next); getSearchCids(data, next);
@ -49,48 +51,41 @@ function searchInContent(data, callback) {
searchUids: function (next) { searchUids: function (next) {
getSearchUids(data, next); getSearchUids(data, next);
}, },
}, function (err, results) { }, next);
if (err) { },
return callback(err); function (results, next) {
} function doSearch(type, searchIn, next) {
if (searchIn.indexOf(data.searchIn) !== -1) {
async.parallel({ search.searchQuery(type, data.query, results.searchCids, results.searchUids, next);
pids: function (next) {
if (data.searchIn === 'posts' || data.searchIn === 'titlesposts') {
search.searchQuery('post', data.query, results.searchCids, results.searchUids, next);
} else { } else {
next(null, []); next(null, []);
} }
}
async.parallel({
pids: function (next) {
doSearch('post', ['posts', 'titlesposts'], next);
}, },
tids: function (next) { tids: function (next) {
if (data.searchIn === 'titles' || data.searchIn === 'titlesposts') { doSearch('topic', ['titles', 'titlesposts'], next);
search.searchQuery('topic', data.query, results.searchCids, results.searchUids, next);
} else {
next(null, []);
}
}, },
}, function (err, results) { }, next);
if (err) { },
return callback(err); function (results, next) {
} pids = results.pids;
var matchCount = 0;
if (!results || (!results.pids.length && !results.tids.length)) { if (!results || (!results.pids.length && !results.tids.length)) {
return callback(null, { posts: [], matchCount: matchCount, pageCount: 1 }); return callback(null, { posts: [], matchCount: matchCount, pageCount: 1 });
} }
async.waterfall([
function (next) {
topics.getMainPids(results.tids, next); topics.getMainPids(results.tids, next);
}, },
function (mainPids, next) { function (mainPids, next) {
results.pids = mainPids.concat(results.pids).map(function (pid) { pids = mainPids.concat(pids).map(function (pid) {
return pid && pid.toString(); return pid && pid.toString();
}).filter(function (pid, index, array) { }).filter(function (pid, index, array) {
return pid && array.indexOf(pid) === index; return pid && array.indexOf(pid) === index;
}); });
privileges.posts.filter('read', results.pids, data.uid, next); privileges.posts.filter('read', pids, data.uid, next);
}, },
function (pids, next) { function (pids, next) {
filterAndSort(pids, data, next); filterAndSort(pids, data, next);
@ -108,16 +103,14 @@ function searchInContent(data, callback) {
next(null, { posts: posts, matchCount: matchCount, pageCount: Math.max(1, Math.ceil(parseInt(matchCount, 10) / 10)) }); next(null, { posts: posts, matchCount: matchCount, pageCount: Math.max(1, Math.ceil(parseInt(matchCount, 10) / 10)) });
}, },
], callback); ], callback);
});
});
} }
function filterAndSort(pids, data, callback) { function filterAndSort(pids, data, callback) {
getMatchedPosts(pids, data, function (err, posts) { async.waterfall([
if (err) { function (next) {
return callback(err); getMatchedPosts(pids, data, next);
} },
function (posts, next) {
if (!Array.isArray(posts) || !posts.length) { if (!Array.isArray(posts) || !posts.length) {
return callback(null, pids); return callback(null, pids);
} }
@ -133,8 +126,9 @@ function filterAndSort(pids, data, callback) {
return post && post.pid; return post && post.pid;
}); });
callback(null, pids); next(null, pids);
}); },
], callback);
} }
function getMatchedPosts(pids, data, callback) { function getMatchedPosts(pids, data, callback) {
@ -229,11 +223,7 @@ function getMatchedPosts(pids, data, callback) {
}, },
}, next); }, next);
}, },
], function (err, results) { function (results, next) {
if (err) {
return next(err);
}
topicsData.forEach(function (topic, index) { topicsData.forEach(function (topic, index) {
if (topic && results.categories && results.categories[index]) { if (topic && results.categories && results.categories[index]) {
topic.category = results.categories[index]; topic.category = results.categories[index];
@ -247,7 +237,8 @@ function getMatchedPosts(pids, data, callback) {
}); });
next(null, topicsData); next(null, topicsData);
}); },
], next);
}, },
}, next); }, next);
}, },
@ -383,6 +374,8 @@ function getSearchCids(data, callback) {
return; return;
} }
async.waterfall([
function (next) {
async.parallel({ async.parallel({
watchedCids: function (next) { watchedCids: function (next) {
if (data.categories.indexOf('watched') !== -1) { if (data.categories.indexOf('watched') !== -1) {
@ -398,25 +391,23 @@ function getSearchCids(data, callback) {
next(null, []); next(null, []);
} }
}, },
}, function (err, results) { }, next);
if (err) { },
return callback(err); function (results, next) {
}
var cids = results.watchedCids.concat(results.childrenCids).concat(data.categories).filter(function (cid, index, array) { var cids = results.watchedCids.concat(results.childrenCids).concat(data.categories).filter(function (cid, index, array) {
return cid && array.indexOf(cid) === index; return cid && array.indexOf(cid) === index;
}); });
next(null, cids);
callback(null, cids); },
}); ], callback);
} }
function getChildrenCids(cids, uid, callback) { function getChildrenCids(cids, uid, callback) {
categories.getChildren(cids, uid, function (err, childrenCategories) { async.waterfall([
if (err) { function (next) {
return callback(err); categories.getChildren(cids, uid, next);
} },
function (childrenCategories, next) {
var childrenCids = []; var childrenCids = [];
var allCategories = []; var allCategories = [];
@ -427,8 +418,9 @@ function getChildrenCids(cids, uid, callback) {
})); }));
}); });
callback(null, childrenCids); next(null, childrenCids);
}); },
], callback);
} }
function getSearchUids(data, callback) { function getSearchUids(data, callback) {

Loading…
Cancel
Save