From d1767bc1b4735a03e7c648383ec7757b923b70c0 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Sat, 28 Dec 2024 19:15:47 -0800 Subject: [PATCH] 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. --- admission.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/admission.py b/admission.py index 10ddbe2..c91411c 100644 --- a/admission.py +++ b/admission.py @@ -85,8 +85,15 @@ def handle_notify() -> None: if not cherrypy.request.update_opening and cherrypy.request.update_stream in stream_list: stream_list.remove(cherrypy.request.update_stream) - # If we haven't gone empty->active or active->empty we need to do nothing - if bool(stream_list) != bool(config.LAST_STREAM_LIST): + # Figure out if we changed state between "someone online" and "no one online" + changed = bool(stream_list) != bool(config.LAST_STREAM_LIST) + + # Save our stream list out before dispatching any webhooks + # We do this before any network callouts to try to prevent race conditions + # FIXME: The right way to handle this is threadsafe locking + config.LAST_STREAM_LIST = stream_list.copy() + + if changed: if not check_webhook_throttle(): cherrypy.log("Webhook throttle limit hit, ignoring") return @@ -94,10 +101,6 @@ def handle_notify() -> None: # Dispatch the appropriate webhook webhook_online(stream_list[0]) if stream_list else webhook_offline() - # Save our stream list into a durable value - cherrypy.log(str(stream_list)) - config.LAST_STREAM_LIST = stream_list.copy() - class Admission: # /admission to control/trigger sessions