Commit graph

9 commits

Author SHA1 Message Date
a3c273bad4 Don't de-dupe additions to live stream list
De-duping those additions seems like a good idea, but we found out that
in some cases, OME will emit open and closes for streams while they're
still live. De-duping those resulted in streams erroneously being
removed from the live list.

One such scenario is someone trying to "Steal" and already live key. OME
will emit an open and an immediate close as the connection is rejected.
The close was removing the still-live stream from the list.

Fixes #9
2025-03-06 21:01:44 -08:00
a0b5b11e4a Try avatar exact match before lower() 2025-02-18 13:18:09 -08:00
cefadb2b91 Make webhook avatar selection case-insensetive 2025-02-16 20:47:22 -08:00
4c2c82cfc3 Add access key gating to incoming streams
For the moment this is a singleton. One access key will let you stream
to any app or stream key. It's denoted in the form of appending a GET
parameter to the URL like `?access_key=foobarbaz`

This at least means someone who knows the stream URL (frex to view it)
won't also be able to stream.
2025-02-16 17:06:35 -08:00
fab8d6bb23 Remove ovenapi import from admissions 2025-01-07 09:39:09 -08:00
d1767bc1b4 Record changes to stream list sooner
We used to wait until all work in the admission webhook was done to save
out the new list of streams as edited by the webhook. This produces two
issues:

1. It was possible to encounter a race condition if a second webhook
fired while the first was still processing the callout to Discord
2. If the webhook throttle engaged, `handle_notify()` would return
before saving the list out at all

Now we inspect the list, decide what we're going to do, save the new
list out, and then call the Discord webhook as appropriate.
2024-12-28 19:15:47 -08:00
e5c73cd534 Remove API readiness check from admission hook
We don't need API access anymore in the admission webhook.
2024-12-25 19:51:37 -08:00
a490fc5662 Rework admission webhook to not need sleep
There's a one-second sleep in the old hook, because the Oven API did not
always record the stream change quickly. Sometimes even that was not
enough. This attempts to work around that by managing the stream list
directly.
2024-12-25 19:48:13 -08:00
c83acbdcfe Reinitialize repo to remove private data
10,000 hours mucking with `git filter-repo` and no reasonable use-case
found. On the plus side, anyone looking at this and curious what I nuked
isn't missing much. This lived in a monorepo up until about a week ago.
2024-12-20 14:45:49 -08:00