112 Commits

Author SHA1 Message Date
MathMan05
a5b5129542 fixes 2025-11-19 11:42:08 -06:00
MathMan05
76263bca68 add missing awaits 2025-11-19 11:08:56 -06:00
MathMan05
d42519e330 fix mentions issues 2025-11-19 10:58:27 -06:00
Cyber
35718d133f
Merge branch 'master' into webhookFix 2025-11-19 16:09:25 +01:00
MathMan05
8bdc577f6f correctly check query 2025-11-19 09:07:57 -06:00
MathMan05
ced0421ee9 rearange errors 2025-11-19 09:04:47 -06:00
MathMan05
8ee8c8c28c fixes 2025-11-19 08:56:15 -06:00
MathMan05
0490739330 Merge branch 'webhookFix' of https://github.com/MathMan05/server into webhookFix 2025-11-19 08:40:09 -06:00
MathMan05
4135390e00 get rid of log 2025-11-19 08:39:38 -06:00
MathMan05
45be302302 some fixes 2025-11-19 08:39:30 -06:00
Cyber
86f36dcc68
Merge branch 'master' into readStates 2025-11-19 15:20:12 +01:00
Cyber
da2c004ccd
Merge branch 'master' into webhookFix 2025-11-19 10:35:18 +01:00
MathMan05
77022c0afb implement mention_count 2025-11-18 18:19:58 -06:00
MathMan05
c583c14dd7 make not wait work correctly 2025-11-18 16:07:34 -06:00
MathMan05
afa6363961 more fix 2025-11-18 15:59:46 -06:00
MathMan05
9db3e4a616 I am an idiot, it wasn't backwards 2025-11-18 15:42:17 -06:00
MathMan05
4b14bae282 fix 2025-11-18 15:17:38 -06:00
MathMan05
c7201d09aa rename varriable 2025-11-17 17:40:52 -06:00
MathMan05
96dfb645bb add spacing 2025-11-17 17:40:32 -06:00
MathMan05
e265e5ccf0 fix ping error bug 2025-11-17 17:39:30 -06:00
MathMan05
7c26fc5919 fix full user object being exposed 2025-10-30 18:10:16 -05:00
Rory&
c41c3c068e Include full AJV error on api 2025-10-17 03:44:08 +02:00
Rory&
e52c237326 Reorganise schemas a little bit 2025-10-15 08:04:23 +02:00
Rory&
62016a8043 Try to fix sending messages with discord-go 2025-10-06 03:25:11 +02:00
Rory&
a25393e806 Clean up array extensions 2025-10-04 19:09:26 +02:00
Rory&
7d2fd7b4f8 Add dotnet-ish Random class 2025-10-04 19:09:25 +02:00
Rory&
b681ae7522 Drop dependency on missing-native-js-functions 2025-10-04 19:09:25 +02:00
Rory&
efba3f245d Fix ignored request schemas 2025-10-04 19:09:25 +02:00
Rory&
c6d763a905 Log schema name on error 2025-10-01 20:37:42 +02:00
Rory&
0c3d8a792f Drop @sentry/node (Sentry support) - untested and unused 2025-09-29 22:08:03 +02:00
Rory&
697b599eb5 Maybe this tie 2025-09-29 18:38:06 +02:00
Rory&
61c3b537ad Include attachments 2025-09-29 18:38:06 +02:00
Rory&
b6cfb32d5a More relations 2025-09-29 18:38:06 +02:00
Rory&
871880996b Actually set the referenced_message relation on new messages 2025-09-29 18:38:06 +02:00
Rory&
f20dff80ef Make cloud uploads work 2025-09-29 18:38:06 +02:00
Rory&
d007acc64e Logging of empty messages 2025-09-29 18:38:06 +02:00
Rory&
c3fa8d3b1f meow??? 2025-09-29 18:38:06 +02:00
Rory&
d166c9a69a Log validation errors 2025-09-29 18:38:06 +02:00
Rory&
3bba7882fa Try to handle new attachment style in message handler 2025-09-29 18:38:06 +02:00
Rory&
1e6ed06da1 Add first half of cloud attachment uploads 2025-09-29 18:38:06 +02:00
Puyodead1
9347a3ec6f
Merge pull request #1305 from ZaneH/feat/handle-github-webhook
Implement GitHub-compatible webhook
2025-07-12 12:56:00 -04:00
Emma [it/its]@Rory&
3e549dae28 Fix typeorm queries no longer allowing empty where clauses 2025-07-06 09:18:22 +02:00
Zane Helton
9143c1d408 Refactor /github endpoint into it's own file 2025-06-29 10:46:16 -04:00
Zane Helton
4f75919651 Add OP to message.mentions when replied to
The `message.message_reference` stores:

1. `message_id`
2. `channel_id`
3. `guild_id`

We use the `message_id` and `channel_id` to `.findOne(...)` Message, and
find the author. If the author is the same as OP, we skip (so replying
to yourself doesn't add you to the mentions array) otherwise, it adds
the author_id to the mentions array.

Resolves: #1247
2025-06-29 09:14:58 +10:00
Zane Helton
e8d3f655a3 Preserve reactions when a message is edited
Resolves #1241
2025-06-29 08:44:47 +10:00
Zane Helton
81d4313631 Properly filter existing embed links
In a previous PR, I was checking if the `.url` property existed, the
correct fix is to remove any embed that isn't a rich embed
type (non-link).

See also: #1296
2025-06-29 08:39:42 +10:00
Zane Helton
184433b078 Start fresh when updating embeds for links
In a previous commit I was attempting to be clever by only
replacing/removing embeds if necessary. This not only made the logic
more confusing but introduced a bug that would allow for orphaned
embeds when updating the search params of a URL.

This commit will remove all embeds that have a `.url` property and start
fresh. This simplifies the code and eliminates the aforementioned bug.
2025-06-28 18:30:52 +10:00
Zane Helton
f9cfb46e73 Fix various issues with embeds on message updates
The `postHandleMessage` function is parsing links and adding them to the
EmbedCache table if necessary. In the previous implementation, message
updates would push to the embeds unconditionally.

This commit parses links from the message and:

1. Normalizes the URLs
  - Useful for deduplicating similar URLs
2. Remove embeds with matching normalized URLs
  - Leaves all embeds except for ones with a `.url` property matching
  the updated message
  - This allows embeds to be re-ordered if the URL is moved
3. If no normalized URLs are found, remove all embeds
4. Take the deduplicated + normalized URLs and add an embed to the message and
insert into the EmbedCache table (if necessary)

This enables:

1. Embeds to be re-ordered by re-ordering links
2. Embeds to be removed by removing links

and fixes:

1. Duplicate embeds being attached to a message when edited
2025-06-28 18:30:52 +10:00
MathMan05
5488874476 delete the null eater 2025-05-28 08:46:35 +02:00
MathMan05
664b71f463
acatually fix the embed issue
This one added the line in the right spot, sorry about the previous one lol
2025-03-23 23:29:19 -05:00