Commit graph

976 commits

Author SHA1 Message Date
LDA
7825559f1b [ADD/WIP/UNTESTED] Start doing filtering
Currently untested until I take some time, as I'm busy with something
else at the moment. I _really_, *really*, need to cleanup that code...
2024-07-08 10:16:54 +02:00
LDA
e2d26c7f33 [ADD/WIP] Start /messages, sync timeouts, cleaning
This code _really_ isn't good. I've spotted some fun racing happen and
leak of some JSON(somehow?) without timeout, and I've been trying to
spend the last several days trying to fix that.

The good news is that, with some endpoint spoofing, you can actually
_try_ this with a Matrix client(dev.cinny.in for example).

I might consider rewriting this pastacode, considering the issues noted
above in favour of a better design, with less odds of this.
2024-06-14 23:30:35 +02:00
LDA
97b1e4d723 [ADD/WIP] Push events into sync
The code is still ugly(still waiting for j2s to support some things
before I can actually get *somewhere* with the schemas, which is my main
complaint), and it's definitely not spec-compliant, but it now means you
can actually see diffs in rooms you joined from the timeline!
2024-06-09 11:46:44 +02:00
LDA
046a04e495 [WIP] Start making (broken) /syncs
This code is *really* ugly. And it also doesn't handle timelines.
2024-06-09 03:20:09 +02:00
LDA
00311f58dc [WIP] Start making bare-bones /sync reply schema. 2024-06-09 02:13:49 +02:00
LDA
a491a740d4 [ADD/WIP] Begin work on storing /sync diffs. 2024-06-09 01:43:16 +02:00
LDA
bb3d15f2c9 [MOD/FIX] Update user list at the lowest level
I'll need to start defining a `diffs' system for sync. I have a decent
idea on how that could go(with 1 level of batching), but I'll need to
consider it some.
2024-06-08 18:37:54 +02:00
LDA
88610a3238 [ADD/WIP] Start basic work on getting room lists.
I think I should actually update by "catching" events on-the-fly instead
of doing this.
2024-06-08 15:49:31 +02:00
LDA
9203ec1268 [MOD] Join rooms via alias 2024-06-08 11:57:52 +02:00
LDA
9600d2ffb5 [FIX/WIP] Fix join rules
I'll still need to notify users that they're *in* the room, instead of
just poking at the state.

But this should allow users to send events to the same room.
2024-06-08 11:03:54 +02:00
lda
250d28b958 [UNTESTED/WIP] Room joins
Still have to test this.
2024-06-08 10:31:21 +02:00
lda
6ce63b01ce [ADD/WIP] Basic means to view a room event. 2024-06-08 09:34:27 +02:00
lda
e268471dba [ADD/WIP] Start work to send messages
This commit *works*  but I don't quite like it.
2024-06-07 18:24:13 +02:00
LDA
39c4af8d4d [MOD/WIP] Start work for event sending 2024-06-07 13:58:34 +02:00
lda
b0c3d6ce31 [MOD/WIP] Move caching in the StateResolve func. 2024-06-06 23:25:46 +02:00
lda
3a2fec8a47 [MOD/TESTING] Begin storing the state at each event
This probably needs some cache evicting to avoid piling up large
states.
2024-06-06 16:02:43 +02:00
lda
604d6cf017 Merge remote-tracking branch 'refs/remotes/origin/roomwerk' into roomwerk 2024-06-04 13:47:15 +02:00
lda
21b015da2c [MOD/WIP] Fix double-free on PL checks 2024-06-04 13:45:12 +02:00
lda
c1630247b1 [FIX/WIP] Fix bug where banned users could be invited.
There seems to be another, much more annoying bug going down with
one of the servers I've tested on, but I don't know how to fix it
as of now.
2024-05-24 16:52:31 +02:00
lda
879e51c169 [ADD/WIP] Set is_direct field in room leaves 2024-05-21 11:17:57 +02:00
lda
c22d628c86 [ADD/WIP] Start implementing invites.
I'll need to add the direct flag somewhere in the room leaves.
Also, it seems like there's a giant bottleneck in my code...
2024-05-20 16:37:41 +02:00
lda
9dcaab0819 [ADD/FIX/WIP] Fix content hashing, respect creation_content.
Oops, I *should* have known sha256 are stored as raw unpadded b64!base64!
2024-05-19 19:11:33 +02:00
lda
cacc72bf84 [ADD/WIP] Basic preset code
I still need to find a solution to a problem related to j2s.
Right now I kind of want to have a way for users to send events
from the endpoints.
2024-05-19 15:17:56 +02:00
lda
a99798a312 [ADD/WIP] Start abstracting aliasing 2024-05-19 00:30:28 +02:00
lda
e3c57d8f05 [ADD/WIP] Basic alias system.
NOTE: I *need* to write an Alias API(and also manage clashes proper.)
2024-05-18 21:24:30 +02:00
lda
7ee35fcc28 [MOD] Clamp depth 2024-05-18 20:26:30 +02:00
lda
327730c2c6 [ADD/WIP] Basic PDU depth system.
NOTE: This is *not* a good way to compute depth.
2024-05-18 20:17:54 +02:00
lda
5ca36396a2 Merge branch 'master' of https://git.telodendria.io/Telodendria/Telodendria into roomwerk 2024-05-18 19:22:27 +02:00
lda
e1d632b135 [ADD/WIP] Remove boundscheck on array sorts 2024-05-18 17:11:29 +02:00
a8924b8437
Update Cytoplasm to v0.4.1. 2024-05-18 10:55:15 -04:00
lda
ecb18dc7b2 [ADD/WIP] Added more events at init-time 2024-05-18 16:39:51 +02:00
lda
e36f4357ab [ADD/WIP] Start testing code
I think I'll manage PDU depth later(with an actual good way to handle
it properly(that is not just setting it to the max and calling it a
day.)
2024-05-17 23:57:32 +02:00
lda
1753c2188b [ADD/UNTESTED] Set ServerPart on room creation
Not tested as of now!
2024-05-17 13:52:25 +02:00
lda
9ffa37d7a7 [ADD/UNTESTED] Start implementing event sending
This is NOT perfect. This *will* need changes before it gets pushed.
2024-05-17 13:37:34 +02:00
lda
15b884b04a [ADD/UNTESTED] Barebones State Resolution V1
NOTE: It is probably NOT in an usable state. Even if it is, it should
not be PR'd into Telodendria right now.

