New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wm => AP: allow posts to be deleted #30
Comments
|
right! bridgy fed users would trigger a delete by sending a webmention with a source URL that 410s: https://indieweb.org/deleted |
|
aha, didn't know that was a valid response too .. :) |
|
It looks like it could be implemented by checking for a 410 source response in https://github.com/snarfed/bridgy-fed/blob/main/webmention.py#L43 and short-circuiting to sending deletion activities rather than looking for a h-entry and converting it to AS, after checking in the datastore to make sure that the thing we’re deleting is something we published in the first place. |
|
^ started on this, but it's not quite easy. We store inboxes for every original post we deliver, but not responses (replies, likes, etc), and it takes work and extra requests to distinguish them. |
|
In progress code is in the |
|
Finally implemented this! |
Sometimes you might want to delete a post/reply. This is how a minimal delete activity looks like
I posted to the shared inbox of mastodon.social in this case. Most of my test replies from yesterday are deleted now.
Not sure how to we'd tell bridgy that though since it works with sending webmentions.
The text was updated successfully, but these errors were encountered: