feat: only book session during window + 1h

This commit is contained in:
kbe
2025-07-21 23:48:14 +02:00
parent ef7f82bc76
commit ef65069592

View File

@@ -525,6 +525,11 @@ class CrossFitBooker:
# Set up timezone # Set up timezone
tz: pytz.timezone = pytz.timezone(TIMEZONE) tz: pytz.timezone = pytz.timezone(TIMEZONE)
# Parse TARGET_RESERVATION_TIME to get the target hour and minute
target_hour, target_minute = map(int, TARGET_RESERVATION_TIME.split(":"))
target_time = datetime.now(tz).replace(hour=target_hour, minute=target_minute, second=0, microsecond=0)
booking_window_end = target_time + timedelta(hours=1)
# Initial login # Initial login
if not self.login(): if not self.login():
logging.error("Authentication failed - exiting program") logging.error("Authentication failed - exiting program")
@@ -536,22 +541,14 @@ class CrossFitBooker:
current_time: datetime = datetime.now(tz) current_time: datetime = datetime.now(tz)
logging.info(f"Current time: {current_time}") logging.info(f"Current time: {current_time}")
# Always run booking cycle to check for preferred sessions and notify # Only book sessions if current time is within the booking window
await self.run_booking_cycle(current_time) if target_time <= current_time <= booking_window_end:
# Run booking cycle to check for preferred sessions and book
# Run booking cycle at the target time for actual booking await self.run_booking_cycle(current_time)
target_time_str = current_time.strftime("%H:%M") # Wait for a short time before next check
target_time = datetime.strptime(target_time_str, "%H:%M").replace(year=current_time.year, month=current_time.month, day=current_time.day, tzinfo=tz) time.sleep(60)
tolerance_window = timedelta(minutes=5)
# Check if current time is within the tolerance window after the target time
if (target_time <= current_time <= (target_time + tolerance_window)):
# Calculate the next booking window
next_booking_window = current_time + timedelta(minutes=20)
# Wait until the next booking window
time.sleep((next_booking_window - current_time).total_seconds())
else: else:
# Check again in 5 minutes # Check again in 5 minutes if outside booking window
time.sleep(300) time.sleep(300)
except Exception as e: except Exception as e:
logging.error(f"Unexpected error in booking cycle: {str(e)} - Traceback: {traceback.format_exc()}") logging.error(f"Unexpected error in booking cycle: {str(e)} - Traceback: {traceback.format_exc()}")