Commit graph

1242 commits

Author SHA1 Message Date
silverpill 5676d53cbb Disable reposts and reactions if post is not public 2022-01-15 15:25:37 +00:00
silverpill eed648f140 Don't send direct messages to followers 2022-01-15 14:53:42 +00:00
silverpill 572ea53827 Add IPFS node guide 2022-01-15 11:57:44 +00:00
silverpill cd8791c881 Add profile URL field to Account type 2022-01-15 00:18:17 +00:00
silverpill f1f3829b8d Enable pagination for notification list 2022-01-14 22:02:22 +00:00
silverpill aea6db5acb Try to find actor by href when parsing mention tags 2022-01-14 00:16:54 +00:00
silverpill 34ca9059b3 Fix object_id unwrap error in favourite() API method 2022-01-13 21:31:04 +00:00
silverpill 1d089d4b35 Add "Created at" attribute to IPFS representation of a post 2022-01-11 19:46:26 +00:00
silverpill 1de82674aa Move PostMetadata type to ipfs::posts module 2022-01-11 18:16:19 +00:00
silverpill 82508e103c Update /{account_id}/statuses method to return 404 if profile doesn't exist 2022-01-11 16:58:40 +00:00
silverpill b8e87f13ac Fix visibility filter 2022-01-09 12:23:15 +00:00
silverpill 19f0a4bed6 Ensure visibility settings are not violated when creating a reply to non-public post 2022-01-09 12:10:20 +00:00
silverpill de37f606e3 Skip Note attachments with type other than Document 2022-01-08 21:23:21 +00:00
silverpill d4ab05ce1f Treat all notes that aren't public-addressed as direct messages 2022-01-08 19:24:23 +00:00
silverpill f0d021853a Refactor timeline and thread queries
Added tests for home timeline query.
2022-01-08 14:56:38 +00:00
silverpill f8bb82d6cb Set correct primary and secondary audience for direct messages 2022-01-07 22:28:34 +00:00
silverpill 3ff4c79f0d Add macro for building SQL queries 2022-01-07 22:12:31 +00:00
silverpill 5bdee5585a Allow to set visibility of new posts 2022-01-07 22:12:21 +00:00
silverpill bce194ebda Show direct messages in timelines and threads 2022-01-07 20:44:36 +00:00
silverpill 810e67f88e Refactor create_account view 2022-01-06 19:26:14 +00:00
silverpill ba52cf0be1 Check view permission when reposting a post 2022-01-06 19:26:14 +00:00
silverpill 2d2ec704a2 Refactor can_view_post() into async function 2022-01-06 19:25:20 +00:00
silverpill 011951c129 Set up tests for database queries 2022-01-06 14:31:29 +00:00
silverpill 040934da2d Don't create database conn pool when running mitractl 2022-01-06 11:28:07 +00:00
silverpill 81d60656e6 Set correct primary audience for Update(Person) activities 2022-01-04 21:55:35 +00:00
silverpill de1760230a Set primary audience of Delete(Note) activities to Public 2022-01-04 21:55:29 +00:00
silverpill 3e5f5b80d3 Set correct primary and secondary audience for outgoing Announce(Note) and Undo(Announce) activities 2022-01-04 21:36:52 +00:00
silverpill 7a373831fe Set correct primary and secondary audience for outgoing Create(Note) activities 2022-01-04 21:01:45 +00:00
silverpill c7ee5d94ce Write signer ID to log if actor ID and signer ID do not match 2022-01-04 14:42:03 +00:00
silverpill 5dc07c3742 Verify object ID when processing Update(Person) activity 2022-01-03 23:45:18 +00:00
silverpill d045df4232 Verify post/reaction author when processing Delete() and Undo() activities
Activity sender and the author must be the same.
2022-01-03 23:38:31 +00:00
silverpill adb5a6c651 Verify follow request target when processing Accept(Follow)
Activity sender and the target must be the same.
2022-01-03 23:22:52 +00:00
silverpill d4964878f2 Return error if actor and request signer do not match 2022-01-03 19:34:01 +00:00
silverpill 6d331f7669 Allow calling follow/unfollow API methods multiple times
For compatibility with Mastodon.
2022-01-03 18:37:07 +00:00
silverpill d46165f397 Process Follow() activity even if relationship already exists 2022-01-02 23:50:37 +00:00
silverpill 3993c76c65 Add API methods for retrieving followers and following lists 2022-01-02 22:06:25 +00:00
silverpill 40958500c1 Add ID column to relationship table 2022-01-02 15:52:20 +00:00
silverpill c11cd26961 Move get_followers to relationships::queries module 2022-01-02 13:42:10 +00:00
silverpill e2b5147502 Make profile search case-insensitive 2022-01-02 12:50:17 +00:00
silverpill 9156dec5bb Convert actor_json value into Actor type when reading from database 2022-01-02 01:27:50 +00:00
silverpill 97d798eeed Create helper functions for getting recipients of Create, Like and Announce activities 2022-01-01 12:07:36 +00:00
silverpill 94aad001f8 Add in_reply_to field to Post struct
create_note refactored to accept Post without additional in_reply_to argument.
2021-12-31 19:44:17 +00:00
silverpill a9a99d7172 Update actor JSON object in database when receiving Update(Person) activity 2021-12-31 19:43:11 +00:00
silverpill 5b0a9ff931 Enable strict HTTP signature verification in inbox 2021-12-31 19:43:05 +00:00
silverpill 452894c224 Ignore Delete(Note) if post is not found in database 2021-12-30 14:45:31 +00:00
silverpill b2f341445b Skip signature verification when processing Delete(Person) activities 2021-12-29 20:54:36 +00:00
silverpill 580ba6dfba Make actor and object endpoints compatible with Mastodon fetcher 2021-12-29 18:36:50 +00:00
silverpill f9fca604a9 Make media_type property on Attachment type optional 2021-12-29 15:07:19 +00:00
silverpill e71bb9585a Refactor utils::files module 2021-12-29 14:34:23 +00:00
silverpill 38ed905f47 Use profile importer in verify_http_signature function 2021-12-28 20:54:21 +00:00