summaryrefslogtreecommitdiff
path: root/internal/federation/federatingdb/create.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2024-01-31 13:29:47 +0000
committerLibravatar GitHub <noreply@github.com>2024-01-31 13:29:47 +0000
commit0f7a2024c37f045796dbf39eca284ad2f4858cb5 (patch)
tree2dc12a60e08a53f64d2bd4da2c88d8ed81d12766 /internal/federation/federatingdb/create.go
parentupdate go-structr v0.2.0 => v0.3.0 to fix possible hash collision issues (#2586) (diff)
downloadgotosocial-0f7a2024c37f045796dbf39eca284ad2f4858cb5.tar.xz
[bugfix] parent status replied to status not dereferenced sometimes (#2587)
* much simplified DereferenceStatusAncestors(), also handles edge cases now * perform status acceptibility check before handling even as forward * don't further dereference ancestors if they're up to date * call enrichStatusSafely() directly to ensure we get error messages * change getStatusByURI() semantics to return error + old model on failed update, fix deref ancestor to check for staleness before refetch * perform a nil-check on the status.Local variable, in case it hasn't been set on new status attempting refresh * more consistently set returned parent status, don't check if updated * only home-timeline statuses if explicitly visible AND not explicitly invisible! * fix broken test now that status acceptibility checks happen on forwarded statuses
Diffstat (limited to 'internal/federation/federatingdb/create.go')
-rw-r--r--internal/federation/federatingdb/create.go55
1 files changed, 28 insertions, 27 deletions
diff --git a/internal/federation/federatingdb/create.go b/internal/federation/federatingdb/create.go
index 3a8d8f0ac..1008e5f7f 100644
--- a/internal/federation/federatingdb/create.go
+++ b/internal/federation/federatingdb/create.go
@@ -303,27 +303,9 @@ func (f *federatingDB) createStatusable(
statusable ap.Statusable,
forwarded bool,
) error {
- // If we do have a forward, we should ignore the content
- // and instead deref based on the URI of the statusable.
- //
- // In other words, don't automatically trust whoever sent
- // this status to us, but fetch the authentic article from
- // the server it originated from.
- if forwarded {
- // Pass the statusable URI (APIri) into the processor
- // worker and do the rest of the processing asynchronously.
- f.state.Workers.EnqueueFediAPI(ctx, messages.FromFediAPI{
- APObjectType: ap.ObjectNote,
- APActivityType: ap.ActivityCreate,
- APIri: ap.GetJSONLDId(statusable),
- APObjectModel: nil,
- GTSModel: nil,
- ReceivingAccount: receiver,
- })
- return nil
- }
- // Check whether we should accept this new status.
+ // Check whether we should accept this new status,
+ // we do this BEFORE even handling forwards to us.
accept, err := f.shouldAcceptStatusable(ctx,
receiver,
requester,
@@ -343,6 +325,27 @@ func (f *federatingDB) createStatusable(
return nil
}
+ // If we do have a forward, we should ignore the content
+ // and instead deref based on the URI of the statusable.
+ //
+ // In other words, don't automatically trust whoever sent
+ // this status to us, but fetch the authentic article from
+ // the server it originated from.
+ if forwarded {
+
+ // Pass the statusable URI (APIri) into the processor
+ // worker and do the rest of the processing asynchronously.
+ f.state.Workers.EnqueueFediAPI(ctx, messages.FromFediAPI{
+ APObjectType: ap.ObjectNote,
+ APActivityType: ap.ActivityCreate,
+ APIri: ap.GetJSONLDId(statusable),
+ APObjectModel: nil,
+ GTSModel: nil,
+ ReceivingAccount: receiver,
+ })
+ return nil
+ }
+
// Do the rest of the processing asynchronously. The processor
// will handle inserting/updating + further dereferencing the status.
f.state.Workers.EnqueueFediAPI(ctx, messages.FromFediAPI{
@@ -371,13 +374,11 @@ func (f *federatingDB) shouldAcceptStatusable(ctx context.Context, receiver *gts
name := mention.NameString
switch {
- case accURI != "":
- if accURI == receiver.URI ||
- accURI == receiver.URL {
- // Mention target is receiver,
- // they are mentioned in status.
- return true, nil
- }
+ case accURI != "" &&
+ accURI == receiver.URI || accURI == receiver.URL:
+ // Mention target is receiver,
+ // they are mentioned in status.
+ return true, nil
case accURI == "" && name != "":
// Only a name was provided, extract the user@domain parts.