Skip to content

Commit

Permalink
fix: #8469, action:topic.changeOwner, action:post.changeOwner
Browse files Browse the repository at this point in the history
  • Loading branch information
barisusakli committed Jul 6, 2020
1 parent 87dd6c8 commit b60e1cb
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions src/posts/user.js
Expand Up @@ -127,9 +127,11 @@ module.exports = function (Posts) {
if (!exists) {
throw new Error('[[error:no-user]]');
}
const postData = await Posts.getPostsFields(pids, ['pid', 'tid', 'uid', 'timestamp', 'upvotes', 'downvotes']);
pids = postData.filter(p => p.pid && p.uid !== parseInt(toUid, 10))
.map(p => p.pid);
let postData = await Posts.getPostsFields(pids, [
'pid', 'tid', 'uid', 'content', 'deleted', 'timestamp', 'upvotes', 'downvotes',
]);
postData = postData.filter(p => p.pid && p.uid !== parseInt(toUid, 10));
pids = postData.map(p => p.pid);

const cids = await Posts.getCidsByPids(pids);

Expand Down Expand Up @@ -163,6 +165,11 @@ module.exports = function (Posts) {
reduceCounters(postsByUser),
updateTopicPosters(postData, toUid),
]);

plugins.fireHook('action:post.changeOwner', {
posts: _.cloneDeep(postData),
toUid: toUid,
});
return postData;
};

Expand All @@ -189,7 +196,9 @@ module.exports = function (Posts) {

async function handleMainPidOwnerChange(postData, toUid) {
const tids = _.uniq(postData.map(p => p.tid));
const topicData = await topics.getTopicsFields(tids, ['mainPid', 'timestamp']);
const topicData = await topics.getTopicsFields(tids, [
'tid', 'cid', 'deleted', 'title', 'uid', 'mainPid', 'timestamp',
]);
const tidToTopic = _.zipObject(tids, topicData);

const mainPosts = postData.filter(p => p.pid === tidToTopic[p.tid].mainPid);
Expand Down Expand Up @@ -217,6 +226,12 @@ module.exports = function (Posts) {
user.incrementUserFieldBy(toUid, 'topiccount', mainPosts.length),
reduceTopicCounts(postsByUser),
]);

const changedTopics = mainPosts.map(p => tidToTopic[p.tid]);
plugins.fireHook('action:topic.changeOwner', {
topics: _.cloneDeep(changedTopics),
toUid: toUid,
});
}

async function reduceTopicCounts(postsByUser) {
Expand Down

0 comments on commit b60e1cb

Please sign in to comment.