diff --git a/penn/wharton.py b/penn/wharton.py index dd93252..94a69d7 100644 --- a/penn/wharton.py +++ b/penn/wharton.py @@ -1,3 +1,4 @@ +import re import requests import datetime @@ -46,6 +47,39 @@ def get_reservations(self, sessionid): reservations.append(reservation) return reservations + def book_reservation(self, sessionid, roomid, start, end): + duration = int((end - start).seconds / 60) + booking_url = "{}/reserve/{}/{}/?d={}".format(BASE_URL, roomid, start.strftime("%Y-%m-%dT%H:%M:%S-05:00"), duration) + resp = requests.get(booking_url, cookies={"sessionid": sessionid}) + resp.raise_for_status() + + csrfheader = re.search(r"csrftoken=(.*?);", resp.headers["Set-Cookie"]).group(1) + csrftoken = re.search(r"", resp.content.decode("utf8")).group(1) + + start_string = start.strftime("%I:%M %p") + if start_string[0] == "0": + start_string = start_string[1:] + + resp = requests.post( + booking_url, + cookies={"sessionid": sessionid, "csrftoken": csrfheader}, + headers={"Referer": booking_url}, + data={ + "csrfmiddlewaretoken": csrftoken, + "room": roomid, + "start_time": start_string, + "end_time": end.strftime("%a %b %d %H:%M:%S %Y"), + "date": start.strftime("%B %d, %Y") + } + ) + resp.raise_for_status() + content = resp.content.decode("utf8") + if "errorlist" in content: + error_msg = re.search(r"class=\"errorlist\">