Files
NodeBB/src/categories/update.js

98 lines
3.4 KiB
JavaScript
Raw Normal View History

2014-02-28 15:25:50 -05:00
'use strict';
const async = require('async');
2016-12-09 18:53:08 +03:00
const db = require('../database');
const meta = require('../meta');
const utils = require('../utils');
const translator = require('../translator');
const plugins = require('../plugins');
const cache = require('../cache');
2013-05-24 11:18:41 -04:00
module.exports = function (Categories) {
2019-07-16 00:41:42 -04:00
Categories.update = async function (modified) {
const cids = Object.keys(modified);
2019-07-16 00:41:42 -04:00
await Promise.all(cids.map(cid => updateCategory(cid, modified[cid])));
return cids;
2015-09-28 16:09:33 -04:00
};
2015-01-18 14:31:37 -05:00
2019-07-16 00:41:42 -04:00
async function updateCategory(cid, modifiedFields) {
const exists = await Categories.exists(cid);
if (!exists) {
return;
}
2015-07-05 08:31:21 +03:00
2019-07-16 00:41:42 -04:00
if (modifiedFields.hasOwnProperty('name')) {
const translated = await translator.translate(modifiedFields.name);
modifiedFields.slug = cid + '/' + utils.slugify(translated);
}
const result = await plugins.fireHook('filter:category.update', { cid: cid, category: modifiedFields });
2015-09-28 16:09:33 -04:00
2019-07-16 00:41:42 -04:00
const category = result.category;
var fields = Object.keys(category);
// move parent to front, so its updated first
var parentCidIndex = fields.indexOf('parentCid');
if (parentCidIndex !== -1 && fields.length > 1) {
fields.splice(0, 0, fields.splice(parentCidIndex, 1)[0]);
}
await async.eachSeries(fields, async function (key) {
await updateCategoryField(cid, key, category[key]);
});
plugins.fireHook('action:category.update', { cid: cid, modified: category });
2015-09-28 16:09:33 -04:00
}
2013-05-24 11:18:41 -04:00
2019-07-16 00:41:42 -04:00
async function updateCategoryField(cid, key, value) {
if (key === 'parentCid') {
2019-07-16 00:41:42 -04:00
return await updateParent(cid, value);
2016-12-09 18:53:08 +03:00
} else if (key === 'tagWhitelist') {
2019-07-16 00:41:42 -04:00
return await updateTagWhitelist(cid, value);
}
await db.setObjectField('category:' + cid, key, value);
if (key === 'order') {
await updateOrder(cid, value);
} else if (key === 'description') {
await Categories.parseDescription(cid, value);
}
}
2019-07-16 00:41:42 -04:00
async function updateParent(cid, newParent) {
newParent = parseInt(newParent, 10) || 0;
if (parseInt(cid, 10) === newParent) {
throw new Error('[[error:cant-set-self-as-parent]]');
2015-09-15 12:58:19 -04:00
}
2019-07-16 00:41:42 -04:00
const childrenCids = await Categories.getChildrenCids(cid);
if (childrenCids.includes(newParent)) {
throw new Error('[[error:cant-set-child-as-parent]]');
}
const oldParent = await Categories.getCategoryField(cid, 'parentCid');
await Promise.all([
db.sortedSetRemove('cid:' + oldParent + ':children', cid),
db.sortedSetAdd('cid:' + newParent + ':children', cid, cid),
db.setObjectField('category:' + cid, 'parentCid', newParent),
]);
2019-07-16 00:41:42 -04:00
cache.del(['cid:' + oldParent + ':children', 'cid:' + newParent + ':children']);
}
2016-12-09 18:53:08 +03:00
2019-07-16 00:41:42 -04:00
async function updateTagWhitelist(cid, tags) {
tags = tags.split(',').map(tag => utils.cleanUpTag(tag, meta.config.maximumTagLength))
.filter(Boolean);
await db.delete('cid:' + cid + ':tag:whitelist');
const scores = tags.map((tag, index) => index);
await db.sortedSetAdd('cid:' + cid + ':tag:whitelist', scores, tags);
cache.del('cid:' + cid + ':tag:whitelist');
2016-12-09 18:53:08 +03:00
}
2019-07-16 00:41:42 -04:00
async function updateOrder(cid, order) {
const parentCid = await Categories.getCategoryField(cid, 'parentCid');
await db.sortedSetsAdd(['categories:cid', 'cid:' + parentCid + ':children'], order, cid);
cache.del(['categories:cid', 'cid:' + parentCid + ':children']);
}
2019-07-16 00:41:42 -04:00
Categories.parseDescription = async function (cid, description) {
const parsedDescription = await plugins.fireHook('filter:parse.raw', description);
await Categories.setCategoryField(cid, 'descriptionParsed', parsedDescription);
2016-03-15 15:38:16 +02:00
};
2014-04-10 20:31:57 +01:00
};