mirror of
https://github.com/pyro2927/SouthwestCheckin.git
synced 2025-12-06 01:13:19 +00:00
83 lines
3.3 KiB
Python
83 lines
3.3 KiB
Python
import requests
|
|
import sys
|
|
|
|
API_KEY = 'l7xxb3dcccc4a5674bada48fc6fcf0946bc8'
|
|
USER_EXPERIENCE_KEY = 'AAAA3198-4545-46F4-9A05-BB3E868BEFF5'
|
|
BASE_URL = 'https://mobile.southwest.com/api/'
|
|
CHECKIN_INTERVAL_SECONDS = 0.25
|
|
MAX_ATTEMPTS = 40
|
|
|
|
# Pulled from proxying the Southwest iOS App
|
|
headers = {'Host': 'mobile.southwest.com', 'Content-Type': 'application/json', 'X-API-Key': API_KEY, 'X-User-Experience-Id': USER_EXPERIENCE_KEY, 'Accept': '*/*'}
|
|
|
|
|
|
class Reservation():
|
|
|
|
def __init__(self, number, first, last, notifications=[]):
|
|
self.number = number
|
|
self.first = first
|
|
self.last = last
|
|
self.notifications = []
|
|
|
|
# You might ask yourself, "Why the hell does this exist?"
|
|
# Basically, there sometimes appears a "hiccup" in Southwest where things
|
|
# aren't exactly available 24-hours before, so we try a few times
|
|
def safe_request(self, url, body=None):
|
|
try:
|
|
attempts = 0
|
|
while True:
|
|
if body is not None:
|
|
r = requests.post(url, headers=headers, json=body)
|
|
else:
|
|
r = requests.get(url, headers=headers)
|
|
data = r.json()
|
|
if 'httpStatusCode' in data and data['httpStatusCode'] in ['NOT_FOUND', 'BAD_REQUEST', 'FORBIDDEN']:
|
|
attempts += 1
|
|
print(data['message'])
|
|
if attempts > MAX_ATTEMPTS:
|
|
sys.exit("Unable to get data, killing self")
|
|
time.sleep(CHECKIN_INTERVAL_SECONDS)
|
|
continue
|
|
return data
|
|
except ValueError:
|
|
# Ignore responses with no json data in body
|
|
pass
|
|
|
|
def load_json_page(self, url, body=None):
|
|
data = self.safe_request(url, body)
|
|
for k, v in list(data.items()):
|
|
if k.endswith("Page"):
|
|
return v
|
|
|
|
def with_suffix(self, uri):
|
|
return "{}{}{}?first-name={}&last-name={}".format(BASE_URL, uri, self.number, self.first, self.last)
|
|
|
|
def lookup_existing_reservation(self):
|
|
# Find our existing record
|
|
return self.load_json_page(self.with_suffix("mobile-misc/v1/mobile-misc/page/view-reservation/"))
|
|
|
|
def get_checkin_data(self):
|
|
return self.load_json_page(self.with_suffix("mobile-air-operations/v1/mobile-air-operations/page/check-in/"))
|
|
|
|
def checkin(self):
|
|
data = self.get_checkin_data()
|
|
info_needed = data['_links']['checkIn']
|
|
url = "{}mobile-air-operations{}".format(BASE_URL, info_needed['href'])
|
|
print("Attempting check-in...")
|
|
confirmation = self.load_json_page(url, info_needed['body'])
|
|
if len(self.notifications) > 0:
|
|
self.send_notification(confirmation)
|
|
return confirmation
|
|
|
|
def send_notification(self, checkindata):
|
|
info_needed = checkindata['_links']['boardingPasses']
|
|
url = "{}mobile-air-operations{}".format(BASE_URL, info_needed['href'])
|
|
mbpdata = self.load_json_page(url, info_needed['body'])
|
|
info_needed = mbpdata['_links']
|
|
url = "{}mobile-air-operations{}".format(BASE_URL, info_needed['href'])
|
|
print("Attempting to send boarding pass...")
|
|
body = info_needed['body']
|
|
for n in self.notifications:
|
|
body.update(n)
|
|
self.safe_request(url, body)
|