Feeling a bit burnt out, so I'll take a break. Feel free to issue PRs to
this branch to clean/weed out some mistakes or bugs, since I only made
sure that it built.
2024-05-15 20:15:49 +02:00
lda
3066a0e8a8 [ADD/UNTESTED] Finalise powerlevels somewhat
Still too hacky for my taste...
2024-05-15 12:51:32 +02:00
lda
878b294030 [ADD/UNTESTED] (Nearly) implement 'invite' in auth
Almost because we don't verify the public key at all.
2024-05-15 10:12:07 +02:00
lda
6a69218479 [UNTESTED/ADD] Add more membership in auth rules
The only TODO left in this bit is `invite'.
2024-05-15 09:37:31 +02:00
lda
aec71d8d32 [ADD/UNTESTED] Finalise step 5.2 of auth rules.
Next up is the invite membership(5.3).
2024-05-15 09:02:09 +02:00
lda
50759a3298 [UNTESTED/ADD] Finish barebones of auth rules 2024-05-15 08:41:59 +02:00
lda
9bc36f324a [ADD/WIP/UNTESTED] Start verifying membership, tested hashing 2024-05-08 12:14:10 +02:00
lda
001b4821fe [ADD/WIP/UNTESTED] Start creating PDU for client events 2024-05-02 20:02:30 +02:00
lda
d0a447a409 [WIP/ADD] Start basic room work 2024-05-01 22:01:56 +02:00
lda
b72f18538d Merge branch 'master' of https://git.telodendria.io/Telodendria/Telodendria 2024-05-01 21:02:08 +02:00
lda
ff85b72899 Fix IPv6 issue in parser ()
Fixes compilation issue in the parser (and checks IPv6 slightly more).
---

Please review the developer certificate of origin:

1. The contribution was created in whole or in part by me, and I have
the right to submit it under the open source licenses of the
Telodendria project; or
1. The contribution is based upon a previous work that, to the best of
my knowledge, is covered under an appropriate open source license and
I have the right under that license to submit that work with
modifications, whether created in whole or in part by me, under the
Telodendria project license; or
1. The contribution was provided directly to me by some other person
who certified (1), (2), or (3), and I have not modified it.
1. I understand and agree that this project and the contribution are
made public and that a record of the contribution—including all
personal information I submit with it—is maintained indefinitely
and may be redistributed consistent with this project or the open
source licenses involved.

- [x] I have read the Telodendria Project development certificate of
origin, and I certify that I have permission to submit this patch
under the conditions specified in it.

Co-authored-by: Jordan Bancino <jordan@bancino.net>
Reviewed-on: 
Co-authored-by: lda <lda@freetards.xyz>
Co-committed-by: lda <lda@freetards.xyz>
2024-03-29 11:48:25 -05:00
lda
bccbb3bcac Fix other double-free issue with router. ()
Similar issue to .
---

Please review the developer certificate of origin:

1. The contribution was created in whole or in part by me, and I have
the right to submit it under the open source licenses of the
Telodendria project; or
1. The contribution is based upon a previous work that, to the best of
my knowledge, is covered under an appropriate open source license and
I have the right under that license to submit that work with
modifications, whether created in whole or in part by me, under the
Telodendria project license; or
1. The contribution was provided directly to me by some other person
who certified (1), (2), or (3), and I have not modified it.
1. I understand and agree that this project and the contribution are
made public and that a record of the contribution&mdash;including all
personal information I submit with it&mdash;is maintained indefinitely
and may be redistributed consistent with this project or the open
source licenses involved.

- [x] I have read the Telodendria Project development certificate of
origin, and I certify that I have permission to submit this patch
under the conditions specified in it.

Co-authored-by: Jordan Bancino <jordan@bancino.net>
Reviewed-on: 
Co-authored-by: lda <lda@freetards.xyz>
Co-committed-by: lda <lda@freetards.xyz>
2024-03-29 11:48:04 -05:00
lda
f815f653b0 Merge branch 'master' of https://git.telodendria.io/Telodendria/Telodendria 2024-03-20 15:29:16 +01:00
dede82ad33 Update docs/dev/hosting.md 2024-01-14 14:13:53 -05:00
fde2b26857 Update docs/dev/hosting.md 2024-01-14 09:43:47 -05:00
6305f5d76e Update docs/dev/hosting.md 2024-01-14 09:36:57 -05:00