activityserve/TODO

57 lines
2.4 KiB
Plaintext
Raw Normal View History

2019-09-13 19:28:11 +02:00
[✔] Follow users
[✔] Announcements
2019-09-13 19:28:11 +02:00
[✔] Federate the post to our followers (hardcoded for now)
[✔] Handle more than one local actors
[✔] Handle the /actor endpoint
[✔] Create configuration file
[✔] Implement database backend
2019-09-10 10:21:39 +02:00
[✔] Create a file with the actors we have, their following
and their followers.
2019-09-10 10:21:39 +02:00
[✔] `MakeActor` should create a file with that actor.
[✔] Implement `LoadActor`
2019-09-13 19:28:11 +02:00
[✔] `actor.Follow` should write the new following to file
2019-09-10 10:21:39 +02:00
[✔] Handle being followed
2019-09-13 19:28:11 +02:00
[✔] When followed, the handler should write the new follower to file
[✔] Make sure we send our boosts to all our followers
2019-10-08 14:23:25 +02:00
[x] Write incoming activities to disk (do we have to?)
[✔] Write all the announcements (boosts) to the database to
their correct actors
2019-09-13 19:28:11 +02:00
[✔] Check if we are already following users
[✔] On GetOutbox read the database and present a list of the
last posts.
2019-09-13 19:28:11 +02:00
[✔] Make OS-independent (mosty directory separators)
[✔] Create outbox.json programmatically
[✔] Make storage configurable (search for "storage" in project)
2019-10-08 14:23:25 +02:00
[✔] Check if we're boosting only stuff from actors we follow, not whatever comes
through in our inbox
2019-09-13 19:28:11 +02:00
[✔] Boost not only articles but other things too
[✔] Sanitize input, never allow slashes or dots
2019-09-13 19:28:11 +02:00
[✔] Add summary to actors.json
2019-10-08 14:23:25 +02:00
[✔] Check local actor names for characters illegal for filenames and ban them
(Done in pherephone, not activityserve)
2019-09-13 19:28:11 +02:00
[✔] Create debug flag
[✔] Write to following only upon accept
(waiting to actually get an accept so that I can test this)
[✔] Implement webfinger
[✔] Make sure masto finds signature
[✔] Implement Unfollow
2019-09-13 19:28:11 +02:00
[✔] Implement accept (accept when other follow us)
(done but can't test it pending http signatures)
Works in pleroma/pixelfed not working on masto
(nothing works on masto)
[ ] Implement nodeinfo and statistics
2019-09-13 19:28:11 +02:00
[✔] Accept even if already follows us
[✔] Handle paging
2019-10-08 14:23:25 +02:00
[✔] Test paging
2019-09-13 19:28:11 +02:00
[✔] Handle http signatures
[ ] Verify http signatures
2019-10-08 14:23:25 +02:00
[✔] Refactor, comment and clean up
[✔] Split to pherephone and activityServe
[ ] Decide what's to be done with actors removed from `actors.json`.
[ ] Remove them?
[ ] Leave them read-only?
2019-10-08 14:23:25 +02:00
[✔] Leave them as is?
[✔] Handle followers and following uri's
[ ] Do I care about the inbox?
2019-10-08 14:23:25 +02:00
[✔] Expose configuration to apps
[✔] Do not boost replies (configurable)