Skip to content

Commit 701c3aa

Browse files
committed
refactor: fix isCommentValid
1 parent 061a334 commit 701c3aa

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

dist/lib/utils/utils.js

+9-10
Original file line numberDiff line numberDiff line change
@@ -282,22 +282,21 @@ const replyIsValid = (reply, plebbit, blockSubplebbit) => __awaiter(void 0, void
282282
log(`subplebbit '${reply.subplebbitAddress}' had an invalid reply, invalidate all its future replies to avoid wasting resources`);
283283
return false;
284284
}
285-
const cid = reply.parentCid || reply.cid;
286-
if (!replyIsValidComments[cid]) {
287-
replyIsValidComments[cid] = yield plebbit.createComment({
288-
subplebbitAddress: reply.subplebbitAddress,
289-
postCid: reply.postCid,
290-
cid,
291-
depth: reply.depth,
292-
});
285+
const subplebbitAddress = reply.subplebbitAddress;
286+
const postCid = reply.postCid;
287+
const cid = reply.parentCid;
288+
const depth = reply.depth - 1;
289+
const cacheKey = subplebbitAddress + postCid + cid + depth;
290+
if (!replyIsValidComments[cacheKey]) {
291+
replyIsValidComments[cacheKey] = yield plebbit.createComment({ subplebbitAddress, postCid, cid, depth });
293292
}
294293
try {
295-
yield replyIsValidComments[cid].replies.validatePage({ comments: [reply] });
294+
yield replyIsValidComments[cacheKey].replies.validatePage({ comments: [reply] });
296295
return true;
297296
}
298297
catch (e) {
299298
if (blockSubplebbit) {
300-
subplebbitsWithInvalidReplies[reply.cid] = true;
299+
subplebbitsWithInvalidReplies[subplebbitAddress] = true;
301300
}
302301
log('invalid reply', { reply, error: e });
303302
}

src/lib/utils/utils.ts

+11-10
Original file line numberDiff line numberDiff line change
@@ -296,21 +296,22 @@ const replyIsValid = async (reply: Comment, plebbit: any, blockSubplebbit: boole
296296
log(`subplebbit '${reply.subplebbitAddress}' had an invalid reply, invalidate all its future replies to avoid wasting resources`)
297297
return false
298298
}
299-
const cid = reply.parentCid || reply.cid
300-
if (!replyIsValidComments[cid]) {
301-
replyIsValidComments[cid] = await plebbit.createComment({
302-
subplebbitAddress: reply.subplebbitAddress,
303-
postCid: reply.postCid,
304-
cid,
305-
depth: reply.depth,
306-
})
299+
300+
const subplebbitAddress = reply.subplebbitAddress
301+
const postCid = reply.postCid
302+
const cid = reply.parentCid
303+
const depth = reply.depth - 1
304+
const cacheKey = subplebbitAddress + postCid + cid + depth
305+
306+
if (!replyIsValidComments[cacheKey]) {
307+
replyIsValidComments[cacheKey] = await plebbit.createComment({subplebbitAddress, postCid, cid, depth})
307308
}
308309
try {
309-
await replyIsValidComments[cid].replies.validatePage({comments: [reply]})
310+
await replyIsValidComments[cacheKey].replies.validatePage({comments: [reply]})
310311
return true
311312
} catch (e) {
312313
if (blockSubplebbit) {
313-
subplebbitsWithInvalidReplies[reply.cid] = true
314+
subplebbitsWithInvalidReplies[subplebbitAddress] = true
314315
}
315316
log('invalid reply', {reply, error: e})
316317
}

0 commit comments

Comments
 (0)