Skip to content

Commit 0af31bc

Browse files
authored
Updated query for retrieving thread parents / children (#163)
refs [AP-579](https://linear.app/ghost/issue/AP-579/investigate-parent-post-visibility-issues-in-replies-to-articles) Updated the query for retrieving thread parents / children so that it takes into account the activity type. This is needed because when we query on the object it is possible for there to be multiple activities with a matching object if the actvity embeds the object (i.e in the case of a `Like` activity). This is important when looking up the immediate parent of an activity (as we only expect there to be 1 parent). Scoping the type of activity should be fine for our use case of "threads" (a list of comments)
1 parent e15fc0f commit 0af31bc

File tree

1 file changed

+34
-25
lines changed

1 file changed

+34
-25
lines changed

src/db.ts

+34-25
Original file line numberDiff line numberDiff line change
@@ -125,18 +125,22 @@ export async function getActivityChildren(activity: ActivityJsonLd) {
125125
const results = await client
126126
.select('value')
127127
.from('key_value')
128-
// If inReplyTo is a string
129-
.where(
130-
client.raw(
131-
`JSON_EXTRACT(value, "$.object.inReplyTo") = "${objectId}"`,
132-
),
133-
)
134-
// If inReplyTo is an object
135-
.orWhere(
136-
client.raw(
137-
`JSON_EXTRACT(value, "$.object.inReplyTo.id") = "${objectId}"`,
138-
),
139-
);
128+
.where(function () {
129+
// If inReplyTo is a string
130+
this.where(
131+
client.raw(
132+
`JSON_EXTRACT(value, "$.object.inReplyTo") = "${objectId}"`,
133+
),
134+
);
135+
136+
// If inReplyTo is an object
137+
this.orWhere(
138+
client.raw(
139+
`JSON_EXTRACT(value, "$.object.inReplyTo.id") = "${objectId}"`,
140+
),
141+
);
142+
})
143+
.andWhere(client.raw(`JSON_EXTRACT(value, "$.type") = "Create"`));
140144

141145
return results.map((result) => result.value);
142146
}
@@ -147,18 +151,22 @@ export async function getActivityChildrenCount(activity: ActivityJsonLd) {
147151
const result = await client
148152
.count('* as count')
149153
.from('key_value')
150-
// If inReplyTo is a string
151-
.where(
152-
client.raw(
153-
`JSON_EXTRACT(value, "$.object.inReplyTo") = "${objectId}"`,
154-
),
155-
)
156-
// If inReplyTo is an object
157-
.orWhere(
158-
client.raw(
159-
`JSON_EXTRACT(value, "$.object.inReplyTo.id") = "${objectId}"`,
160-
),
161-
);
154+
.where(function () {
155+
// If inReplyTo is a string
156+
this.where(
157+
client.raw(
158+
`JSON_EXTRACT(value, "$.object.inReplyTo") = "${objectId}"`,
159+
),
160+
);
161+
162+
// If inReplyTo is an object
163+
this.orWhere(
164+
client.raw(
165+
`JSON_EXTRACT(value, "$.object.inReplyTo.id") = "${objectId}"`,
166+
),
167+
);
168+
})
169+
.andWhere(client.raw(`JSON_EXTRACT(value, "$.type") = "Create"`));
162170

163171
return result[0].count;
164172
}
@@ -174,7 +182,8 @@ export async function getActivityParents(activity: ActivityJsonLd) {
174182
client.raw(
175183
`JSON_EXTRACT(value, "$.object.id") = "${objectId}"`,
176184
),
177-
);
185+
)
186+
.andWhere(client.raw(`JSON_EXTRACT(value, "$.type") = "Create"`));
178187

179188
if (result.length === 1) {
180189
const parent = result[0];

0 commit comments

Comments
 (0)