gotosocial/internal/processing/admin
kim 87cff71af9
[feature] persist worker queues to db (#3042)
* persist queued worker tasks to database on shutdown, fill worker queues from database on startup

* ensure the tasks are sorted by creation time before pushing them

* add migration to insert WorkerTask{} into database, add test for worker task persistence

* add test for recovering worker queues from database

* quick tweak

* whoops we ended up with double cleaner job scheduling

* insert each task separately, because bun is throwing some reflection error??

* add specific checking of cancelled worker contexts

* add http request signing to deliveries recovered from database

* add test for outgoing public key ID being correctly set on delivery

* replace select with Queue.PopCtx()

* get rid of loop now we don't use it

* remove field now we don't use it

* ensure that signing func is set

* header values weren't being copied over 🤦

* use ptr for httpclient.Request in delivery

* move worker queue filling to later in server init process

* fix rebase issues

* make logging less shouty

* use slices.Delete() instead of copying / reslicing

* have database return tasks in ascending order instead of sorting them

* add a 1 minute timeout to persisting worker queues
2024-07-30 13:58:31 +02:00
..
account_test.go [feature] Store admin actions in the db, prevent conflicting actions (#2167) 2023-09-04 14:55:17 +01:00
accountaction.go [performance] update remaining worker pools to use queues (#2865) 2024-04-26 13:50:46 +01:00
accountget.go [feature] Admin accounts endpoints; approve/reject sign-ups (#2826) 2024-04-13 13:25:10 +02:00
accounts.go [feature] Page through accounts as moderator (#2881) 2024-05-01 14:11:22 +01:00
actions.go [performance] update remaining worker pools to use queues (#2865) 2024-04-26 13:50:46 +01:00
actions_test.go [feature] Store admin actions in the db, prevent conflicting actions (#2167) 2023-09-04 14:55:17 +01:00
admin.go [chore] media and emoji refactoring (#3000) 2024-06-26 16:01:16 +01:00
admin_test.go [chore] Add interaction filter to complement existing visibility filter (#3111) 2024-07-24 12:27:42 +01:00
debug_apurl.go [chore] media and emoji refactoring (#3000) 2024-06-26 16:01:16 +01:00
domainallow.go [feature] Implement explicit domain allows + allowlist federation mode (#2200) 2023-09-21 12:12:04 +02:00
domainblock.go [performance] update remaining worker pools to use queues (#2865) 2024-04-26 13:50:46 +01:00
domainkeysexpire.go [chore/security] refactor AuthenticateFederatedRequest() to handle account deref + suspension checks (#2371) 2023-11-21 11:35:30 +01:00
domainpermission.go [chore] deinterface the typeutils.Converter and update to use state structure (#2217) 2023-09-23 18:44:11 +02:00
domainpermission_test.go [bugfix] Don't return Account or Status if new and dereferencing failed, other small fixes (#2563) 2024-01-26 14:17:10 +01:00
email.go [chore] media and emoji refactoring (#3000) 2024-06-26 16:01:16 +01:00
emoji.go [chore] media pipeline improvements (#3110) 2024-07-17 15:26:33 +00:00
emoji_test.go [bugfix] Fix Postgres emoji delete, emoji category change (#2570) 2024-01-29 14:57:22 +00:00
headerfilter.go [feature] request blocking by http headers (#2409) 2023-12-18 14:18:25 +00:00
media.go [feature] support processing of (many) more media types (#3090) 2024-07-12 09:39:47 +00:00
report.go [feature/frontend] Reports frontend v2 (#3022) 2024-06-18 18:18:00 +02:00
rule.go [chore] deinterface the typeutils.Converter and update to use state structure (#2217) 2023-09-23 18:44:11 +02:00
signupapprove.go [feature] Self-serve email change for users (#2957) 2024-06-06 14:43:25 +01:00
signupapprove_test.go [feature] Self-serve email change for users (#2957) 2024-06-06 14:43:25 +01:00
signupreject.go [feature] Self-serve email change for users (#2957) 2024-06-06 14:43:25 +01:00
signupreject_test.go [feature] Self-serve email change for users (#2957) 2024-06-06 14:43:25 +01:00
util.go [feature] Implement explicit domain allows + allowlist federation mode (#2200) 2023-09-21 12:12:04 +02:00
workertask.go [feature] persist worker queues to db (#3042) 2024-07-30 13:58:31 +02:00
workertask_test.go [feature] persist worker queues to db (#3042) 2024-07-30 13:58:31 +02:00