Commit graph

32 commits

Author SHA1 Message Date
c1aaac4923 Only sort frames when it's safe and pertinent
- Don't sort if a player is fullscreened. Fixes #12
- Force a sort when exiting fullscreen
- Only sort when the player list changes, not any resize
2025-03-18 23:24:45 -07:00
2fab8e0664 Keep webcall frames sorted by ID
This adds some consistency to where the layout puts webcall frames,
instead of it just being in order of go-live time. For general hangout
meeting/screenshare stuff it doesn't matter, but for event production
purposes, having the frames in a predictable order is helpful.

Closes #11
2025-03-09 05:21:44 -07:00
a274d1a0f6 Report cached stream list in management
The stream list caching issues should be fixed, but this is useful for
sniffing out possible future issues.
2025-03-07 22:10:42 -08:00
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
3e64cf0612 Use the same API handle across the entire app
This opens doors in the future to storing state in the API class, and is
just cleaner in general.
2025-03-06 20:26:11 -08:00
074478f104 Add an actual explanation of what this does
Months after more or less "1.0" is the right time to do this; yup.
2025-02-23 16:55:06 -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
b567252695 Add note about ACCESS_KEY to readme 2025-02-16 17:20:49 -08:00
6bebb69ffa Fix throbber in single-player views
Fixes #8
2025-02-16 17:14:36 -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
c934bedd44 Comment config files a bit more 2025-02-16 13:44:33 -08:00
fab8d6bb23 Remove ovenapi import from admissions 2025-01-07 09:39:09 -08:00
25d260dccd Remember volume settings between streams
This is same-session only. We still don't store any session data or
cookies. We dump mute and volume settings to an object when a webcall
stream is reaped, then restore them if the stream comes back.

This should address hardship in a lossy connection or someone
"quickly restarting OBS" needing to re-unmute the player.

Closes #5
2025-01-02 08:31:56 -08:00
bc79be8a96 Add CSRF protection to destructive endpoints
For management endpoints that change server state (restart, ban, etc),
add a referer header check to safeguard against both CSRF and accidental
browser history completion.

Closes #1
2024-12-30 03:18:04 -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
97e20ae0d0 Add status endpoint to recommended proxy bypass 2024-12-20 20:37:03 -08:00
b727e87eaf Add screenshot to README 2024-12-20 18:18:47 -08:00
70eb03568f Add Mako requirement, oops 2024-12-20 17:52:50 -08:00
8b8385afaf Add a bunch of config info to README 2024-12-20 17:47:01 -08:00
96904eca5c Add License
I'm using a modified version of the ISTSL. I will not take questions or
comments on this.
2024-12-20 17:31:43 -08:00
5a1e08c539 More README sprucing 2024-12-20 17:26:29 -08:00
dc281aa66f Fix typo in README 2024-12-20 17:21:13 -08:00
b83adfecbe More README clarifications
I wrote code better than docs...
2024-12-20 16:07:32 -08:00
8179023cb8 Clarify security scope in README 2024-12-20 15:51:13 -08:00
80dea5fd69 Add example OME Server.xml 2024-12-20 15:47:54 -08:00
170b74cd3e Add webhook requirement to README 2024-12-20 15:24:01 -08:00
1558fd2f77 Add security notes to README 2024-12-20 14:50:18 -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
8c03023aac Initial commit 2024-12-20 22:44:39 +00:00