Files
NodeBB/src/categories/index.js

375 lines
11 KiB
JavaScript
Raw Normal View History

2014-03-01 16:59:04 -05:00
'use strict';
2019-09-11 18:09:39 -04:00
const _ = require('lodash');
2014-11-08 23:54:21 -05:00
2019-09-11 18:09:39 -04:00
const db = require('../database');
const user = require('../user');
const groups = require('../groups');
const plugins = require('../plugins');
const privileges = require('../privileges');
const cache = require('../cache');
2019-09-11 18:09:39 -04:00
const Categories = module.exports;
2017-05-26 16:56:26 -04:00
2018-10-23 15:03:32 -04:00
require('./data')(Categories);
require('./create')(Categories);
require('./delete')(Categories);
require('./topics')(Categories);
require('./unread')(Categories);
require('./activeusers')(Categories);
require('./recentreplies')(Categories);
require('./update')(Categories);
require('./watch')(Categories);
2017-05-26 16:56:26 -04:00
2019-07-16 00:41:42 -04:00
Categories.exists = async function (cid) {
if (Array.isArray(cid)) {
return await db.exists(cid.map(cid => 'category:' + cid));
}
2019-07-16 00:41:42 -04:00
return await db.exists('category:' + cid);
2017-05-26 16:56:26 -04:00
};
2019-07-16 00:41:42 -04:00
Categories.getCategoryById = async function (data) {
const categories = await Categories.getCategories([data.cid], data.uid);
if (!categories[0]) {
return null;
}
const category = categories[0];
data.category = category;
const promises = [
Categories.getCategoryTopics(data),
Categories.getTopicCount(data),
Categories.getWatchState([data.cid], data.uid),
getChildrenTree(category, data.uid),
];
if (category.parentCid) {
promises.push(Categories.getCategoryData(category.parentCid));
}
const [topics, topicCount, watchState, , parent] = await Promise.all(promises);
category.topics = topics.topics;
category.nextStart = topics.nextStart;
category.topic_count = topicCount;
category.isWatched = watchState[0] === Categories.watchStates.watching;
category.isNotWatched = watchState[0] === Categories.watchStates.notwatching;
category.isIgnored = watchState[0] === Categories.watchStates.ignoring;
category.parent = parent;
calculateTopicPostCount(category);
const result = await plugins.fireHook('filter:category.get', { category: category, uid: data.uid });
return result.category;
2017-05-26 16:56:26 -04:00
};
2019-07-16 00:41:42 -04:00
Categories.getAllCidsFromSet = async function (key) {
let cids = cache.get(key);
if (cids) {
2019-07-16 00:41:42 -04:00
return cids.slice();
}
2019-07-16 00:41:42 -04:00
cids = await db.getSortedSetRange(key, 0, -1);
cache.set(key, cids);
return cids.slice();
};
2019-07-16 00:41:42 -04:00
Categories.getAllCategories = async function (uid) {
const cids = await Categories.getAllCidsFromSet('categories:cid');
return await Categories.getCategories(cids, uid);
2017-05-26 16:56:26 -04:00
};
2019-07-16 00:41:42 -04:00
Categories.getCidsByPrivilege = async function (set, uid, privilege) {
const cids = await Categories.getAllCidsFromSet(set);
2019-07-16 00:41:42 -04:00
return await privileges.categories.filterCids(privilege, cids, uid);
};
2019-07-16 00:41:42 -04:00
Categories.getCategoriesByPrivilege = async function (set, uid, privilege) {
const cids = await Categories.getCidsByPrivilege(set, uid, privilege);
return await Categories.getCategories(cids, uid);
2017-05-26 16:56:26 -04:00
};
2019-07-16 00:41:42 -04:00
Categories.getModerators = async function (cid) {
const uids = await Categories.getModeratorUids([cid]);
return await user.getUsersFields(uids[0], ['uid', 'username', 'userslug', 'picture']);
2019-01-04 13:27:31 -05:00
};
2019-07-16 00:41:42 -04:00
Categories.getModeratorUids = async function (cids) {
const groupNames = cids.reduce(function (memo, cid) {
memo.push('cid:' + cid + ':privileges:moderate');
memo.push('cid:' + cid + ':privileges:groups:moderate');
return memo;
}, []);
const memberSets = await groups.getMembersOfGroups(groupNames);
// Every other set is actually a list of user groups, not uids, so convert those to members
const sets = memberSets.reduce(function (memo, set, idx) {
if (idx % 2) {
memo.groupNames.push(set);
} else {
memo.uids.push(set);
}
2019-01-04 13:27:31 -05:00
2019-07-16 00:41:42 -04:00
return memo;
}, { groupNames: [], uids: [] });
2019-01-04 13:27:31 -05:00
2019-07-16 00:41:42 -04:00
const uniqGroups = _.uniq(_.flatten(sets.groupNames));
const groupUids = await groups.getMembersOfGroups(uniqGroups);
const map = _.zipObject(uniqGroups, groupUids);
2019-09-28 14:37:50 -04:00
const moderatorUids = cids.map((cid, index) => _.uniq(sets.uids[index].concat(_.flatten(sets.groupNames[index].map(g => map[g])))));
2019-07-16 00:41:42 -04:00
return moderatorUids;
2017-05-26 16:56:26 -04:00
};
2013-07-03 12:59:45 -04:00
2019-07-16 00:41:42 -04:00
Categories.getCategories = async function (cids, uid) {
2017-05-26 16:56:26 -04:00
if (!Array.isArray(cids)) {
2019-07-16 00:41:42 -04:00
throw new Error('[[error:invalid-cid]]');
2017-05-26 16:56:26 -04:00
}
2017-05-26 16:56:26 -04:00
if (!cids.length) {
2019-07-16 00:41:42 -04:00
return [];
2017-05-26 16:56:26 -04:00
}
uid = parseInt(uid, 10);
2019-07-16 00:41:42 -04:00
const [categories, tagWhitelist, hasRead] = await Promise.all([
Categories.getCategoriesData(cids),
Categories.getTagWhitelist(cids),
Categories.hasReadCategories(cids, uid),
]);
categories.forEach(function (category, i) {
if (category) {
category.tagWhitelist = tagWhitelist[i];
category['unread-class'] = (category.topic_count === 0 || (hasRead[i] && uid !== 0)) ? '' : 'unread';
}
});
return categories;
2017-05-26 16:56:26 -04:00
};
2019-07-16 00:41:42 -04:00
Categories.getTagWhitelist = async function (cids) {
2018-12-09 16:03:41 -05:00
const cachedData = {};
const nonCachedCids = cids.filter((cid) => {
2018-12-09 16:03:41 -05:00
const data = cache.get('cid:' + cid + ':tag:whitelist');
const isInCache = data !== undefined;
if (isInCache) {
cachedData[cid] = data;
}
return !isInCache;
});
if (!nonCachedCids.length) {
2019-07-16 00:41:42 -04:00
return _.clone(cids.map(cid => cachedData[cid]));
2018-12-09 16:03:41 -05:00
}
const keys = nonCachedCids.map(cid => 'cid:' + cid + ':tag:whitelist');
2019-07-16 00:41:42 -04:00
const data = await db.getSortedSetsMembers(keys);
nonCachedCids.forEach((cid, index) => {
cachedData[cid] = data[index];
cache.set('cid:' + cid + ':tag:whitelist', data[index]);
2018-12-09 16:03:41 -05:00
});
2019-07-16 00:41:42 -04:00
return _.clone(cids.map(cid => cachedData[cid]));
2017-05-26 16:56:26 -04:00
};
function calculateTopicPostCount(category) {
if (!category) {
return;
}
2018-10-23 22:28:37 -04:00
var postCount = category.post_count;
var topicCount = category.topic_count;
2017-05-26 16:56:26 -04:00
if (!Array.isArray(category.children) || !category.children.length) {
2015-05-17 15:53:42 -04:00
category.totalPostCount = postCount;
category.totalTopicCount = topicCount;
2017-05-26 16:56:26 -04:00
return;
2015-04-19 15:18:55 -04:00
}
2017-05-26 16:56:26 -04:00
category.children.forEach(function (child) {
calculateTopicPostCount(child);
postCount += parseInt(child.totalPostCount, 10) || 0;
topicCount += parseInt(child.totalTopicCount, 10) || 0;
});
category.totalPostCount = postCount;
category.totalTopicCount = topicCount;
}
2019-07-16 00:41:42 -04:00
Categories.getParents = async function (cids) {
const categoriesData = await Categories.getCategoriesFields(cids, ['parentCid']);
const parentCids = categoriesData.filter(c => c && c.parentCid).map(c => c.parentCid);
if (!parentCids.length) {
return cids.map(() => null);
}
const parentData = await Categories.getCategoriesData(parentCids);
const cidToParent = _.zipObject(parentCids, parentData);
return categoriesData.map(category => cidToParent[category.parentCid]);
2017-05-26 16:56:26 -04:00
};
2019-07-16 00:41:42 -04:00
Categories.getChildren = async function (cids, uid) {
const categoryData = await Categories.getCategoriesFields(cids, ['parentCid']);
const categories = categoryData.map((category, index) => ({ cid: cids[index], parentCid: category.parentCid }));
await Promise.all(categories.map(c => getChildrenTree(c, uid)));
return categories.map(c => c && c.children);
2017-05-26 16:56:26 -04:00
};
2019-07-16 00:41:42 -04:00
async function getChildrenTree(category, uid) {
let childrenCids = await Categories.getChildrenCids(category.cid);
childrenCids = await privileges.categories.filterCids('find', childrenCids, uid);
childrenCids = childrenCids.filter(cid => parseInt(category.cid, 10) !== parseInt(cid, 10));
if (!childrenCids.length) {
category.children = [];
return;
}
let childrenData = await Categories.getCategoriesData(childrenCids);
childrenData = childrenData.filter(Boolean);
childrenCids = childrenData.map(child => child.cid);
const hasRead = await Categories.hasReadCategories(childrenCids, uid);
childrenData.forEach(function (child, i) {
child['unread-class'] = (child.topic_count === 0 || (hasRead[i] && uid !== 0)) ? '' : 'unread';
});
Categories.getTree([category].concat(childrenData), category.parentCid);
2017-05-26 16:56:26 -04:00
}
2019-07-16 00:41:42 -04:00
Categories.getChildrenCids = async function (rootCid) {
let allCids = [];
2019-07-16 00:41:42 -04:00
async function recursive(keys) {
let childrenCids = await db.getSortedSetRange(keys, 0, -1);
childrenCids = childrenCids.filter(cid => !allCids.includes(parseInt(cid, 10)));
if (!childrenCids.length) {
return;
}
keys = childrenCids.map(cid => 'cid:' + cid + ':children');
childrenCids.forEach(cid => allCids.push(parseInt(cid, 10)));
recursive(keys);
}
const key = 'cid:' + rootCid + ':children';
const childrenCids = cache.get(key);
if (childrenCids) {
2019-07-16 00:41:42 -04:00
return childrenCids.slice();
}
2018-11-06 13:35:55 -05:00
2019-07-16 00:41:42 -04:00
await recursive(key);
allCids = _.uniq(allCids);
cache.set(key, allCids);
return allCids.slice();
2018-11-06 13:35:55 -05:00
};
2017-05-26 16:56:26 -04:00
Categories.flattenCategories = function (allCategories, categoryData) {
categoryData.forEach(function (category) {
if (category) {
allCategories.push(category);
2015-05-30 18:44:31 +03:00
2017-05-26 16:56:26 -04:00
if (Array.isArray(category.children) && category.children.length) {
Categories.flattenCategories(allCategories, category.children);
}
}
2017-05-26 16:56:26 -04:00
});
};
/**
2018-11-27 11:01:46 -05:00
* build tree from flat list of categories
2017-05-26 16:56:26 -04:00
*
* @param categories {array} flat list of categories
* @param parentCid {number} start from 0 to build full tree
*/
Categories.getTree = function (categories, parentCid) {
2018-11-27 11:01:46 -05:00
parentCid = parentCid || 0;
2018-11-29 07:55:56 -05:00
const cids = categories.map(category => category && category.cid);
2018-11-27 11:01:46 -05:00
const cidToCategory = {};
const parents = {};
cids.forEach((cid, index) => {
2018-11-29 07:55:56 -05:00
if (cid) {
categories[index].children = undefined;
2018-11-29 07:55:56 -05:00
cidToCategory[cid] = categories[index];
parents[cid] = _.clone(categories[index]);
}
2018-11-27 11:01:46 -05:00
});
2018-11-27 11:01:46 -05:00
const tree = [];
2015-05-30 18:44:31 +03:00
2018-11-27 11:01:46 -05:00
categories.forEach(function (category) {
if (category) {
category.children = category.children || [];
if (!category.cid) {
return;
}
if (!category.hasOwnProperty('parentCid') || category.parentCid === null) {
category.parentCid = 0;
}
if (category.parentCid === parentCid) {
tree.push(category);
category.parent = parents[parentCid];
} else {
const parent = cidToCategory[category.parentCid];
if (parent && parent.cid !== category.cid) {
category.parent = parents[category.parentCid];
parent.children = parent.children || [];
parent.children.push(category);
}
}
2018-11-27 11:01:46 -05:00
}
});
function sortTree(tree) {
tree.sort((a, b) => a.order - b.order);
2018-11-27 11:01:46 -05:00
if (tree.children) {
sortTree(tree.children);
}
}
2018-11-27 11:01:46 -05:00
sortTree(tree);
2015-05-30 18:44:31 +03:00
categories.forEach(c => calculateTopicPostCount(c));
2017-05-26 16:56:26 -04:00
return tree;
};
2016-09-16 14:20:07 +03:00
2019-09-20 22:10:08 -04:00
Categories.buildForSelect = async function (uid, privilege, fields) {
const cids = await Categories.getCidsByPrivilege('categories:cid', uid, privilege);
return await getSelectData(cids, fields);
2017-05-30 14:10:12 -04:00
};
2019-09-20 22:10:08 -04:00
Categories.buildForSelectAll = async function (fields) {
const cids = await Categories.getAllCidsFromSet('categories:cid');
return await getSelectData(cids, fields);
};
2019-09-20 22:10:08 -04:00
async function getSelectData(cids, fields) {
const categoryData = await Categories.getCategoriesData(cids);
const tree = Categories.getTree(categoryData);
return Categories.buildForSelectCategories(tree, fields);
}
Categories.buildForSelectCategories = function (categories, fields) {
2018-01-05 14:44:18 -05:00
function recursive(category, categoriesData, level, depth) {
const bullet = level ? '• ' : '';
2017-05-26 16:56:26 -04:00
category.value = category.cid;
2017-05-30 17:21:30 -04:00
category.level = level;
2017-05-26 16:56:26 -04:00
category.text = level + bullet + category.name;
2018-01-05 14:44:18 -05:00
category.depth = depth;
2017-05-26 16:56:26 -04:00
categoriesData.push(category);
if (Array.isArray(category.children)) {
category.children.forEach(child => recursive(child, categoriesData, '    ' + level, depth + 1));
}
2017-05-26 16:56:26 -04:00
}
2016-09-16 14:20:07 +03:00
const categoriesData = [];
2016-09-16 14:20:07 +03:00
2019-09-20 22:10:08 -04:00
const rootCategories = categories.filter(category => category && !category.parentCid);
rootCategories.forEach(category => recursive(category, categoriesData, '', 0));
2017-05-30 14:10:12 -04:00
2019-09-20 19:04:47 -04:00
const pickFields = [
2019-09-20 22:10:08 -04:00
'cid', 'name', 'level', 'icon', 'parentCid',
'color', 'bgColor', 'backgroundImage', 'imageClass',
2019-09-20 19:04:47 -04:00
];
2019-09-20 22:10:08 -04:00
fields = fields || [];
if (fields.includes('text') && fields.includes('value')) {
return categoriesData.map(category => _.pick(category, fields));
}
if (fields.length) {
pickFields.push(...fields);
}
2019-09-20 19:04:47 -04:00
return categoriesData.map(category => _.pick(category, pickFields));
2017-05-26 16:56:26 -04:00
};
2018-10-23 15:03:32 -04:00
Categories.async = require('../promisify')(Categories);