feat: retrieve sessions

This commit is contained in:
kbe
2025-07-18 01:44:20 +02:00
parent f0e44cb5ec
commit 7be123c755

View File

@@ -34,14 +34,11 @@ class CrossFitBooker:
self.session = requests.Session()
self.base_headers = {
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:140.0) Gecko/20100101 Firefox/140.0",
"Accept": "application/json, text/plain, */*",
"Accept-Language": "en-GB,en;q=0.8,fr-FR;q=0.5,fr;q=0.3",
"Content-Type": "application/x-www-form-urlencoded",
"Nubapp-Origin": "user_apps",
"Origin": "https://box.resawod.com",
"Referer": "https://box.resawod.com/",
}
self.session.headers.update(self.base_headers)
# Define mandatory parameters for API calls
self.mandatory_params = {
"app_version": APP_VERSION,
@@ -67,7 +64,7 @@ class CrossFitBooker:
"username": USERNAME,
"password": PASSWORD
}
response = self.session.post(
"https://sport.nubapp.com/api/v4/users/checkUser.php",
headers={"Content-Type": "application/x-www-form-urlencoded"},
@@ -111,7 +108,7 @@ class CrossFitBooker:
return None
url = "https://sport.nubapp.com/api/v4/activities/getActivitiesCalendar.php"
# Prepare request with mandatory parameters
request_data = self.mandatory_params.copy()
request_data.update({
@@ -122,11 +119,11 @@ class CrossFitBooker:
try:
# Debug output
print("\n--- Request Details ---")
print(f"URL: {url}")
print(f"Headers: {json.dumps(self.get_auth_headers(), indent=2)}")
print(f"Payload: {request_data}")
# print("\n--- Request Details ---")
# print(f"URL: {url}")
# print(f"Headers: {json.dumps(self.get_auth_headers(), indent=2)}")
# print(f"Payload: {request_data}")
# Make the request
response = self.session.post(
url,
@@ -136,20 +133,16 @@ class CrossFitBooker:
)
# Debug raw response
print("\n--- Response ---")
print(f"Status Code: {response.status_code}")
print(f"Headers: {response.headers}")
print(f"Content: {response.text}")
# print("\n--- Response ---")
# print(f"Status Code: {response.status_code}")
# print(f"Headers: {response.headers}")
# print(f"Content: {response.text}")
# Handle response
if response.status_code == 200:
try:
json_response = response.json()
if json_response.get("success", False):
return json_response
else:
print(f"API reported failure: {json_response.get('message')}")
return None
return json_response
except ValueError:
print("Failed to decode JSON response")
return None
@@ -172,7 +165,7 @@ class CrossFitBooker:
except Exception as e:
print(f"Unexpected error: {str(e)}")
return None
def book_session(self, session_id: str) -> bool:
"""Book a specific session"""
if not self.auth_token or not self.user_id:
@@ -191,7 +184,7 @@ class CrossFitBooker:
"https://sport.nubapp.com/api/v4/activities/bookActivity.php",
headers=self.get_auth_headers(),
data=urlencode(request_data))
if response.ok:
print(f"Successfully booked session {session_id}")
return True
@@ -205,15 +198,15 @@ class CrossFitBooker:
def is_session_bookable(self, session: Dict, current_time: datetime) -> bool:
"""Check if a session is bookable based on user_info"""
user_info = session.get("user_info", {})
# First check if can_join is true
if user_info.get("can_join", False):
return True
# Otherwise check booking availability time
booking_date_str = user_info.get("unableToBookUntilDate", "")
booking_time_str = user_info.get("unableToBookUntilTime", "")
if booking_date_str and booking_time_str:
try:
booking_datetime = datetime.strptime(f"{booking_date_str} {booking_time_str}", "%d-%m-%Y %H:%M")
@@ -228,21 +221,21 @@ class CrossFitBooker:
try:
session_time = datetime.strptime(session["start_datetime"], "%Y-%m-%d %H:%M:%S")
session_time = pytz.timezone(TIMEZONE).localize(session_time)
# Check if session is exactly 2 days from now
two_days_from_now = current_time + timedelta(days=2)
if session_time.date() != two_days_from_now.date():
return False
# Get day of week (0=Monday, 6=Sunday) and time
day_of_week = session_time.weekday()
session_time_str = session_time.strftime("%H:%M")
session_name = session.get("name_activity", "").upper()
# Check against preferred sessions
for preferred_day, preferred_time, preferred_name in PREFERRED_SESSIONS:
if (day_of_week == preferred_day and
session_time_str == preferred_time and
if (day_of_week == preferred_day and
session_time_str == preferred_time and
preferred_name in session_name):
return True
return False
@@ -256,31 +249,31 @@ class CrossFitBooker:
# Calculate date range to check (next 3 days)
start_date = current_time.date()
end_date = start_date + timedelta(days=3)
# Get available sessions
sessions_data = self.get_available_sessions(start_date, end_date)
if not sessions_data or not sessions_data.get("success", False):
print("No sessions available or error fetching sessions")
return
activities = sessions_data.get("data", {}).get("activities_calendar", [])
# Find sessions to book (both preferred and any available)
sessions_to_book = []
for session in activities:
if not self.is_session_bookable(session, current_time):
continue
if self.matches_preferred_session(session, current_time):
sessions_to_book.append(("Preferred", session))
elif current_time.strftime("%H:%M") == TARGET_RESERVATION_TIME:
# At booking time, consider all available sessions
sessions_to_book.append(("Available", session))
if not sessions_to_book:
print("No matching sessions found to book")
return
# Book sessions (preferred first)
sessions_to_book.sort(key=lambda x: 0 if x[0] == "Preferred" else 1)
for session_type, session in sessions_to_book:
@@ -295,16 +288,16 @@ class CrossFitBooker:
"""Main execution loop"""
# Set up timezone
tz = pytz.timezone(TIMEZONE)
# Initial login
if not self.login():
print("Failed to login, exiting")
return
while True:
current_time = datetime.now(tz)
print(f"\nCurrent time: {current_time}")
# Run booking cycle at the target time or if it's a test
if current_time.strftime("%H:%M") == TARGET_RESERVATION_TIME:
self.run_booking_cycle(current_time)
@@ -320,4 +313,4 @@ if __name__ == "__main__":
sessions = booker.get_available_sessions(datetime.strptime("21-07-2025", "%d-%m-%Y"), datetime.strptime("27-07-2025", "%d-%m-%Y"))
# print(sessions)
# booker.run_booking_cycle(datetime.now())
# booker.run()
# booker.run()