···
this is a small jetstream-consuming server that can notify
2
-
subscribers of when a repost of theirs has been liked.
2
+
subscribers of when a repost of theirs has been (un)liked.
4
-
right now it will fetch your follows and listen to those
5
-
users for likes. this will be made more configurable later
4
+
one current limitation is that like records that were made
5
+
before the server started are not fetched, this means that
6
+
if someone unlikes a repost before the server was started
7
+
you won't get a notification for this. (this is solvable
8
+
and was solved but dusk decided it didn't matter too much
9
+
to keep in, which makes everything simpler)
9
-
get go, build it, run it.
13
+
open a websocket at path `/subscribe/:did` where `did` is
14
+
your DID (or any other user you want to stalk.) by default
15
+
it will use your *follows* for who to notify you with.
11
-
open a websocket at path `/subscribe/:did` where `did` is
12
-
your DID (or any other user you want to stalk.)
17
+
you can specify `?listenTo=none` if you wish to configure
18
+
which users you want to listen to. after opening a websocket
19
+
with that, send a JSON message like below:
23
+
"type": "update_listen_to",
25
+
"listen_to": ["did:plc:blablabla", "did:web:example.org", ...]
36
+
`nix build git+https://tangled.sh/@gaze.systems/bsky-repost-likes`