Closed ThisIsMissEm closed 2 months ago
In issue triage today, we considered some options for this process.
Flag
activity. This is pretty unusual, since the implied authorization model of AP is that only the actor can update something they create.Delete
or Update
or Block
or ..., those activities have a metadata property referring to the Flag
activity, like inReplyTo
or context
, or a new property.Accept
, which has the Flag
activity as its object, and the actions that were perfomed as the result
. This would need some care, especially if multiple activities are performed over time in response to the same Flag
.An important part of this is content
-- giving some notice to reporter why their report was or wasn't acted upon.
Any work in here will need to take into account user safety. We wouldn't want to expose the reporter's identity without their consent.
I think this work is really interesting, but probably isn't directly implied by the Activity Vocabulary definitions. I think a FEP is probably the next best step.
I've documented more of the user experience concerns in https://github.com/mastodon/mastodon/issues/31083
Closing as I think this can be moved to the ActivityPub Trust & Safety Taskforce within SWICG.
Please Indicate One:
Please Describe the Issue:
Currently when content is reported on ActivityPub servers, this generates a Flag activity being sent to the other servers, in practice with Mastodon this looks like:
However, we currently lack a way to represent the report itself in ActivityStreams, so
https://social.example/reports/123
cannot be requested and get back some representation of the report.This then means that we don't really have a mechanism to allow
other.social
to notifysocial.example
that they've resolved the report that gets created on their server (since it's a copy), we can't send an Update, because we don't have an Object to update as far as I can tell?We can't do Accept/Reject for the same reason.
Unless it's possible for us to do something like:
This means that we currently seem to lack a way to allow a server that has received a Flag activity to notify the reporting server that the Flag has been resolved, which leaves people wondering if their reports have actually been recieved or actioned by remote users.
I suspect this needs a FEP.