af5c4481b6
fix: extract initiate_actor_move use case — remove event publish from handler
2026-05-28 02:41:42 +02:00
5e3db44043
fix(tests): update federation_management tests for EventPublisher arg
2026-05-28 02:34:30 +02:00
915163aac4
feat: split accept/reject into DB+event; broadcast_move via event in API
2026-05-28 02:32:50 +02:00
a06d09c101
feat(worker): add FederationManagementHandler and wire into event loop
2026-05-28 02:30:22 +02:00
0dce4fbe64
feat(application): add FederationManagementEventService
2026-05-28 02:28:15 +02:00
9c93baaa39
fix(bootstrap,worker): pass shared federation_repo to ApFederationAdapter
2026-05-28 02:26:57 +02:00
a253efacec
feat(activitypub): add federation_repo field and thin DB-only methods to ApFederationAdapter
2026-05-28 02:24:43 +02:00
04f39e35c2
feat(domain): add mark_follower_accepted/rejected thin port methods
2026-05-28 02:22:52 +02:00
2060317867
fix(event-payload): correct NATS subjects for federation events
2026-05-28 02:20:43 +02:00
e338254099
feat(domain): add RemoteFollowAccepted, RemoteFollowRejected, ActorMoved events
2026-05-28 02:19:46 +02:00
84c66dd461
feat: add alsoKnownAs field to federation settings
2026-05-28 02:01:56 +02:00
2445cad1c9
feat: add PATCH /federation/me/also-known-as endpoint
...
Adds alsoKnownAs column to users table (migration 013), reads it in
the AP actor JSON, and exposes PATCH /federation/me/also-known-as to
set or clear it. Required pre-condition for broadcast_move.
2026-05-28 01:59:35 +02:00
fc290dc18f
fix: update user URL handling in ThoughtsObjectHandler to use user_id
2026-05-28 01:51:55 +02:00
43e5175db5
fix: add broadcast_move stub to TestStore
2026-05-28 01:50:37 +02:00
50a90efbce
feat: add POST /federation/me/move endpoint
2026-05-28 01:47:29 +02:00
ff75361eb1
feat: bump k-ap to v0.1.9 and implement migrate_follower_actor
2026-05-28 01:43:06 +02:00
5ca5ad9561
feat: update k-ap dependency to v0.1.8 and enhance middleware for ActivityPub requests
2026-05-28 01:08:45 +02:00
f6893b19dc
feat: update dependencies to k-ap v0.1.7 and add profileHref utility for user links
2026-05-27 23:38:14 +02:00
6f65742284
feat: add /about/fediverse info page with glass accordion panels
2026-05-27 23:38:14 +02:00
904dd5f1a0
feat: add Fediverse nav link
2026-05-27 23:38:14 +02:00
0164b03e5c
feat: add copy handle button and fediverse info link to profile
2026-05-27 23:38:14 +02:00
0797dde39c
fix: handle clipboard errors and cleanup timeout in CopyButton
2026-05-27 23:38:14 +02:00
7d2d597264
feat: add CopyButton client component
2026-05-27 23:38:14 +02:00
fe4960d30d
docs: replace activitypub-base with k-ap in architecture overview
...
Reflects the migration from the local activitypub-base crate to the
external k-ap library, with an accurate description of what it provides.
2026-05-25 00:57:29 +02:00
5097c91261
feat: store AP note extensions in JSONB and render movies-diary posts as rich cards
2026-05-24 04:29:04 +02:00
f4932af2ba
feat: custom CSS editor with CodeMirror, live preview, and /docs/css reference
2026-05-24 03:26:34 +02:00
fccc4064cf
fix(federation): include header_url as AP banner (image) in actor JSON
2026-05-24 02:18:41 +02:00
01932cf337
feat: add image upload for avatar and banner
2026-05-24 02:06:47 +02:00
1874954ad7
fix: resolve thoughts compile errors after k-ap migration
2026-05-17 23:02:49 +02:00
f12cc7e2a7
chore: move ap_ports into activitypub adapter, delete activitypub-base
2026-05-17 22:48:22 +02:00
6936b7ce62
chore: switch activitypub-base to k-ap git dep
2026-05-17 22:47:32 +02:00
d56d34cc27
refactor: replace long arg lists with input/config structs and builder
...
- Thought::new_local → NewThought struct (7 args → 1)
- UserWriter::update_profile → UpdateProfileInput struct (6 args → 2)
- update_profile use case → UpdateProfileInput (8 args → 3)
- ActivityPubService::new → builder pattern (9 args → 5 required + 4 optional setters)
- accept_note → AcceptNoteInput struct (8 args → 1)
- ThoughtNote::new_public → ThoughtNoteInput struct (8 args → 1)
Remove all #[allow(clippy::too_many_arguments)] annotations.
2026-05-17 12:25:53 +02:00
2f5c89c381
clean up
2026-05-17 12:15:27 +02:00
2c2decba72
clean up
2026-05-17 12:14:45 +02:00
2d1044e5c3
chore: add pre-commit fmt+clippy hooks, fix clippy warnings
2026-05-17 12:09:24 +02:00
d813e59b5c
fmt
2026-05-17 12:04:51 +02:00
54910c6459
fix: make ThoughtNote sensitive field optional (default false)
2026-05-17 12:02:58 +02:00
be0924d463
fix: promote worker event logs from debug to info
2026-05-17 12:02:13 +02:00
2c34eb44e4
fix: make ThoughtNote url field optional for AP compat
2026-05-17 11:57:10 +02:00
7dcdbb4551
feat: implement verify() for all stub activity handlers
...
Undo: inner activity actor must match Undo actor
Announce/Like/Block: verify_domains_match(activity_id, actor_url)
Add: attributedTo must match actor (same as Create/Update)
2026-05-17 11:55:17 +02:00
bb48819cad
feat: implement federation post/connections backfill schedulers
...
schedule_actor_posts_fetch now spawns backfill_outbox in background,
fetching all pages of a remote outbox and persisting via accept_note.
schedule_connections_fetch follows AP collection next-links, resolves
profiles, and caches them in the DB. Both were no-ops ("deferred").
Add connections_repo field to ActivityPubService; wire both factories.
2026-05-17 11:49:53 +02:00
39f7d39232
feat: load more pagination for user profile thoughts
2026-05-16 15:21:18 +02:00
4a84c595d5
fix: route local users to /users/{username} in remote connection lists
2026-05-16 15:17:58 +02:00
f89a466fd9
feat: load more pagination for remote user posts
2026-05-16 15:14:53 +02:00
c180b1c1f5
fix: overflow-y scroll on html to prevent layout shift on dropdown open
2026-05-16 15:12:41 +02:00
a85cb2eee5
fix: break-all on fediverse handle to prevent overflow
2026-05-16 15:07:30 +02:00
7e2c5adffd
fix: scrollbar-gutter stable to prevent bg flicker on dropdown open
2026-05-16 15:05:28 +02:00
82778c82dd
fix: wrap background image in fixed div so it stays put on scroll
2026-05-16 15:03:41 +02:00
b02f3c73e3
feat: Frutiger Aero redesign — glass panels, Aero shimmer, interaction moments
2026-05-16 14:55:51 +02:00
a0aa3f381e
refactor: extract inline test modules to separate files
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
2026-05-16 12:08:38 +02:00