summaryrefslogtreecommitdiffstats
path: root/server/src/apub/shared_inbox.rs
AgeCommit message (Collapse)Author
2020-07-13Make reads from activitypub objects immutableFelix Ableitner
2020-07-10Split code into cargo workspaces (#67)nutomic
More fixes - fixed docker builds - fixed mentions regex test - fixed DATABASE_URL stuff - change schema path in diesel.toml Address review comments - add jsonb column back into activity table - remove authors field from cargo.toml - adjust LEMMY_DATABASE_URL env var usage - rename all occurences of LEMMY_DATABASE_URL to DATABASE_URL Decouple utils and db Split code into cargo workspaces Co-authored-by: Felix Ableitner <me@nutomic.com> Reviewed-on: https://yerbamate.dev/LemmyNet/lemmy/pulls/67
2020-07-08Migrate user and group to new activitystreams libraryFelix Ableitner
2020-07-01Federation async (#848)Riley
* Asyncify more * I guess these changed * Clean PR a bit * Convert more away from failure error * config changes for testing federation * It was DNS So actix-web's client relies on TRust DNS Resolver to figure out where to send data, but TRust DNS Resolver seems to not play nice with docker, which expressed itself as not resolving the name to an IP address _the first time_ when making a request. The fix was literally to make the request again (which I limited to 3 times total, and not exceeding the request timeout in total) * Only retry for connecterror Since TRust DNS Resolver was causing ConnectError::Timeout, this change limits the retry to only this error, returning immediately for any other error * Use http sig norm 0.4.0-alpha for actix-web 3.0 support * Blocking function, retry http requests * cargo +nightly fmt * Only create one pictrs dir * Don't yarn build * cargo +nightly fmt
2020-06-11Parse out in reply to field. Fixes #694 (#799)Dessalines
- When a comment or post doesn't exist locally, yet we receive an activitypub with it (for example, a nested comment update, for a community we just subscribed to, also with a post we don't have...), then fetch it.
2020-06-03Adding additional 3-instance integration test for community announce.Dessalines
2020-06-01address review commentsFelix Ableitner
2020-05-30fix comment notificationsFelix Ableitner
2020-05-30get it working (mostly)Felix Ableitner
2020-05-30more fixesFelix Ableitner
2020-05-28get some more things workingFelix Ableitner
2020-05-28get it working (mostly)Felix
2020-05-28move logic to sharedinboxFelix
2020-05-16Merge branch 'yerba_rework-imports' into federationDessalines
2020-05-16Rework importsFelix
2020-05-15Federated mentions. Fixes #681 (#717)Dessalines
* Federated mentions. Fixes #681 * Changing some todos, adding comments.
2020-05-14Use ActorType for sign/verify, instead of passing raw privatekey/actor_idFelix
2020-05-14Add helper function for Activity::create()Felix
2020-05-05Federate nsfw/locked info for postsFelix
2020-05-03Add federated comment and post undo like.Dessalines
2020-05-03Adding federated mod remove actions.Dessalines
2020-05-01Add undos for delete community, post, and comment.Dessalines
2020-05-01Adding federated community, comment, and post deletes.Dessalines
- Unit tests added too. - No undeletes working yet.
2020-04-30update activitystreams libFelix
2020-04-29wip: add former_type to tombstoneFelix
2020-04-29Address comments, implement delete for posts and commentsFelix
2020-04-28Implement deleting communitiesFelix
2020-04-28Adding federated post and comment likes.Dessalines
2020-04-27Merge branch 'shared_inbox_1' into add_federated_post_likesDessalines
2020-04-27Adding a better switching for activity kinds for the shared inbox.Dessalines
2020-04-27Adding activity table inserts.Dessalines
2020-04-27Lots of additions to federation.Dessalines
- Added a shared inbox. - Added federated comments, comment updates, and tests. - Abstracted ap object sends into a common trait.
2020-04-26Making a trait function for follow and accept.Dessalines